From 532fb98bb7dfbd045873867e4addd72290e4a2f5 Mon Sep 17 00:00:00 2001 From: idillon Date: Wed, 31 Jan 2024 22:58:57 -0500 Subject: [PATCH 1/4] Handle variable expension inside shell --- grammar.js | 1 + src/scanner.c | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/grammar.js b/grammar.js index a760463..a8d0f60 100644 --- a/grammar.js +++ b/grammar.js @@ -257,6 +257,7 @@ module.exports = grammar({ '{', repeat(choice( $.shell_content, + $.variable_expansion, $.inline_python, $.function_definition, )), diff --git a/src/scanner.c b/src/scanner.c index 1db41c1..58f43b6 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -473,9 +473,9 @@ bool tree_sitter_bitbake_external_scanner_scan(void *payload, TSLexer *lexer, co brace_depth++; if (lexer->lookahead == '@') { advance(lexer); - lexer->result_symbol = SHELL_CONTENT; - return advance_once; } + lexer->result_symbol = SHELL_CONTENT; + return advance_once; } advance_once = true; break; From a676c268750519bcbc94df624a950e2af95061e7 Mon Sep 17 00:00:00 2001 From: idillon Date: Mon, 26 Feb 2024 13:17:26 -0500 Subject: [PATCH 2/4] Fix '#' in shell content --- src/scanner.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scanner.c b/src/scanner.c index 58f43b6..775c361 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -309,7 +309,7 @@ bool tree_sitter_bitbake_external_scanner_scan(void *payload, TSLexer *lexer, co } else if (lexer->lookahead == '\t') { indent_length += 8; skip(lexer); - } else if (lexer->lookahead == '#') { + } else if (lexer->lookahead == '#' && !valid_symbols[SHELL_CONTENT]) { // If we haven't found an EOL yet, // then this is a comment after an expression: // foo = bar # comment From 6c77623a303dc0d7cdb839e7513824c34cce9388 Mon Sep 17 00:00:00 2001 From: Ziwei Wang Date: Wed, 21 Feb 2024 15:54:28 -0500 Subject: [PATCH 3/4] feat: Support inherit_defer directive --- grammar.js | 11 +++++++++++ src/grammar.json | 33 +++++++++++++++++++++++++++++++++ src/node-types.json | 31 +++++++++++++++++++++++++++++++ 3 files changed, 75 insertions(+) diff --git a/grammar.js b/grammar.js index a8d0f60..d698063 100644 --- a/grammar.js +++ b/grammar.js @@ -84,6 +84,7 @@ module.exports = grammar({ $.variable_assignment, $.unset_statement, $.inherit_directive, + $.inherit_defer_directive, $.include_directive, $.require_directive, $.export_statement, @@ -157,6 +158,16 @@ module.exports = grammar({ $.inherit_path, )), ), + + inherit_defer_directive: $ => seq( + 'inherit_defer', + repeat1(choice( + $.variable_expansion, + $.inline_python, + $.inherit_path, + )), + ), + inherit_path: _ => /[^$ \r\n][^ \r\n]+/, inherit_configuration_directive: $ => seq( diff --git a/src/grammar.json b/src/grammar.json index 327fe72..6bf83c1 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -21,6 +21,10 @@ "type": "SYMBOL", "name": "inherit_directive" }, + { + "type": "SYMBOL", + "name": "inherit_defer_directive" + }, { "type": "SYMBOL", "name": "include_directive" @@ -374,6 +378,35 @@ } ] }, + "inherit_defer_directive": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "inherit_defer" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "variable_expansion" + }, + { + "type": "SYMBOL", + "name": "inline_python" + }, + { + "type": "SYMBOL", + "name": "inherit_path" + } + ] + } + } + ] + }, "inherit_path": { "type": "PATTERN", "value": "[^$ \\r\\n][^ \\r\\n]+" diff --git a/src/node-types.json b/src/node-types.json index 7e27868..f8d9926 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1786,6 +1786,29 @@ ] } }, + { + "type": "inherit_defer_directive", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "inherit_path", + "named": true + }, + { + "type": "inline_python", + "named": true + }, + { + "type": "variable_expansion", + "named": true + } + ] + } + }, { "type": "inherit_directive", "named": true, @@ -2484,6 +2507,10 @@ "type": "include_directive", "named": true }, + { + "type": "inherit_defer_directive", + "named": true + }, { "type": "inherit_directive", "named": true @@ -3604,6 +3631,10 @@ "type": "inherit", "named": false }, + { + "type": "inherit_defer", + "named": false + }, { "type": "inherit_path", "named": true From c69337c5c8f374613fb13f2dc8738e7827353084 Mon Sep 17 00:00:00 2001 From: idillon Date: Thu, 7 Mar 2024 10:28:27 -0500 Subject: [PATCH 4/4] Update generated files --- src/grammar.json | 4 + src/node-types.json | 4 + src/parser.c | 117178 ++++++++++++++++++------------------ src/tree_sitter/parser.h | 16 +- 4 files changed, 58971 insertions(+), 58231 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index 6bf83c1..9b45795 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -869,6 +869,10 @@ "type": "SYMBOL", "name": "shell_content" }, + { + "type": "SYMBOL", + "name": "variable_expansion" + }, { "type": "SYMBOL", "name": "inline_python" diff --git a/src/node-types.json b/src/node-types.json index f8d9926..1ff9b37 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1544,6 +1544,10 @@ { "type": "shell_content", "named": true + }, + { + "type": "variable_expansion", + "named": true } ] } diff --git a/src/parser.c b/src/parser.c index 3bf82d0..730d63e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,4 +1,4 @@ -#include "tree_sitter/parser.h" +#include #if defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -14,19 +14,19 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2582 +#define STATE_COUNT 2588 #define LARGE_STATE_COUNT 128 -#define SYMBOL_COUNT 316 +#define SYMBOL_COUNT 318 #define ALIAS_COUNT 5 -#define TOKEN_COUNT 149 +#define TOKEN_COUNT 150 #define EXTERNAL_TOKEN_COUNT 13 #define FIELD_COUNT 27 #define MAX_ALIAS_SEQUENCE_LENGTH 10 #define PRODUCTION_ID_COUNT 102 -enum ts_symbol_identifiers { +enum { aux_sym_recipe_token1 = 1, - anon_sym_NULL = 2, + anon_sym_ = 2, anon_sym_EQ = 3, anon_sym_QMARK_EQ = 4, anon_sym_QMARK_QMARK_EQ = 5, @@ -45,312 +45,314 @@ enum ts_symbol_identifiers { anon_sym_remove = 18, anon_sym_unset = 19, anon_sym_inherit = 20, - sym_inherit_path = 21, - anon_sym_INHERIT = 22, - anon_sym_DQUOTE = 23, - anon_sym_include = 24, - aux_sym_include_directive_token1 = 25, - anon_sym_require = 26, - anon_sym_export = 27, - anon_sym_OVERRIDES = 28, - anon_sym_EXPORT_FUNCTIONS = 29, - anon_sym_addtask = 30, - anon_sym_after = 31, - anon_sym_before = 32, - anon_sym_deltask = 33, - anon_sym_addhandler = 34, - anon_sym_fakeroot = 35, - anon_sym_python = 36, - anon_sym_LPAREN = 37, - anon_sym_RPAREN = 38, - anon_sym_LBRACE = 39, - anon_sym_RBRACE = 40, - aux_sym_string_token1 = 41, - aux_sym_string_token2 = 42, - anon_sym_DOLLARBB_ENV_PASSTHROUGH = 43, - anon_sym_DOLLARBB_ENV_PASSTHROUGH_ADDITIONS = 44, - anon_sym_DOLLAR = 45, - anon_sym_SQUOTE = 46, - aux_sym_string_token3 = 47, - aux_sym_string_token4 = 48, - anon_sym_DOLLAR_LBRACE_AT = 49, - anon_sym_DOLLAR_LBRACE = 50, - anon_sym_def = 51, - anon_sym_DASH_GT = 52, - anon_sym_SEMI = 53, - anon_sym_import = 54, - anon_sym_DOT = 55, - anon_sym_from = 56, - anon_sym___future__ = 57, - anon_sym_COMMA = 58, - anon_sym_as = 59, - anon_sym_STAR = 60, - anon_sym_print = 61, - anon_sym_GT_GT = 62, - anon_sym_assert = 63, - anon_sym_return = 64, - anon_sym_del = 65, - anon_sym_raise = 66, - anon_sym_pass = 67, - anon_sym_break = 68, - anon_sym_continue = 69, - anon_sym_global = 70, - anon_sym_nonlocal = 71, - anon_sym_exec = 72, - anon_sym_in = 73, - anon_sym_if = 74, - anon_sym_elif = 75, - anon_sym_else = 76, - anon_sym_async = 77, - anon_sym_for = 78, - anon_sym_while = 79, - anon_sym_try = 80, - anon_sym_except = 81, - anon_sym_except_STAR = 82, - anon_sym_finally = 83, - anon_sym_with = 84, - anon_sym_not = 85, - anon_sym_and = 86, - anon_sym_or = 87, - anon_sym_PLUS = 88, - anon_sym_DASH = 89, - anon_sym_AT = 90, - anon_sym_SLASH = 91, - anon_sym_PERCENT = 92, - anon_sym_SLASH_SLASH = 93, - anon_sym_STAR_STAR = 94, - anon_sym_PIPE = 95, - anon_sym_AMP = 96, - anon_sym_CARET = 97, - anon_sym_LT_LT = 98, - anon_sym_TILDE = 99, - anon_sym_LT = 100, - anon_sym_LT_EQ = 101, - anon_sym_EQ_EQ = 102, - anon_sym_BANG_EQ = 103, - anon_sym_GT_EQ = 104, - anon_sym_GT = 105, - anon_sym_LT_GT = 106, - anon_sym_is = 107, - anon_sym_lambda = 108, - anon_sym_DASH_EQ = 109, - anon_sym_STAR_EQ = 110, - anon_sym_SLASH_EQ = 111, - anon_sym_AT_EQ = 112, - anon_sym_SLASH_SLASH_EQ = 113, - anon_sym_PERCENT_EQ = 114, - anon_sym_STAR_STAR_EQ = 115, - anon_sym_GT_GT_EQ = 116, - anon_sym_LT_LT_EQ = 117, - anon_sym_AMP_EQ = 118, - anon_sym_CARET_EQ = 119, - anon_sym_PIPE_EQ = 120, - anon_sym_yield = 121, - sym_ellipsis = 122, - sym_escape_sequence = 123, - sym__not_escape_sequence = 124, - aux_sym_format_specifier_token1 = 125, - sym_type_conversion = 126, - anon_sym_await = 127, - anon_sym_match = 128, - anon_sym_type = 129, - sym_integer = 130, - sym_float = 131, - sym_true = 132, - sym_false = 133, - sym_none = 134, - sym_python_identifier = 135, - sym_line_continuation = 136, - sym_identifier = 137, - aux_sym__dotted_identifier_token1 = 138, - sym_comment = 139, - sym__concat = 140, - sym__newline = 141, - sym__indent = 142, - sym__dedent = 143, - sym_string_start = 144, - sym__string_content = 145, - sym_escape_interpolation = 146, - sym_string_end = 147, - sym_shell_content = 148, - sym_recipe = 149, - sym_variable_assignment = 150, - sym_variable_flag = 151, - sym_override = 152, - sym_unset_statement = 153, - sym_inherit_directive = 154, - sym_include_directive = 155, - sym_require_directive = 156, - sym_export_statement = 157, - sym_overrides_statement = 158, - sym_export_functions_statement = 159, - sym_addtask_statement = 160, - sym_deltask_statement = 161, - sym_addhandler_statement = 162, - sym_anonymous_python_function = 163, - sym_function_definition = 164, - sym_literal = 165, - sym_string = 166, - sym_inline_python = 167, - sym_variable_expansion = 168, - sym_python_function_definition = 169, - sym__statement = 170, - sym__simple_statements = 171, - sym_import_statement = 172, - sym_import_prefix = 173, - sym_relative_import = 174, - sym_future_import_statement = 175, - sym_import_from_statement = 176, - sym__import_list = 177, - sym_aliased_import = 178, - sym_wildcard_import = 179, - sym_print_statement = 180, - sym_chevron = 181, - sym_assert_statement = 182, - sym_expression_statement = 183, - sym_named_expression = 184, - sym__named_expression_lhs = 185, - sym_return_statement = 186, - sym_delete_statement = 187, - sym_raise_statement = 188, - sym_pass_statement = 189, - sym_break_statement = 190, - sym_continue_statement = 191, - sym_global_statement = 192, - sym_nonlocal_statement = 193, - sym_exec_statement = 194, - sym_type_parameter = 195, - sym_parenthesized_list_splat = 196, - sym_argument_list = 197, - sym_if_statement = 198, - sym_elif_clause = 199, - sym_else_clause = 200, - sym_for_statement = 201, - sym_while_statement = 202, - sym_try_statement = 203, - sym_except_clause = 204, - sym_except_group_clause = 205, - sym_finally_clause = 206, - sym_with_statement = 207, - sym_with_clause = 208, - sym_with_item = 209, - sym_dotted_name = 210, - sym_not_operator = 211, - sym_boolean_operator = 212, - sym_binary_operator = 213, - sym_unary_operator = 214, - sym_comparison_operator = 215, - sym_lambda = 216, - sym_lambda_within_for_in_clause = 217, - sym_assignment = 218, - sym_augmented_assignment = 219, - sym_pattern_list = 220, - sym__right_hand_side = 221, - sym_yield = 222, - sym_attribute = 223, - sym_subscript = 224, - sym_slice = 225, - sym_call = 226, - sym_generator_expression = 227, - sym__comprehension_clauses = 228, - sym_parenthesized_expression = 229, - sym__collection_elements = 230, - sym_for_in_clause = 231, - sym_if_clause = 232, - sym_block = 233, - sym_expression_list = 234, - sym_parameters = 235, - sym_lambda_parameters = 236, - sym_list_splat = 237, - sym_dictionary_splat = 238, - sym__parameters = 239, - sym__patterns = 240, - sym_parameter = 241, - sym_pattern = 242, - sym_tuple_pattern = 243, - sym_list_pattern = 244, - sym_default_parameter = 245, - sym_typed_default_parameter = 246, - sym_list_splat_pattern = 247, - sym_dictionary_splat_pattern = 248, - sym_as_pattern = 249, - sym__expression_within_for_in_clause = 250, - sym_expression = 251, - sym_primary_expression = 252, - sym_typed_parameter = 253, - sym_type = 254, - sym_splat_type = 255, - sym_generic_type = 256, - sym_union_type = 257, - sym_constrained_type = 258, - sym_member_type = 259, - sym_keyword_argument = 260, - sym_list = 261, - sym_set = 262, - sym_tuple = 263, - sym_dictionary = 264, - sym_pair = 265, - sym_list_comprehension = 266, - sym_dictionary_comprehension = 267, - sym_set_comprehension = 268, - sym_conditional_expression = 269, - sym_concatenated_string = 270, - sym_python_string = 271, - sym_string_content = 272, - sym_interpolation = 273, - sym__f_expression = 274, - sym_format_specifier = 275, - sym_await = 276, - sym_positional_separator = 277, - sym_keyword_separator = 278, - sym_concatenation = 279, - aux_sym_recipe_repeat1 = 280, - aux_sym_override_repeat1 = 281, - aux_sym_inherit_directive_repeat1 = 282, - aux_sym_include_directive_repeat1 = 283, - aux_sym_overrides_statement_repeat1 = 284, - aux_sym_export_functions_statement_repeat1 = 285, - aux_sym_function_definition_repeat1 = 286, - aux_sym_string_repeat1 = 287, - aux_sym_string_repeat2 = 288, - aux_sym__simple_statements_repeat1 = 289, - aux_sym_import_prefix_repeat1 = 290, - aux_sym__import_list_repeat1 = 291, - aux_sym_print_statement_repeat1 = 292, - aux_sym_assert_statement_repeat1 = 293, - aux_sym_global_statement_repeat1 = 294, - aux_sym_type_parameter_repeat1 = 295, - aux_sym_argument_list_repeat1 = 296, - aux_sym_if_statement_repeat1 = 297, - aux_sym_try_statement_repeat1 = 298, - aux_sym_try_statement_repeat2 = 299, - aux_sym_with_clause_repeat1 = 300, - aux_sym_dotted_name_repeat1 = 301, - aux_sym_comparison_operator_repeat1 = 302, - aux_sym_pattern_list_repeat1 = 303, - aux_sym_subscript_repeat1 = 304, - aux_sym__comprehension_clauses_repeat1 = 305, - aux_sym__collection_elements_repeat1 = 306, - aux_sym_for_in_clause_repeat1 = 307, - aux_sym_block_repeat1 = 308, - aux_sym__parameters_repeat1 = 309, - aux_sym_dictionary_repeat1 = 310, - aux_sym_concatenated_string_repeat1 = 311, - aux_sym_python_string_repeat1 = 312, - aux_sym_string_content_repeat1 = 313, - aux_sym_format_specifier_repeat1 = 314, - aux_sym_concatenation_repeat1 = 315, - alias_sym_as_pattern_target = 316, - alias_sym_format_expression = 317, - alias_sym_include_path = 318, - anon_alias_sym_isnot = 319, - anon_alias_sym_notin = 320, + anon_sym_inherit_defer = 21, + sym_inherit_path = 22, + anon_sym_INHERIT = 23, + anon_sym_DQUOTE = 24, + anon_sym_include = 25, + aux_sym_include_directive_token1 = 26, + anon_sym_require = 27, + anon_sym_export = 28, + anon_sym_OVERRIDES = 29, + anon_sym_EXPORT_FUNCTIONS = 30, + anon_sym_addtask = 31, + anon_sym_after = 32, + anon_sym_before = 33, + anon_sym_deltask = 34, + anon_sym_addhandler = 35, + anon_sym_fakeroot = 36, + anon_sym_python = 37, + anon_sym_LPAREN = 38, + anon_sym_RPAREN = 39, + anon_sym_LBRACE = 40, + anon_sym_RBRACE = 41, + aux_sym_string_token1 = 42, + aux_sym_string_token2 = 43, + anon_sym_DOLLARBB_ENV_PASSTHROUGH = 44, + anon_sym_DOLLARBB_ENV_PASSTHROUGH_ADDITIONS = 45, + anon_sym_DOLLAR = 46, + anon_sym_SQUOTE = 47, + aux_sym_string_token3 = 48, + aux_sym_string_token4 = 49, + anon_sym_DOLLAR_LBRACE_AT = 50, + anon_sym_DOLLAR_LBRACE = 51, + anon_sym_def = 52, + anon_sym_DASH_GT = 53, + anon_sym_SEMI = 54, + anon_sym_import = 55, + anon_sym_DOT = 56, + anon_sym_from = 57, + anon_sym___future__ = 58, + anon_sym_COMMA = 59, + anon_sym_as = 60, + anon_sym_STAR = 61, + anon_sym_print = 62, + anon_sym_GT_GT = 63, + anon_sym_assert = 64, + anon_sym_return = 65, + anon_sym_del = 66, + anon_sym_raise = 67, + anon_sym_pass = 68, + anon_sym_break = 69, + anon_sym_continue = 70, + anon_sym_global = 71, + anon_sym_nonlocal = 72, + anon_sym_exec = 73, + anon_sym_in = 74, + anon_sym_if = 75, + anon_sym_elif = 76, + anon_sym_else = 77, + anon_sym_async = 78, + anon_sym_for = 79, + anon_sym_while = 80, + anon_sym_try = 81, + anon_sym_except = 82, + anon_sym_except_STAR = 83, + anon_sym_finally = 84, + anon_sym_with = 85, + anon_sym_not = 86, + anon_sym_and = 87, + anon_sym_or = 88, + anon_sym_PLUS = 89, + anon_sym_DASH = 90, + anon_sym_AT = 91, + anon_sym_SLASH = 92, + anon_sym_PERCENT = 93, + anon_sym_SLASH_SLASH = 94, + anon_sym_STAR_STAR = 95, + anon_sym_PIPE = 96, + anon_sym_AMP = 97, + anon_sym_CARET = 98, + anon_sym_LT_LT = 99, + anon_sym_TILDE = 100, + anon_sym_LT = 101, + anon_sym_LT_EQ = 102, + anon_sym_EQ_EQ = 103, + anon_sym_BANG_EQ = 104, + anon_sym_GT_EQ = 105, + anon_sym_GT = 106, + anon_sym_LT_GT = 107, + anon_sym_is = 108, + anon_sym_lambda = 109, + anon_sym_DASH_EQ = 110, + anon_sym_STAR_EQ = 111, + anon_sym_SLASH_EQ = 112, + anon_sym_AT_EQ = 113, + anon_sym_SLASH_SLASH_EQ = 114, + anon_sym_PERCENT_EQ = 115, + anon_sym_STAR_STAR_EQ = 116, + anon_sym_GT_GT_EQ = 117, + anon_sym_LT_LT_EQ = 118, + anon_sym_AMP_EQ = 119, + anon_sym_CARET_EQ = 120, + anon_sym_PIPE_EQ = 121, + anon_sym_yield = 122, + sym_ellipsis = 123, + sym_escape_sequence = 124, + sym__not_escape_sequence = 125, + aux_sym_format_specifier_token1 = 126, + sym_type_conversion = 127, + anon_sym_await = 128, + anon_sym_match = 129, + anon_sym_type = 130, + sym_integer = 131, + sym_float = 132, + sym_true = 133, + sym_false = 134, + sym_none = 135, + sym_python_identifier = 136, + sym_line_continuation = 137, + sym_identifier = 138, + aux_sym__dotted_identifier_token1 = 139, + sym_comment = 140, + sym__concat = 141, + sym__newline = 142, + sym__indent = 143, + sym__dedent = 144, + sym_string_start = 145, + sym__string_content = 146, + sym_escape_interpolation = 147, + sym_string_end = 148, + sym_shell_content = 149, + sym_recipe = 150, + sym_variable_assignment = 151, + sym_variable_flag = 152, + sym_override = 153, + sym_unset_statement = 154, + sym_inherit_directive = 155, + sym_inherit_defer_directive = 156, + sym_include_directive = 157, + sym_require_directive = 158, + sym_export_statement = 159, + sym_overrides_statement = 160, + sym_export_functions_statement = 161, + sym_addtask_statement = 162, + sym_deltask_statement = 163, + sym_addhandler_statement = 164, + sym_anonymous_python_function = 165, + sym_function_definition = 166, + sym_literal = 167, + sym_string = 168, + sym_inline_python = 169, + sym_variable_expansion = 170, + sym_python_function_definition = 171, + sym__statement = 172, + sym__simple_statements = 173, + sym_import_statement = 174, + sym_import_prefix = 175, + sym_relative_import = 176, + sym_future_import_statement = 177, + sym_import_from_statement = 178, + sym__import_list = 179, + sym_aliased_import = 180, + sym_wildcard_import = 181, + sym_print_statement = 182, + sym_chevron = 183, + sym_assert_statement = 184, + sym_expression_statement = 185, + sym_named_expression = 186, + sym__named_expression_lhs = 187, + sym_return_statement = 188, + sym_delete_statement = 189, + sym_raise_statement = 190, + sym_pass_statement = 191, + sym_break_statement = 192, + sym_continue_statement = 193, + sym_global_statement = 194, + sym_nonlocal_statement = 195, + sym_exec_statement = 196, + sym_type_parameter = 197, + sym_parenthesized_list_splat = 198, + sym_argument_list = 199, + sym_if_statement = 200, + sym_elif_clause = 201, + sym_else_clause = 202, + sym_for_statement = 203, + sym_while_statement = 204, + sym_try_statement = 205, + sym_except_clause = 206, + sym_except_group_clause = 207, + sym_finally_clause = 208, + sym_with_statement = 209, + sym_with_clause = 210, + sym_with_item = 211, + sym_dotted_name = 212, + sym_not_operator = 213, + sym_boolean_operator = 214, + sym_binary_operator = 215, + sym_unary_operator = 216, + sym_comparison_operator = 217, + sym_lambda = 218, + sym_lambda_within_for_in_clause = 219, + sym_assignment = 220, + sym_augmented_assignment = 221, + sym_pattern_list = 222, + sym__right_hand_side = 223, + sym_yield = 224, + sym_attribute = 225, + sym_subscript = 226, + sym_slice = 227, + sym_call = 228, + sym_generator_expression = 229, + sym__comprehension_clauses = 230, + sym_parenthesized_expression = 231, + sym__collection_elements = 232, + sym_for_in_clause = 233, + sym_if_clause = 234, + sym_block = 235, + sym_expression_list = 236, + sym_parameters = 237, + sym_lambda_parameters = 238, + sym_list_splat = 239, + sym_dictionary_splat = 240, + sym__parameters = 241, + sym__patterns = 242, + sym_parameter = 243, + sym_pattern = 244, + sym_tuple_pattern = 245, + sym_list_pattern = 246, + sym_default_parameter = 247, + sym_typed_default_parameter = 248, + sym_list_splat_pattern = 249, + sym_dictionary_splat_pattern = 250, + sym_as_pattern = 251, + sym__expression_within_for_in_clause = 252, + sym_expression = 253, + sym_primary_expression = 254, + sym_typed_parameter = 255, + sym_type = 256, + sym_splat_type = 257, + sym_generic_type = 258, + sym_union_type = 259, + sym_constrained_type = 260, + sym_member_type = 261, + sym_keyword_argument = 262, + sym_list = 263, + sym_set = 264, + sym_tuple = 265, + sym_dictionary = 266, + sym_pair = 267, + sym_list_comprehension = 268, + sym_dictionary_comprehension = 269, + sym_set_comprehension = 270, + sym_conditional_expression = 271, + sym_concatenated_string = 272, + sym_python_string = 273, + sym_string_content = 274, + sym_interpolation = 275, + sym__f_expression = 276, + sym_format_specifier = 277, + sym_await = 278, + sym_positional_separator = 279, + sym_keyword_separator = 280, + sym_concatenation = 281, + aux_sym_recipe_repeat1 = 282, + aux_sym_override_repeat1 = 283, + aux_sym_inherit_directive_repeat1 = 284, + aux_sym_include_directive_repeat1 = 285, + aux_sym_overrides_statement_repeat1 = 286, + aux_sym_export_functions_statement_repeat1 = 287, + aux_sym_function_definition_repeat1 = 288, + aux_sym_string_repeat1 = 289, + aux_sym_string_repeat2 = 290, + aux_sym__simple_statements_repeat1 = 291, + aux_sym_import_prefix_repeat1 = 292, + aux_sym__import_list_repeat1 = 293, + aux_sym_print_statement_repeat1 = 294, + aux_sym_assert_statement_repeat1 = 295, + aux_sym_global_statement_repeat1 = 296, + aux_sym_type_parameter_repeat1 = 297, + aux_sym_argument_list_repeat1 = 298, + aux_sym_if_statement_repeat1 = 299, + aux_sym_try_statement_repeat1 = 300, + aux_sym_try_statement_repeat2 = 301, + aux_sym_with_clause_repeat1 = 302, + aux_sym_dotted_name_repeat1 = 303, + aux_sym_comparison_operator_repeat1 = 304, + aux_sym_pattern_list_repeat1 = 305, + aux_sym_subscript_repeat1 = 306, + aux_sym__comprehension_clauses_repeat1 = 307, + aux_sym__collection_elements_repeat1 = 308, + aux_sym_for_in_clause_repeat1 = 309, + aux_sym_block_repeat1 = 310, + aux_sym__parameters_repeat1 = 311, + aux_sym_dictionary_repeat1 = 312, + aux_sym_concatenated_string_repeat1 = 313, + aux_sym_python_string_repeat1 = 314, + aux_sym_string_content_repeat1 = 315, + aux_sym_format_specifier_repeat1 = 316, + aux_sym_concatenation_repeat1 = 317, + alias_sym_as_pattern_target = 318, + alias_sym_format_expression = 319, + alias_sym_include_path = 320, + anon_alias_sym_isnot = 321, + anon_alias_sym_notin = 322, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", [aux_sym_recipe_token1] = "recipe_token1", - [anon_sym_NULL] = "\0", + [anon_sym_] = "", [anon_sym_EQ] = "=", [anon_sym_QMARK_EQ] = "\?=", [anon_sym_QMARK_QMARK_EQ] = "\?\?=", @@ -369,6 +371,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_remove] = "remove", [anon_sym_unset] = "unset", [anon_sym_inherit] = "inherit", + [anon_sym_inherit_defer] = "inherit_defer", [sym_inherit_path] = "inherit_path", [anon_sym_INHERIT] = "INHERIT", [anon_sym_DQUOTE] = "\"", @@ -503,6 +506,7 @@ static const char * const ts_symbol_names[] = { [sym_override] = "override", [sym_unset_statement] = "unset_statement", [sym_inherit_directive] = "inherit_directive", + [sym_inherit_defer_directive] = "inherit_defer_directive", [sym_include_directive] = "include_directive", [sym_require_directive] = "require_directive", [sym_export_statement] = "export_statement", @@ -674,7 +678,7 @@ static const char * const ts_symbol_names[] = { static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, [aux_sym_recipe_token1] = aux_sym_recipe_token1, - [anon_sym_NULL] = anon_sym_NULL, + [anon_sym_] = anon_sym_, [anon_sym_EQ] = anon_sym_EQ, [anon_sym_QMARK_EQ] = anon_sym_QMARK_EQ, [anon_sym_QMARK_QMARK_EQ] = anon_sym_QMARK_QMARK_EQ, @@ -693,6 +697,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_remove] = anon_sym_remove, [anon_sym_unset] = anon_sym_unset, [anon_sym_inherit] = anon_sym_inherit, + [anon_sym_inherit_defer] = anon_sym_inherit_defer, [sym_inherit_path] = sym_inherit_path, [anon_sym_INHERIT] = anon_sym_INHERIT, [anon_sym_DQUOTE] = anon_sym_DQUOTE, @@ -827,6 +832,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_override] = sym_override, [sym_unset_statement] = sym_unset_statement, [sym_inherit_directive] = sym_inherit_directive, + [sym_inherit_defer_directive] = sym_inherit_defer_directive, [sym_include_directive] = sym_include_directive, [sym_require_directive] = sym_require_directive, [sym_export_statement] = sym_export_statement, @@ -1004,7 +1010,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [anon_sym_NULL] = { + [anon_sym_] = { .visible = true, .named = false, }, @@ -1080,6 +1086,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_inherit_defer] = { + .visible = true, + .named = false, + }, [sym_inherit_path] = { .visible = true, .named = true, @@ -1616,6 +1626,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_inherit_defer_directive] = { + .visible = true, + .named = true, + }, [sym_include_directive] = { .visible = true, .named = true, @@ -2286,7 +2300,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, }; -enum ts_field_identifiers { +enum { field_alias = 1, field_alternative = 2, field_argument = 3, @@ -2854,37 +2868,37 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6] = 6, [7] = 7, [8] = 8, - [9] = 9, + [9] = 3, [10] = 10, - [11] = 11, + [11] = 8, [12] = 12, [13] = 13, [14] = 14, [15] = 15, [16] = 16, - [17] = 9, + [17] = 17, [18] = 18, [19] = 19, - [20] = 8, - [21] = 21, + [20] = 20, + [21] = 2, [22] = 22, - [23] = 18, + [23] = 23, [24] = 24, [25] = 25, [26] = 26, - [27] = 26, - [28] = 26, - [29] = 26, - [30] = 26, - [31] = 26, - [32] = 26, - [33] = 33, - [34] = 26, - [35] = 26, + [27] = 27, + [28] = 27, + [29] = 27, + [30] = 27, + [31] = 27, + [32] = 27, + [33] = 27, + [34] = 27, + [35] = 27, [36] = 36, [37] = 37, - [38] = 36, - [39] = 37, + [38] = 37, + [39] = 36, [40] = 40, [41] = 41, [42] = 42, @@ -2895,117 +2909,117 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [47] = 47, [48] = 48, [49] = 49, - [50] = 50, + [50] = 43, [51] = 51, - [52] = 46, + [52] = 52, [53] = 53, [54] = 54, [55] = 55, [56] = 56, [57] = 57, [58] = 58, - [59] = 55, + [59] = 51, [60] = 60, [61] = 61, - [62] = 61, - [63] = 61, + [62] = 62, + [63] = 62, [64] = 61, - [65] = 65, - [66] = 61, - [67] = 65, - [68] = 61, - [69] = 65, - [70] = 65, + [65] = 61, + [66] = 62, + [67] = 62, + [68] = 62, + [69] = 61, + [70] = 62, [71] = 61, [72] = 61, - [73] = 65, - [74] = 65, + [73] = 61, + [74] = 62, [75] = 61, - [76] = 65, - [77] = 65, - [78] = 65, + [76] = 61, + [77] = 62, + [78] = 62, [79] = 79, [80] = 80, [81] = 80, [82] = 82, - [83] = 83, - [84] = 83, - [85] = 80, - [86] = 83, - [87] = 87, - [88] = 82, - [89] = 82, - [90] = 83, + [83] = 80, + [84] = 84, + [85] = 84, + [86] = 86, + [87] = 84, + [88] = 84, + [89] = 86, + [90] = 82, [91] = 91, - [92] = 92, - [93] = 91, - [94] = 83, + [92] = 84, + [93] = 93, + [94] = 82, [95] = 82, - [96] = 83, - [97] = 92, - [98] = 98, - [99] = 87, - [100] = 83, - [101] = 80, - [102] = 83, + [96] = 82, + [97] = 93, + [98] = 91, + [99] = 93, + [100] = 82, + [101] = 101, + [102] = 80, [103] = 82, - [104] = 80, - [105] = 87, - [106] = 91, - [107] = 83, - [108] = 91, - [109] = 91, - [110] = 82, - [111] = 82, + [104] = 86, + [105] = 80, + [106] = 84, + [107] = 86, + [108] = 84, + [109] = 84, + [110] = 86, + [111] = 84, [112] = 82, - [113] = 82, - [114] = 87, - [115] = 91, + [113] = 86, + [114] = 86, + [115] = 82, [116] = 82, - [117] = 91, - [118] = 87, - [119] = 91, - [120] = 82, - [121] = 91, - [122] = 87, - [123] = 98, - [124] = 82, - [125] = 83, - [126] = 91, - [127] = 82, + [117] = 82, + [118] = 86, + [119] = 93, + [120] = 93, + [121] = 86, + [122] = 93, + [123] = 84, + [124] = 101, + [125] = 82, + [126] = 82, + [127] = 86, [128] = 128, [129] = 129, - [130] = 130, - [131] = 128, + [130] = 128, + [131] = 131, [132] = 132, - [133] = 132, - [134] = 128, - [135] = 129, - [136] = 128, - [137] = 129, - [138] = 138, + [133] = 131, + [134] = 134, + [135] = 135, + [136] = 136, + [137] = 131, + [138] = 134, [139] = 128, - [140] = 132, - [141] = 141, - [142] = 129, - [143] = 132, - [144] = 129, - [145] = 129, - [146] = 128, - [147] = 132, - [148] = 132, - [149] = 129, - [150] = 128, - [151] = 129, - [152] = 152, - [153] = 152, + [140] = 134, + [141] = 128, + [142] = 136, + [143] = 134, + [144] = 131, + [145] = 128, + [146] = 131, + [147] = 128, + [148] = 128, + [149] = 134, + [150] = 134, + [151] = 128, + [152] = 134, + [153] = 128, [154] = 128, - [155] = 129, - [156] = 132, - [157] = 128, - [158] = 129, - [159] = 132, - [160] = 129, + [155] = 134, + [156] = 131, + [157] = 131, + [158] = 131, + [159] = 128, + [160] = 134, [161] = 161, [162] = 162, [163] = 163, @@ -3013,374 +3027,374 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [165] = 165, [166] = 166, [167] = 167, - [168] = 168, - [169] = 165, + [168] = 166, + [169] = 166, [170] = 170, - [171] = 166, - [172] = 161, + [171] = 171, + [172] = 166, [173] = 173, [174] = 174, - [175] = 175, - [176] = 166, - [177] = 166, - [178] = 174, - [179] = 166, - [180] = 174, - [181] = 181, - [182] = 182, - [183] = 167, - [184] = 166, + [175] = 166, + [176] = 174, + [177] = 177, + [178] = 166, + [179] = 162, + [180] = 180, + [181] = 174, + [182] = 173, + [183] = 183, + [184] = 165, [185] = 166, - [186] = 174, - [187] = 167, - [188] = 167, - [189] = 165, - [190] = 165, - [191] = 191, - [192] = 168, + [186] = 165, + [187] = 165, + [188] = 183, + [189] = 174, + [190] = 190, + [191] = 161, + [192] = 173, [193] = 166, - [194] = 162, + [194] = 173, [195] = 195, [196] = 196, - [197] = 197, + [197] = 195, [198] = 195, - [199] = 199, - [200] = 196, - [201] = 201, - [202] = 202, + [199] = 196, + [200] = 200, + [201] = 200, + [202] = 195, [203] = 196, - [204] = 202, - [205] = 196, - [206] = 195, - [207] = 197, - [208] = 208, - [209] = 208, - [210] = 196, - [211] = 201, - [212] = 196, - [213] = 202, - [214] = 202, - [215] = 197, - [216] = 195, - [217] = 199, - [218] = 199, - [219] = 201, - [220] = 202, - [221] = 199, - [222] = 201, - [223] = 208, - [224] = 195, - [225] = 197, - [226] = 196, - [227] = 202, - [228] = 202, - [229] = 208, - [230] = 201, - [231] = 199, - [232] = 197, + [204] = 204, + [205] = 204, + [206] = 206, + [207] = 204, + [208] = 206, + [209] = 204, + [210] = 206, + [211] = 211, + [212] = 195, + [213] = 213, + [214] = 211, + [215] = 213, + [216] = 200, + [217] = 206, + [218] = 206, + [219] = 204, + [220] = 211, + [221] = 211, + [222] = 213, + [223] = 196, + [224] = 213, + [225] = 213, + [226] = 200, + [227] = 200, + [228] = 213, + [229] = 195, + [230] = 211, + [231] = 211, + [232] = 200, [233] = 195, - [234] = 202, - [235] = 196, - [236] = 201, - [237] = 195, - [238] = 197, - [239] = 201, - [240] = 208, - [241] = 199, - [242] = 201, - [243] = 197, - [244] = 195, - [245] = 197, - [246] = 208, - [247] = 199, - [248] = 199, - [249] = 98, - [250] = 250, - [251] = 251, - [252] = 250, + [234] = 195, + [235] = 200, + [236] = 213, + [237] = 204, + [238] = 204, + [239] = 196, + [240] = 211, + [241] = 206, + [242] = 213, + [243] = 211, + [244] = 206, + [245] = 206, + [246] = 204, + [247] = 200, + [248] = 196, + [249] = 249, + [250] = 249, + [251] = 249, + [252] = 252, [253] = 253, [254] = 254, [255] = 255, [256] = 256, [257] = 257, - [258] = 257, - [259] = 257, - [260] = 256, - [261] = 255, - [262] = 262, - [263] = 256, - [264] = 264, - [265] = 250, - [266] = 82, - [267] = 255, - [268] = 254, + [258] = 82, + [259] = 259, + [260] = 257, + [261] = 257, + [262] = 255, + [263] = 263, + [264] = 256, + [265] = 255, + [266] = 254, + [267] = 259, + [268] = 256, [269] = 254, - [270] = 253, - [271] = 253, + [270] = 259, + [271] = 101, [272] = 272, - [273] = 272, - [274] = 272, - [275] = 275, - [276] = 276, - [277] = 272, - [278] = 272, - [279] = 275, - [280] = 275, - [281] = 275, - [282] = 275, - [283] = 276, - [284] = 272, + [273] = 273, + [274] = 177, + [275] = 177, + [276] = 272, + [277] = 273, + [278] = 273, + [279] = 272, + [280] = 273, + [281] = 177, + [282] = 272, + [283] = 283, + [284] = 273, [285] = 272, - [286] = 275, - [287] = 170, - [288] = 170, - [289] = 272, - [290] = 275, - [291] = 291, - [292] = 170, - [293] = 276, - [294] = 275, + [286] = 272, + [287] = 273, + [288] = 272, + [289] = 289, + [290] = 272, + [291] = 283, + [292] = 283, + [293] = 273, + [294] = 273, [295] = 295, [296] = 296, [297] = 297, - [298] = 82, - [299] = 297, - [300] = 297, + [298] = 296, + [299] = 295, + [300] = 300, [301] = 296, - [302] = 302, + [302] = 300, [303] = 303, - [304] = 296, + [304] = 300, [305] = 295, - [306] = 296, - [307] = 295, - [308] = 296, - [309] = 297, - [310] = 310, - [311] = 264, - [312] = 297, - [313] = 297, - [314] = 297, - [315] = 262, + [306] = 300, + [307] = 296, + [308] = 253, + [309] = 300, + [310] = 296, + [311] = 295, + [312] = 296, + [313] = 313, + [314] = 295, + [315] = 300, [316] = 295, - [317] = 295, - [318] = 296, - [319] = 295, - [320] = 320, - [321] = 296, - [322] = 295, - [323] = 297, - [324] = 297, + [317] = 296, + [318] = 263, + [319] = 300, + [320] = 296, + [321] = 295, + [322] = 322, + [323] = 82, + [324] = 300, [325] = 295, - [326] = 296, + [326] = 326, [327] = 295, [328] = 296, - [329] = 295, - [330] = 297, - [331] = 296, - [332] = 332, - [333] = 262, + [329] = 300, + [330] = 300, + [331] = 295, + [332] = 296, + [333] = 333, [334] = 334, [335] = 335, [336] = 336, [337] = 337, - [338] = 338, - [339] = 339, - [340] = 340, + [338] = 101, + [339] = 334, + [340] = 334, [341] = 341, [342] = 342, - [343] = 337, + [343] = 343, [344] = 334, [345] = 345, [346] = 346, [347] = 347, - [348] = 348, - [349] = 340, - [350] = 264, - [351] = 334, - [352] = 98, - [353] = 82, + [348] = 334, + [349] = 101, + [350] = 350, + [351] = 351, + [352] = 352, + [353] = 326, [354] = 354, [355] = 345, - [356] = 98, - [357] = 82, - [358] = 358, - [359] = 320, - [360] = 98, - [361] = 334, - [362] = 334, - [363] = 262, - [364] = 340, - [365] = 334, - [366] = 366, - [367] = 262, - [368] = 358, - [369] = 82, - [370] = 334, - [371] = 347, - [372] = 334, + [356] = 347, + [357] = 263, + [358] = 351, + [359] = 345, + [360] = 334, + [361] = 354, + [362] = 352, + [363] = 82, + [364] = 253, + [365] = 263, + [366] = 263, + [367] = 334, + [368] = 352, + [369] = 334, + [370] = 354, + [371] = 82, + [372] = 253, [373] = 373, - [374] = 337, - [375] = 358, + [374] = 82, + [375] = 375, [376] = 376, - [377] = 82, + [377] = 101, [378] = 378, - [379] = 347, - [380] = 380, - [381] = 264, - [382] = 334, + [379] = 351, + [380] = 253, + [381] = 334, + [382] = 382, [383] = 383, [384] = 384, - [385] = 345, - [386] = 264, - [387] = 334, + [385] = 347, + [386] = 334, + [387] = 82, [388] = 388, - [389] = 264, + [389] = 389, [390] = 390, - [391] = 391, - [392] = 262, - [393] = 393, + [391] = 263, + [392] = 388, + [393] = 253, [394] = 394, - [395] = 391, + [395] = 395, [396] = 396, [397] = 397, [398] = 398, [399] = 399, [400] = 400, - [401] = 401, + [401] = 398, [402] = 402, [403] = 403, - [404] = 398, - [405] = 396, - [406] = 406, + [404] = 404, + [405] = 405, + [406] = 398, [407] = 407, - [408] = 397, + [408] = 403, [409] = 409, [410] = 410, - [411] = 411, + [411] = 403, [412] = 412, [413] = 413, - [414] = 414, + [414] = 413, [415] = 415, - [416] = 416, + [416] = 405, [417] = 417, - [418] = 418, + [418] = 396, [419] = 419, - [420] = 401, - [421] = 409, - [422] = 411, - [423] = 411, - [424] = 397, - [425] = 425, - [426] = 416, - [427] = 427, - [428] = 402, + [420] = 404, + [421] = 407, + [422] = 404, + [423] = 413, + [424] = 424, + [425] = 419, + [426] = 410, + [427] = 405, + [428] = 410, [429] = 429, - [430] = 412, + [430] = 409, [431] = 431, - [432] = 412, - [433] = 407, - [434] = 411, - [435] = 416, - [436] = 400, + [432] = 397, + [433] = 433, + [434] = 409, + [435] = 405, + [436] = 436, [437] = 437, - [438] = 409, - [439] = 399, - [440] = 401, - [441] = 397, - [442] = 398, - [443] = 398, - [444] = 409, - [445] = 397, - [446] = 402, - [447] = 412, - [448] = 409, - [449] = 399, - [450] = 396, - [451] = 396, - [452] = 402, - [453] = 409, - [454] = 454, - [455] = 407, + [438] = 397, + [439] = 407, + [440] = 440, + [441] = 396, + [442] = 405, + [443] = 405, + [444] = 417, + [445] = 413, + [446] = 407, + [447] = 410, + [448] = 407, + [449] = 409, + [450] = 450, + [451] = 403, + [452] = 405, + [453] = 398, + [454] = 404, + [455] = 455, [456] = 456, - [457] = 402, - [458] = 409, - [459] = 399, - [460] = 437, - [461] = 398, - [462] = 401, - [463] = 397, - [464] = 412, - [465] = 411, - [466] = 400, - [467] = 467, - [468] = 411, - [469] = 396, - [470] = 411, - [471] = 400, - [472] = 402, - [473] = 399, - [474] = 474, + [457] = 404, + [458] = 413, + [459] = 396, + [460] = 460, + [461] = 407, + [462] = 462, + [463] = 413, + [464] = 396, + [465] = 82, + [466] = 450, + [467] = 410, + [468] = 417, + [469] = 431, + [470] = 396, + [471] = 397, + [472] = 472, + [473] = 473, + [474] = 398, [475] = 398, - [476] = 467, - [477] = 477, - [478] = 396, - [479] = 402, - [480] = 409, - [481] = 396, - [482] = 401, - [483] = 397, - [484] = 437, - [485] = 416, - [486] = 399, - [487] = 398, - [488] = 411, - [489] = 418, - [490] = 454, - [491] = 397, - [492] = 454, - [493] = 412, - [494] = 397, - [495] = 474, - [496] = 412, - [497] = 398, - [498] = 399, + [476] = 450, + [477] = 403, + [478] = 456, + [479] = 407, + [480] = 437, + [481] = 397, + [482] = 407, + [483] = 417, + [484] = 403, + [485] = 398, + [486] = 86, + [487] = 404, + [488] = 450, + [489] = 398, + [490] = 417, + [491] = 404, + [492] = 410, + [493] = 413, + [494] = 437, + [495] = 413, + [496] = 410, + [497] = 410, + [498] = 409, [499] = 402, - [500] = 416, - [501] = 416, - [502] = 400, - [503] = 91, - [504] = 411, - [505] = 82, - [506] = 399, - [507] = 409, - [508] = 508, - [509] = 402, - [510] = 412, - [511] = 399, - [512] = 400, - [513] = 398, - [514] = 407, - [515] = 400, - [516] = 454, - [517] = 400, - [518] = 518, - [519] = 411, - [520] = 396, - [521] = 456, - [522] = 400, - [523] = 412, - [524] = 397, - [525] = 398, - [526] = 399, - [527] = 409, - [528] = 402, - [529] = 412, - [530] = 530, - [531] = 396, - [532] = 508, - [533] = 401, - [534] = 400, - [535] = 396, + [500] = 402, + [501] = 396, + [502] = 404, + [503] = 413, + [504] = 409, + [505] = 405, + [506] = 409, + [507] = 402, + [508] = 403, + [509] = 404, + [510] = 403, + [511] = 407, + [512] = 409, + [513] = 396, + [514] = 514, + [515] = 410, + [516] = 403, + [517] = 396, + [518] = 409, + [519] = 440, + [520] = 405, + [521] = 396, + [522] = 405, + [523] = 403, + [524] = 409, + [525] = 410, + [526] = 413, + [527] = 404, + [528] = 398, + [529] = 398, + [530] = 472, + [531] = 417, + [532] = 407, + [533] = 533, + [534] = 397, + [535] = 535, [536] = 536, [537] = 537, [538] = 538, @@ -3389,35 +3403,35 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [541] = 541, [542] = 542, [543] = 543, - [544] = 542, + [544] = 543, [545] = 545, - [546] = 543, - [547] = 161, + [546] = 545, + [547] = 547, [548] = 548, [549] = 549, [550] = 550, [551] = 551, [552] = 552, [553] = 553, - [554] = 162, + [554] = 554, [555] = 555, [556] = 556, [557] = 557, [558] = 558, [559] = 559, - [560] = 560, - [561] = 561, - [562] = 550, + [560] = 162, + [561] = 549, + [562] = 562, [563] = 563, [564] = 564, - [565] = 565, - [566] = 564, - [567] = 567, - [568] = 568, + [565] = 551, + [566] = 566, + [567] = 161, + [568] = 559, [569] = 569, - [570] = 568, - [571] = 569, - [572] = 572, + [570] = 570, + [571] = 571, + [572] = 562, [573] = 573, [574] = 574, [575] = 575, @@ -3427,104 +3441,104 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [579] = 579, [580] = 580, [581] = 581, - [582] = 578, - [583] = 579, + [582] = 579, + [583] = 583, [584] = 584, [585] = 585, - [586] = 586, - [587] = 580, + [586] = 580, + [587] = 587, [588] = 588, - [589] = 589, + [589] = 583, [590] = 590, - [591] = 591, - [592] = 585, - [593] = 589, - [594] = 577, - [595] = 595, + [591] = 585, + [592] = 592, + [593] = 593, + [594] = 590, + [595] = 588, [596] = 596, - [597] = 579, + [597] = 597, [598] = 598, [599] = 599, [600] = 600, - [601] = 589, + [601] = 597, [602] = 602, - [603] = 578, + [603] = 590, [604] = 604, - [605] = 605, + [605] = 580, [606] = 606, [607] = 161, [608] = 608, - [609] = 609, - [610] = 610, + [609] = 600, + [610] = 583, [611] = 611, [612] = 612, [613] = 613, - [614] = 612, - [615] = 610, + [614] = 614, + [615] = 613, [616] = 616, - [617] = 612, - [618] = 577, - [619] = 162, - [620] = 620, - [621] = 621, - [622] = 610, - [623] = 611, - [624] = 624, - [625] = 580, - [626] = 616, - [627] = 578, - [628] = 628, - [629] = 628, - [630] = 580, - [631] = 628, - [632] = 632, - [633] = 579, - [634] = 589, - [635] = 635, - [636] = 578, - [637] = 577, - [638] = 628, - [639] = 589, - [640] = 579, - [641] = 628, - [642] = 580, - [643] = 577, - [644] = 628, + [617] = 617, + [618] = 585, + [619] = 588, + [620] = 600, + [621] = 162, + [622] = 608, + [623] = 623, + [624] = 597, + [625] = 625, + [626] = 626, + [627] = 627, + [628] = 627, + [629] = 580, + [630] = 627, + [631] = 631, + [632] = 585, + [633] = 627, + [634] = 590, + [635] = 590, + [636] = 636, + [637] = 627, + [638] = 583, + [639] = 588, + [640] = 627, + [641] = 585, + [642] = 583, + [643] = 580, + [644] = 588, [645] = 645, - [646] = 589, + [646] = 646, [647] = 647, - [648] = 632, + [648] = 648, [649] = 649, [650] = 650, - [651] = 651, + [651] = 580, [652] = 652, [653] = 653, [654] = 654, [655] = 655, - [656] = 578, + [656] = 656, [657] = 657, - [658] = 577, - [659] = 659, + [658] = 658, + [659] = 631, [660] = 660, - [661] = 635, + [661] = 588, [662] = 662, - [663] = 663, - [664] = 579, + [663] = 583, + [664] = 590, [665] = 665, [666] = 666, - [667] = 667, - [668] = 659, + [667] = 662, + [668] = 668, [669] = 669, [670] = 670, [671] = 671, [672] = 672, [673] = 673, [674] = 674, - [675] = 675, - [676] = 676, + [675] = 636, + [676] = 585, [677] = 677, [678] = 678, - [679] = 580, + [679] = 679, [680] = 680, [681] = 680, [682] = 680, @@ -3537,835 +3551,835 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [689] = 680, [690] = 690, [691] = 691, - [692] = 691, + [692] = 692, [693] = 693, - [694] = 694, - [695] = 693, + [694] = 690, + [695] = 695, [696] = 696, - [697] = 697, - [698] = 693, - [699] = 694, - [700] = 693, - [701] = 694, - [702] = 696, - [703] = 703, - [704] = 693, - [705] = 693, - [706] = 696, - [707] = 693, - [708] = 693, - [709] = 709, - [710] = 710, + [697] = 695, + [698] = 698, + [699] = 699, + [700] = 700, + [701] = 701, + [702] = 698, + [703] = 690, + [704] = 690, + [705] = 690, + [706] = 693, + [707] = 690, + [708] = 692, + [709] = 700, + [710] = 690, [711] = 711, - [712] = 712, - [713] = 691, - [714] = 712, - [715] = 703, - [716] = 710, - [717] = 717, - [718] = 711, - [719] = 703, + [712] = 691, + [713] = 701, + [714] = 690, + [715] = 700, + [716] = 700, + [717] = 701, + [718] = 698, + [719] = 693, [720] = 720, - [721] = 720, - [722] = 717, - [723] = 693, - [724] = 691, - [725] = 712, - [726] = 691, - [727] = 709, - [728] = 712, - [729] = 694, - [730] = 691, - [731] = 710, - [732] = 709, - [733] = 693, - [734] = 717, + [721] = 691, + [722] = 699, + [723] = 701, + [724] = 690, + [725] = 693, + [726] = 701, + [727] = 691, + [728] = 728, + [729] = 690, + [730] = 690, + [731] = 696, + [732] = 693, + [733] = 695, + [734] = 695, [735] = 690, - [736] = 697, - [737] = 737, - [738] = 711, - [739] = 711, - [740] = 696, - [741] = 717, - [742] = 693, - [743] = 717, - [744] = 693, - [745] = 737, - [746] = 711, - [747] = 703, + [736] = 692, + [737] = 720, + [738] = 691, + [739] = 695, + [740] = 698, + [741] = 693, + [742] = 696, + [743] = 701, + [744] = 699, + [745] = 711, + [746] = 695, + [747] = 720, [748] = 720, - [749] = 717, - [750] = 703, - [751] = 720, - [752] = 691, - [753] = 720, + [749] = 692, + [750] = 701, + [751] = 693, + [752] = 690, + [753] = 691, [754] = 690, - [755] = 693, - [756] = 703, - [757] = 712, - [758] = 697, - [759] = 710, - [760] = 709, - [761] = 690, - [762] = 710, - [763] = 709, - [764] = 712, - [765] = 694, - [766] = 690, - [767] = 717, - [768] = 693, - [769] = 710, - [770] = 697, - [771] = 696, - [772] = 711, - [773] = 717, - [774] = 693, - [775] = 697, - [776] = 690, - [777] = 690, - [778] = 694, - [779] = 709, - [780] = 690, - [781] = 717, - [782] = 709, - [783] = 709, - [784] = 710, - [785] = 711, - [786] = 703, - [787] = 691, - [788] = 710, - [789] = 696, - [790] = 712, - [791] = 712, - [792] = 691, - [793] = 720, + [755] = 695, + [756] = 699, + [757] = 728, + [758] = 758, + [759] = 696, + [760] = 692, + [761] = 698, + [762] = 728, + [763] = 728, + [764] = 700, + [765] = 692, + [766] = 711, + [767] = 700, + [768] = 698, + [769] = 701, + [770] = 711, + [771] = 692, + [772] = 720, + [773] = 691, + [774] = 699, + [775] = 696, + [776] = 728, + [777] = 699, + [778] = 699, + [779] = 728, + [780] = 698, + [781] = 728, + [782] = 699, + [783] = 691, + [784] = 693, + [785] = 728, + [786] = 690, + [787] = 690, + [788] = 720, + [789] = 691, + [790] = 720, + [791] = 711, + [792] = 692, + [793] = 695, [794] = 693, - [795] = 694, - [796] = 694, - [797] = 703, - [798] = 720, - [799] = 690, - [800] = 709, - [801] = 712, - [802] = 710, - [803] = 717, - [804] = 711, - [805] = 703, - [806] = 696, - [807] = 717, - [808] = 696, - [809] = 693, + [795] = 711, + [796] = 700, + [797] = 758, + [798] = 700, + [799] = 698, + [800] = 692, + [801] = 728, + [802] = 698, + [803] = 699, + [804] = 728, + [805] = 695, + [806] = 711, + [807] = 701, + [808] = 720, + [809] = 720, [810] = 711, - [811] = 710, - [812] = 720, - [813] = 709, - [814] = 690, - [815] = 696, - [816] = 711, - [817] = 703, - [818] = 691, - [819] = 712, - [820] = 694, - [821] = 720, - [822] = 693, - [823] = 696, - [824] = 694, - [825] = 711, - [826] = 703, - [827] = 720, - [828] = 691, - [829] = 712, - [830] = 710, - [831] = 709, - [832] = 690, + [811] = 691, + [812] = 693, + [813] = 690, + [814] = 711, + [815] = 692, + [816] = 699, + [817] = 720, + [818] = 700, + [819] = 695, + [820] = 701, + [821] = 693, + [822] = 690, + [823] = 711, + [824] = 699, + [825] = 728, + [826] = 698, + [827] = 695, + [828] = 692, + [829] = 700, + [830] = 711, + [831] = 720, + [832] = 691, [833] = 833, [834] = 834, [835] = 835, - [836] = 833, - [837] = 833, - [838] = 834, - [839] = 839, - [840] = 839, + [836] = 836, + [837] = 836, + [838] = 835, + [839] = 836, + [840] = 833, [841] = 834, - [842] = 835, + [842] = 834, [843] = 835, - [844] = 839, + [844] = 833, [845] = 845, - [846] = 839, - [847] = 847, + [846] = 834, + [847] = 835, [848] = 848, - [849] = 849, - [850] = 834, - [851] = 834, + [849] = 848, + [850] = 850, + [851] = 851, [852] = 852, [853] = 833, - [854] = 845, + [854] = 854, [855] = 855, [856] = 856, - [857] = 834, - [858] = 839, - [859] = 852, - [860] = 849, - [861] = 861, - [862] = 862, - [863] = 833, - [864] = 835, - [865] = 865, - [866] = 866, + [857] = 852, + [858] = 834, + [859] = 833, + [860] = 836, + [861] = 848, + [862] = 850, + [863] = 863, + [864] = 845, + [865] = 854, + [866] = 855, [867] = 867, - [868] = 834, - [869] = 869, - [870] = 835, - [871] = 861, - [872] = 861, - [873] = 852, - [874] = 839, - [875] = 849, - [876] = 855, - [877] = 839, - [878] = 847, - [879] = 855, - [880] = 880, - [881] = 881, - [882] = 882, - [883] = 839, - [884] = 833, + [868] = 856, + [869] = 856, + [870] = 852, + [871] = 871, + [872] = 863, + [873] = 873, + [874] = 850, + [875] = 875, + [876] = 836, + [877] = 835, + [878] = 851, + [879] = 873, + [880] = 871, + [881] = 845, + [882] = 836, + [883] = 867, + [884] = 834, [885] = 835, - [886] = 867, + [886] = 886, [887] = 887, - [888] = 865, - [889] = 880, - [890] = 847, - [891] = 880, - [892] = 833, - [893] = 881, - [894] = 882, - [895] = 845, - [896] = 869, - [897] = 867, - [898] = 881, - [899] = 835, - [900] = 865, - [901] = 882, - [902] = 869, - [903] = 887, + [888] = 867, + [889] = 833, + [890] = 851, + [891] = 863, + [892] = 892, + [893] = 836, + [894] = 833, + [895] = 836, + [896] = 854, + [897] = 897, + [898] = 855, + [899] = 871, + [900] = 834, + [901] = 873, + [902] = 835, + [903] = 886, [904] = 904, - [905] = 882, - [906] = 551, - [907] = 552, - [908] = 548, - [909] = 845, - [910] = 869, - [911] = 567, - [912] = 855, - [913] = 847, - [914] = 861, - [915] = 867, - [916] = 852, - [917] = 862, - [918] = 881, - [919] = 882, - [920] = 880, - [921] = 881, - [922] = 839, - [923] = 856, - [924] = 924, - [925] = 845, - [926] = 549, - [927] = 557, - [928] = 865, - [929] = 849, - [930] = 880, - [931] = 565, - [932] = 833, - [933] = 933, - [934] = 934, - [935] = 855, - [936] = 869, - [937] = 861, - [938] = 938, - [939] = 939, - [940] = 847, - [941] = 848, - [942] = 867, - [943] = 943, - [944] = 944, - [945] = 945, - [946] = 946, - [947] = 865, - [948] = 865, - [949] = 867, - [950] = 835, - [951] = 847, - [952] = 887, - [953] = 849, - [954] = 954, - [955] = 852, - [956] = 861, - [957] = 855, - [958] = 849, - [959] = 847, - [960] = 880, + [905] = 871, + [906] = 906, + [907] = 907, + [908] = 852, + [909] = 873, + [910] = 856, + [911] = 855, + [912] = 854, + [913] = 845, + [914] = 851, + [915] = 871, + [916] = 867, + [917] = 850, + [918] = 863, + [919] = 848, + [920] = 547, + [921] = 569, + [922] = 863, + [923] = 867, + [924] = 548, + [925] = 571, + [926] = 552, + [927] = 863, + [928] = 867, + [929] = 835, + [930] = 930, + [931] = 851, + [932] = 873, + [933] = 555, + [934] = 871, + [935] = 935, + [936] = 936, + [937] = 851, + [938] = 906, + [939] = 836, + [940] = 886, + [941] = 834, + [942] = 942, + [943] = 887, + [944] = 892, + [945] = 852, + [946] = 856, + [947] = 836, + [948] = 855, + [949] = 854, + [950] = 867, + [951] = 863, + [952] = 833, + [953] = 845, + [954] = 554, + [955] = 955, + [956] = 851, + [957] = 850, + [958] = 848, + [959] = 959, + [960] = 960, [961] = 961, - [962] = 881, - [963] = 882, - [964] = 849, - [965] = 845, - [966] = 869, - [967] = 848, - [968] = 904, + [962] = 962, + [963] = 963, + [964] = 964, + [965] = 887, + [966] = 966, + [967] = 892, + [968] = 897, [969] = 969, [970] = 970, [971] = 971, - [972] = 866, + [972] = 972, [973] = 973, - [974] = 545, - [975] = 975, - [976] = 558, - [977] = 852, - [978] = 856, - [979] = 542, + [974] = 897, + [975] = 873, + [976] = 564, + [977] = 875, + [978] = 873, + [979] = 871, [980] = 980, [981] = 981, - [982] = 866, - [983] = 543, + [982] = 982, + [983] = 983, [984] = 852, - [985] = 985, - [986] = 986, - [987] = 553, - [988] = 865, - [989] = 989, - [990] = 839, - [991] = 563, - [992] = 862, + [985] = 545, + [986] = 543, + [987] = 856, + [988] = 542, + [989] = 855, + [990] = 854, + [991] = 845, + [992] = 992, [993] = 993, - [994] = 994, + [994] = 850, [995] = 995, - [996] = 861, - [997] = 997, - [998] = 998, - [999] = 999, - [1000] = 1000, + [996] = 573, + [997] = 848, + [998] = 875, + [999] = 850, + [1000] = 845, [1001] = 1001, - [1002] = 855, - [1003] = 834, - [1004] = 880, - [1005] = 881, - [1006] = 882, + [1002] = 1002, + [1003] = 854, + [1004] = 1004, + [1005] = 1005, + [1006] = 848, [1007] = 1007, - [1008] = 845, - [1009] = 869, - [1010] = 867, + [1008] = 1008, + [1009] = 855, + [1010] = 856, [1011] = 1011, - [1012] = 1012, - [1013] = 882, - [1014] = 847, - [1015] = 862, - [1016] = 887, - [1017] = 856, - [1018] = 848, - [1019] = 869, - [1020] = 845, - [1021] = 882, - [1022] = 881, - [1023] = 880, - [1024] = 855, - [1025] = 861, - [1026] = 971, - [1027] = 986, - [1028] = 989, - [1029] = 852, - [1030] = 849, - [1031] = 839, - [1032] = 887, - [1033] = 856, - [1034] = 839, - [1035] = 848, + [1012] = 566, + [1013] = 852, + [1014] = 1014, + [1015] = 961, + [1016] = 1005, + [1017] = 992, + [1018] = 897, + [1019] = 993, + [1020] = 547, + [1021] = 569, + [1022] = 1001, + [1023] = 1002, + [1024] = 892, + [1025] = 887, + [1026] = 548, + [1027] = 571, + [1028] = 552, + [1029] = 973, + [1030] = 972, + [1031] = 1011, + [1032] = 971, + [1033] = 555, + [1034] = 963, + [1035] = 966, [1036] = 995, - [1037] = 954, - [1038] = 1011, - [1039] = 867, - [1040] = 865, - [1041] = 558, - [1042] = 848, - [1043] = 553, - [1044] = 563, - [1045] = 558, - [1046] = 856, - [1047] = 887, - [1048] = 973, - [1049] = 553, - [1050] = 944, - [1051] = 847, - [1052] = 866, - [1053] = 550, - [1054] = 564, - [1055] = 862, - [1056] = 938, - [1057] = 939, - [1058] = 943, - [1059] = 945, - [1060] = 946, - [1061] = 961, - [1062] = 975, - [1063] = 1012, - [1064] = 862, - [1065] = 839, - [1066] = 866, - [1067] = 969, - [1068] = 970, - [1069] = 557, - [1070] = 549, - [1071] = 980, - [1072] = 981, - [1073] = 551, - [1074] = 552, - [1075] = 548, - [1076] = 985, - [1077] = 1007, - [1078] = 565, - [1079] = 904, - [1080] = 993, - [1081] = 994, - [1082] = 567, - [1083] = 997, - [1084] = 998, - [1085] = 999, - [1086] = 1000, - [1087] = 1001, - [1088] = 904, - [1089] = 543, - [1090] = 569, - [1091] = 542, - [1092] = 545, - [1093] = 568, - [1094] = 1001, - [1095] = 1000, - [1096] = 866, - [1097] = 565, - [1098] = 1007, - [1099] = 999, - [1100] = 998, - [1101] = 943, - [1102] = 939, - [1103] = 997, - [1104] = 938, - [1105] = 866, - [1106] = 1012, - [1107] = 975, - [1108] = 961, - [1109] = 946, - [1110] = 945, - [1111] = 545, - [1112] = 542, - [1113] = 543, - [1114] = 944, - [1115] = 567, - [1116] = 994, - [1117] = 993, - [1118] = 852, - [1119] = 849, - [1120] = 861, - [1121] = 985, - [1122] = 565, - [1123] = 855, - [1124] = 880, - [1125] = 881, - [1126] = 973, - [1127] = 563, - [1128] = 548, - [1129] = 1011, - [1130] = 954, - [1131] = 995, - [1132] = 845, - [1133] = 551, - [1134] = 981, - [1135] = 862, - [1136] = 989, - [1137] = 869, - [1138] = 986, - [1139] = 980, - [1140] = 971, - [1141] = 552, - [1142] = 865, - [1143] = 887, - [1144] = 856, - [1145] = 567, - [1146] = 848, - [1147] = 563, - [1148] = 867, - [1149] = 548, - [1150] = 552, - [1151] = 551, - [1152] = 969, - [1153] = 970, - [1154] = 557, - [1155] = 549, - [1156] = 549, - [1157] = 557, - [1158] = 550, - [1159] = 961, - [1160] = 563, - [1161] = 994, - [1162] = 993, - [1163] = 989, - [1164] = 563, - [1165] = 561, - [1166] = 558, - [1167] = 564, - [1168] = 561, - [1169] = 569, - [1170] = 568, - [1171] = 1007, - [1172] = 989, - [1173] = 973, - [1174] = 569, - [1175] = 944, - [1176] = 568, - [1177] = 986, - [1178] = 986, - [1179] = 1001, - [1180] = 553, - [1181] = 558, - [1182] = 985, - [1183] = 1011, - [1184] = 954, - [1185] = 1000, - [1186] = 999, - [1187] = 1001, - [1188] = 981, - [1189] = 980, - [1190] = 995, - [1191] = 1012, - [1192] = 839, - [1193] = 989, - [1194] = 986, - [1195] = 1000, - [1196] = 999, - [1197] = 998, - [1198] = 997, - [1199] = 975, - [1200] = 970, - [1201] = 969, - [1202] = 961, - [1203] = 969, - [1204] = 946, - [1205] = 970, - [1206] = 557, - [1207] = 945, - [1208] = 549, - [1209] = 998, - [1210] = 1210, - [1211] = 993, - [1212] = 980, - [1213] = 981, - [1214] = 551, - [1215] = 553, - [1216] = 552, - [1217] = 564, - [1218] = 548, - [1219] = 985, - [1220] = 997, - [1221] = 550, - [1222] = 971, - [1223] = 971, - [1224] = 985, - [1225] = 994, - [1226] = 944, - [1227] = 557, - [1228] = 549, - [1229] = 994, - [1230] = 995, - [1231] = 995, - [1232] = 993, - [1233] = 551, - [1234] = 567, - [1235] = 552, - [1236] = 954, - [1237] = 1011, - [1238] = 980, - [1239] = 558, - [1240] = 954, - [1241] = 553, - [1242] = 1011, - [1243] = 563, - [1244] = 548, - [1245] = 973, - [1246] = 1007, - [1247] = 985, - [1248] = 997, - [1249] = 993, - [1250] = 981, - [1251] = 980, - [1252] = 973, - [1253] = 567, - [1254] = 563, - [1255] = 563, - [1256] = 1011, - [1257] = 954, - [1258] = 995, - [1259] = 973, - [1260] = 989, - [1261] = 944, - [1262] = 986, - [1263] = 887, - [1264] = 856, - [1265] = 970, - [1266] = 971, - [1267] = 969, - [1268] = 548, - [1269] = 550, - [1270] = 994, - [1271] = 564, - [1272] = 549, - [1273] = 848, - [1274] = 998, - [1275] = 945, - [1276] = 946, - [1277] = 567, - [1278] = 961, - [1279] = 1012, - [1280] = 975, - [1281] = 961, - [1282] = 946, - [1283] = 971, - [1284] = 997, - [1285] = 999, - [1286] = 945, - [1287] = 1000, - [1288] = 565, - [1289] = 998, - [1290] = 945, - [1291] = 999, - [1292] = 1000, - [1293] = 563, - [1294] = 946, - [1295] = 1001, - [1296] = 975, - [1297] = 981, - [1298] = 975, - [1299] = 1299, - [1300] = 1012, - [1301] = 1301, - [1302] = 1012, - [1303] = 551, - [1304] = 552, - [1305] = 862, - [1306] = 1007, - [1307] = 565, - [1308] = 1001, - [1309] = 565, - [1310] = 569, - [1311] = 568, - [1312] = 933, - [1313] = 924, - [1314] = 558, - [1315] = 1315, - [1316] = 553, - [1317] = 969, - [1318] = 970, - [1319] = 944, - [1320] = 934, - [1321] = 866, - [1322] = 1007, - [1323] = 557, - [1324] = 558, - [1325] = 855, - [1326] = 565, - [1327] = 563, - [1328] = 869, - [1329] = 845, - [1330] = 849, - [1331] = 561, - [1332] = 943, - [1333] = 973, - [1334] = 938, - [1335] = 939, - [1336] = 847, - [1337] = 939, - [1338] = 1011, - [1339] = 954, - [1340] = 943, - [1341] = 852, - [1342] = 945, - [1343] = 995, - [1344] = 946, - [1345] = 938, - [1346] = 882, - [1347] = 989, - [1348] = 986, - [1349] = 969, - [1350] = 961, - [1351] = 975, - [1352] = 567, - [1353] = 1012, - [1354] = 970, - [1355] = 1007, - [1356] = 980, - [1357] = 981, - [1358] = 867, - [1359] = 861, - [1360] = 943, - [1361] = 939, - [1362] = 549, - [1363] = 938, - [1364] = 865, - [1365] = 880, - [1366] = 985, - [1367] = 881, - [1368] = 548, + [1037] = 1004, + [1038] = 897, + [1039] = 555, + [1040] = 886, + [1041] = 897, + [1042] = 559, + [1043] = 969, + [1044] = 886, + [1045] = 573, + [1046] = 1008, + [1047] = 566, + [1048] = 887, + [1049] = 892, + [1050] = 904, + [1051] = 1005, + [1052] = 1007, + [1053] = 1014, + [1054] = 970, + [1055] = 906, + [1056] = 935, + [1057] = 897, + [1058] = 983, + [1059] = 836, + [1060] = 936, + [1061] = 875, + [1062] = 551, + [1063] = 554, + [1064] = 564, + [1065] = 983, + [1066] = 554, + [1067] = 970, + [1068] = 969, + [1069] = 966, + [1070] = 564, + [1071] = 963, + [1072] = 566, + [1073] = 961, + [1074] = 573, + [1075] = 851, + [1076] = 542, + [1077] = 543, + [1078] = 545, + [1079] = 935, + [1080] = 906, + [1081] = 562, + [1082] = 936, + [1083] = 1014, + [1084] = 564, + [1085] = 1007, + [1086] = 942, + [1087] = 955, + [1088] = 836, + [1089] = 959, + [1090] = 942, + [1091] = 545, + [1092] = 904, + [1093] = 543, + [1094] = 542, + [1095] = 1008, + [1096] = 992, + [1097] = 993, + [1098] = 875, + [1099] = 955, + [1100] = 547, + [1101] = 959, + [1102] = 867, + [1103] = 960, + [1104] = 863, + [1105] = 962, + [1106] = 569, + [1107] = 852, + [1108] = 856, + [1109] = 855, + [1110] = 875, + [1111] = 964, + [1112] = 555, + [1113] = 875, + [1114] = 973, + [1115] = 1004, + [1116] = 995, + [1117] = 549, + [1118] = 972, + [1119] = 971, + [1120] = 854, + [1121] = 547, + [1122] = 569, + [1123] = 845, + [1124] = 554, + [1125] = 886, + [1126] = 850, + [1127] = 848, + [1128] = 887, + [1129] = 892, + [1130] = 836, + [1131] = 871, + [1132] = 873, + [1133] = 960, + [1134] = 962, + [1135] = 548, + [1136] = 964, + [1137] = 848, + [1138] = 571, + [1139] = 552, + [1140] = 851, + [1141] = 850, + [1142] = 867, + [1143] = 873, + [1144] = 863, + [1145] = 871, + [1146] = 845, + [1147] = 854, + [1148] = 855, + [1149] = 856, + [1150] = 852, + [1151] = 886, + [1152] = 1011, + [1153] = 552, + [1154] = 571, + [1155] = 548, + [1156] = 1002, + [1157] = 1001, + [1158] = 887, + [1159] = 892, + [1160] = 1014, + [1161] = 966, + [1162] = 970, + [1163] = 1004, + [1164] = 995, + [1165] = 969, + [1166] = 555, + [1167] = 1008, + [1168] = 1004, + [1169] = 904, + [1170] = 557, + [1171] = 1005, + [1172] = 1007, + [1173] = 995, + [1174] = 566, + [1175] = 573, + [1176] = 1014, + [1177] = 897, + [1178] = 564, + [1179] = 963, + [1180] = 961, + [1181] = 557, + [1182] = 875, + [1183] = 992, + [1184] = 1011, + [1185] = 993, + [1186] = 1001, + [1187] = 1002, + [1188] = 1011, + [1189] = 935, + [1190] = 1002, + [1191] = 1001, + [1192] = 566, + [1193] = 995, + [1194] = 1004, + [1195] = 573, + [1196] = 961, + [1197] = 1008, + [1198] = 936, + [1199] = 904, + [1200] = 983, + [1201] = 1005, + [1202] = 993, + [1203] = 992, + [1204] = 1007, + [1205] = 566, + [1206] = 573, + [1207] = 963, + [1208] = 942, + [1209] = 955, + [1210] = 959, + [1211] = 549, + [1212] = 562, + [1213] = 1011, + [1214] = 983, + [1215] = 969, + [1216] = 970, + [1217] = 970, + [1218] = 970, + [1219] = 836, + [1220] = 969, + [1221] = 992, + [1222] = 993, + [1223] = 935, + [1224] = 960, + [1225] = 969, + [1226] = 966, + [1227] = 966, + [1228] = 963, + [1229] = 961, + [1230] = 547, + [1231] = 962, + [1232] = 554, + [1233] = 980, + [1234] = 569, + [1235] = 964, + [1236] = 981, + [1237] = 963, + [1238] = 961, + [1239] = 935, + [1240] = 564, + [1241] = 552, + [1242] = 551, + [1243] = 559, + [1244] = 571, + [1245] = 547, + [1246] = 569, + [1247] = 548, + [1248] = 1002, + [1249] = 935, + [1250] = 1250, + [1251] = 548, + [1252] = 571, + [1253] = 552, + [1254] = 1254, + [1255] = 554, + [1256] = 1001, + [1257] = 936, + [1258] = 982, + [1259] = 1014, + [1260] = 983, + [1261] = 564, + [1262] = 942, + [1263] = 955, + [1264] = 555, + [1265] = 959, + [1266] = 936, + [1267] = 554, + [1268] = 564, + [1269] = 960, + [1270] = 966, + [1271] = 559, + [1272] = 1001, + [1273] = 551, + [1274] = 962, + [1275] = 892, + [1276] = 887, + [1277] = 573, + [1278] = 964, + [1279] = 1002, + [1280] = 548, + [1281] = 886, + [1282] = 942, + [1283] = 955, + [1284] = 959, + [1285] = 936, + [1286] = 571, + [1287] = 569, + [1288] = 547, + [1289] = 993, + [1290] = 992, + [1291] = 552, + [1292] = 1011, + [1293] = 564, + [1294] = 960, + [1295] = 564, + [1296] = 1008, + [1297] = 962, + [1298] = 942, + [1299] = 955, + [1300] = 904, + [1301] = 964, + [1302] = 983, + [1303] = 559, + [1304] = 551, + [1305] = 1014, + [1306] = 1005, + [1307] = 1007, + [1308] = 1005, + [1309] = 959, + [1310] = 904, + [1311] = 1008, + [1312] = 562, + [1313] = 549, + [1314] = 1007, + [1315] = 566, + [1316] = 964, + [1317] = 995, + [1318] = 549, + [1319] = 562, + [1320] = 960, + [1321] = 555, + [1322] = 962, + [1323] = 1004, + [1324] = 973, + [1325] = 871, + [1326] = 850, + [1327] = 845, + [1328] = 854, + [1329] = 971, + [1330] = 856, + [1331] = 855, + [1332] = 972, + [1333] = 557, + [1334] = 863, + [1335] = 935, + [1336] = 852, + [1337] = 936, + [1338] = 942, + [1339] = 955, + [1340] = 959, + [1341] = 992, + [1342] = 973, + [1343] = 993, + [1344] = 1001, + [1345] = 966, + [1346] = 969, + [1347] = 970, + [1348] = 960, + [1349] = 1002, + [1350] = 962, + [1351] = 964, + [1352] = 867, + [1353] = 961, + [1354] = 971, + [1355] = 972, + [1356] = 564, + [1357] = 554, + [1358] = 1014, + [1359] = 1011, + [1360] = 548, + [1361] = 983, + [1362] = 963, + [1363] = 851, + [1364] = 547, + [1365] = 1007, + [1366] = 571, + [1367] = 569, + [1368] = 972, [1369] = 552, - [1370] = 551, - [1371] = 993, - [1372] = 1001, - [1373] = 557, - [1374] = 561, - [1375] = 994, - [1376] = 1000, - [1377] = 999, - [1378] = 997, - [1379] = 971, - [1380] = 944, - [1381] = 553, - [1382] = 998, - [1383] = 563, + [1370] = 973, + [1371] = 1005, + [1372] = 873, + [1373] = 904, + [1374] = 1008, + [1375] = 848, + [1376] = 971, + [1377] = 557, + [1378] = 573, + [1379] = 555, + [1380] = 566, + [1381] = 1004, + [1382] = 995, + [1383] = 562, [1384] = 564, - [1385] = 557, - [1386] = 553, - [1387] = 565, - [1388] = 563, - [1389] = 563, - [1390] = 563, - [1391] = 549, - [1392] = 558, - [1393] = 548, - [1394] = 550, - [1395] = 569, - [1396] = 568, - [1397] = 1301, - [1398] = 1299, - [1399] = 552, - [1400] = 567, - [1401] = 551, + [1385] = 564, + [1386] = 559, + [1387] = 551, + [1388] = 571, + [1389] = 547, + [1390] = 573, + [1391] = 569, + [1392] = 548, + [1393] = 555, + [1394] = 564, + [1395] = 554, + [1396] = 552, + [1397] = 564, + [1398] = 549, + [1399] = 1250, + [1400] = 1254, + [1401] = 566, [1402] = 1402, [1403] = 1403, - [1404] = 1299, - [1405] = 1403, - [1406] = 564, - [1407] = 550, - [1408] = 1301, - [1409] = 1402, - [1410] = 568, - [1411] = 569, + [1404] = 1250, + [1405] = 551, + [1406] = 1254, + [1407] = 559, + [1408] = 562, + [1409] = 549, + [1410] = 1403, + [1411] = 1402, [1412] = 1402, - [1413] = 1402, + [1413] = 1403, [1414] = 1403, - [1415] = 1403, - [1416] = 1402, - [1417] = 1403, + [1415] = 1402, + [1416] = 1403, + [1417] = 1402, [1418] = 1402, [1419] = 1403, - [1420] = 558, - [1421] = 1402, - [1422] = 1422, - [1423] = 1403, + [1420] = 566, + [1421] = 573, + [1422] = 1402, + [1423] = 1423, [1424] = 1424, [1425] = 1403, - [1426] = 563, - [1427] = 1403, - [1428] = 1402, - [1429] = 1429, - [1430] = 553, - [1431] = 1431, - [1432] = 1432, - [1433] = 1402, - [1434] = 558, - [1435] = 564, - [1436] = 880, - [1437] = 881, - [1438] = 882, - [1439] = 845, - [1440] = 869, - [1441] = 1441, - [1442] = 861, - [1443] = 1441, - [1444] = 1441, - [1445] = 568, - [1446] = 1441, - [1447] = 569, - [1448] = 1299, - [1449] = 1449, - [1450] = 1301, - [1451] = 1441, - [1452] = 1441, - [1453] = 1453, - [1454] = 1454, - [1455] = 564, - [1456] = 550, - [1457] = 568, - [1458] = 569, - [1459] = 1441, - [1460] = 550, - [1461] = 1301, - [1462] = 1299, - [1463] = 855, - [1464] = 1464, - [1465] = 1465, - [1466] = 550, - [1467] = 1441, - [1468] = 1441, - [1469] = 563, - [1470] = 1422, - [1471] = 564, - [1472] = 569, - [1473] = 1441, - [1474] = 568, - [1475] = 852, - [1476] = 849, - [1477] = 1431, - [1478] = 1424, - [1479] = 553, - [1480] = 1299, - [1481] = 1301, - [1482] = 1464, + [1426] = 1426, + [1427] = 564, + [1428] = 1403, + [1429] = 1403, + [1430] = 1430, + [1431] = 1402, + [1432] = 1402, + [1433] = 1433, + [1434] = 1434, + [1435] = 1435, + [1436] = 1250, + [1437] = 559, + [1438] = 1254, + [1439] = 1435, + [1440] = 848, + [1441] = 850, + [1442] = 1250, + [1443] = 551, + [1444] = 845, + [1445] = 854, + [1446] = 855, + [1447] = 856, + [1448] = 852, + [1449] = 1254, + [1450] = 1435, + [1451] = 1435, + [1452] = 873, + [1453] = 871, + [1454] = 1435, + [1455] = 1455, + [1456] = 564, + [1457] = 1457, + [1458] = 549, + [1459] = 551, + [1460] = 1435, + [1461] = 549, + [1462] = 1462, + [1463] = 1433, + [1464] = 562, + [1465] = 1424, + [1466] = 1435, + [1467] = 1467, + [1468] = 1423, + [1469] = 559, + [1470] = 562, + [1471] = 559, + [1472] = 1254, + [1473] = 573, + [1474] = 1435, + [1475] = 551, + [1476] = 1250, + [1477] = 1435, + [1478] = 566, + [1479] = 1479, + [1480] = 549, + [1481] = 562, + [1482] = 1435, [1483] = 1483, [1484] = 1484, - [1485] = 1484, - [1486] = 1486, - [1487] = 1453, - [1488] = 1488, - [1489] = 1432, - [1490] = 1484, - [1491] = 1454, - [1492] = 1484, - [1493] = 1484, + [1485] = 1483, + [1486] = 1430, + [1487] = 1487, + [1488] = 1457, + [1489] = 1483, + [1490] = 1490, + [1491] = 1483, + [1492] = 1434, + [1493] = 1455, [1494] = 1494, - [1495] = 1494, - [1496] = 1484, - [1497] = 1488, - [1498] = 1498, - [1499] = 1484, - [1500] = 1429, - [1501] = 1484, - [1502] = 1484, - [1503] = 1488, - [1504] = 1465, - [1505] = 1484, - [1506] = 1403, - [1507] = 1507, + [1495] = 1484, + [1496] = 1483, + [1497] = 1483, + [1498] = 1483, + [1499] = 1426, + [1500] = 1484, + [1501] = 1483, + [1502] = 1483, + [1503] = 1467, + [1504] = 1490, + [1505] = 1483, + [1506] = 1506, + [1507] = 1403, [1508] = 1402, [1509] = 1509, - [1510] = 1509, + [1510] = 1510, [1511] = 1511, [1512] = 1512, [1513] = 1513, - [1514] = 1514, - [1515] = 1513, + [1514] = 1511, + [1515] = 1509, [1516] = 1516, - [1517] = 1516, + [1517] = 1517, [1518] = 1518, [1519] = 1519, - [1520] = 1520, + [1520] = 1516, [1521] = 1521, [1522] = 1522, [1523] = 1523, @@ -4373,827 +4387,827 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1525] = 1525, [1526] = 1526, [1527] = 1527, - [1528] = 1527, - [1529] = 1529, - [1530] = 1530, - [1531] = 1527, - [1532] = 1527, - [1533] = 1527, - [1534] = 1527, - [1535] = 1527, - [1536] = 1536, - [1537] = 1527, + [1528] = 1528, + [1529] = 1528, + [1530] = 1528, + [1531] = 1531, + [1532] = 1532, + [1533] = 1528, + [1534] = 1528, + [1535] = 1528, + [1536] = 1528, + [1537] = 1528, [1538] = 1538, [1539] = 1539, - [1540] = 1540, + [1540] = 1539, [1541] = 1541, - [1542] = 1542, + [1542] = 1541, [1543] = 1543, - [1544] = 1544, + [1544] = 1541, [1545] = 1545, - [1546] = 1546, - [1547] = 1544, - [1548] = 1538, + [1546] = 1538, + [1547] = 1539, + [1548] = 1541, [1549] = 1549, [1550] = 1550, [1551] = 1551, - [1552] = 1544, - [1553] = 1545, - [1554] = 1538, + [1552] = 1552, + [1553] = 1553, + [1554] = 1539, [1555] = 1555, - [1556] = 1538, - [1557] = 1544, + [1556] = 1556, + [1557] = 1539, [1558] = 1558, - [1559] = 1544, - [1560] = 1538, - [1561] = 1561, - [1562] = 1544, - [1563] = 1563, + [1559] = 1538, + [1560] = 1560, + [1561] = 1541, + [1562] = 1562, + [1563] = 1538, [1564] = 1538, - [1565] = 1538, - [1566] = 1566, - [1567] = 1544, - [1568] = 1545, - [1569] = 1544, - [1570] = 1570, - [1571] = 1545, - [1572] = 1538, - [1573] = 1545, - [1574] = 1574, - [1575] = 1545, - [1576] = 1545, - [1577] = 1545, + [1565] = 1565, + [1566] = 1539, + [1567] = 1541, + [1568] = 1538, + [1569] = 1569, + [1570] = 1538, + [1571] = 1541, + [1572] = 1572, + [1573] = 1573, + [1574] = 1539, + [1575] = 1541, + [1576] = 1539, + [1577] = 1538, [1578] = 1578, [1579] = 1579, [1580] = 1580, - [1581] = 1551, + [1581] = 1581, [1582] = 1582, - [1583] = 1582, - [1584] = 1582, + [1583] = 1558, + [1584] = 1584, [1585] = 1585, - [1586] = 1578, - [1587] = 1558, - [1588] = 1582, - [1589] = 1582, - [1590] = 1590, - [1591] = 1582, - [1592] = 1585, - [1593] = 1526, + [1586] = 1560, + [1587] = 1587, + [1588] = 1588, + [1589] = 1584, + [1590] = 1585, + [1591] = 1585, + [1592] = 1584, + [1593] = 1588, [1594] = 1594, - [1595] = 1585, - [1596] = 1585, - [1597] = 1582, + [1595] = 1584, + [1596] = 1596, + [1597] = 1585, [1598] = 1598, - [1599] = 1585, - [1600] = 1585, - [1601] = 1529, + [1599] = 1599, + [1600] = 1582, + [1601] = 1601, [1602] = 1602, - [1603] = 1603, - [1604] = 1582, - [1605] = 1585, - [1606] = 1574, - [1607] = 1530, - [1608] = 1546, - [1609] = 1585, - [1610] = 1543, - [1611] = 1529, - [1612] = 1582, - [1613] = 1526, - [1614] = 1561, - [1615] = 1530, + [1603] = 1526, + [1604] = 1604, + [1605] = 1532, + [1606] = 1565, + [1607] = 1585, + [1608] = 1594, + [1609] = 1584, + [1610] = 1596, + [1611] = 1531, + [1612] = 1569, + [1613] = 1556, + [1614] = 1584, + [1615] = 1532, [1616] = 1585, - [1617] = 1617, - [1618] = 1618, - [1619] = 1546, - [1620] = 1530, - [1621] = 1543, - [1622] = 1561, - [1623] = 1546, - [1624] = 1529, - [1625] = 1551, - [1626] = 1561, - [1627] = 1558, - [1628] = 1558, - [1629] = 1629, - [1630] = 1574, - [1631] = 1530, - [1632] = 1546, - [1633] = 1543, - [1634] = 1561, - [1635] = 1526, - [1636] = 1636, - [1637] = 1529, - [1638] = 1530, - [1639] = 1561, - [1640] = 1543, - [1641] = 1574, - [1642] = 1546, - [1643] = 1574, - [1644] = 1558, + [1617] = 1584, + [1618] = 1585, + [1619] = 1584, + [1620] = 1581, + [1621] = 1621, + [1622] = 1550, + [1623] = 1585, + [1624] = 1624, + [1625] = 1625, + [1626] = 1584, + [1627] = 1526, + [1628] = 1531, + [1629] = 1601, + [1630] = 1585, + [1631] = 1587, + [1632] = 1531, + [1633] = 1531, + [1634] = 1556, + [1635] = 1550, + [1636] = 1569, + [1637] = 1565, + [1638] = 1558, + [1639] = 1581, + [1640] = 1560, + [1641] = 1560, + [1642] = 1526, + [1643] = 1565, + [1644] = 1531, [1645] = 1645, - [1646] = 1551, - [1647] = 1647, - [1648] = 1551, - [1649] = 1558, - [1650] = 1551, - [1651] = 1543, - [1652] = 1526, - [1653] = 1526, - [1654] = 1578, - [1655] = 1529, - [1656] = 1578, - [1657] = 1574, - [1658] = 1658, - [1659] = 1659, - [1660] = 1561, - [1661] = 1661, - [1662] = 1662, - [1663] = 1543, - [1664] = 1546, + [1646] = 1569, + [1647] = 1532, + [1648] = 1648, + [1649] = 1556, + [1650] = 1558, + [1651] = 1550, + [1652] = 1532, + [1653] = 1560, + [1654] = 1526, + [1655] = 1550, + [1656] = 1656, + [1657] = 1526, + [1658] = 1532, + [1659] = 1565, + [1660] = 1560, + [1661] = 1565, + [1662] = 1556, + [1663] = 1558, + [1664] = 1569, [1665] = 1665, - [1666] = 1658, - [1667] = 1574, - [1668] = 1558, - [1669] = 1551, - [1670] = 1670, + [1666] = 1581, + [1667] = 1556, + [1668] = 1550, + [1669] = 1569, + [1670] = 1558, [1671] = 1671, - [1672] = 1672, - [1673] = 1603, - [1674] = 1674, - [1675] = 1658, - [1676] = 1525, - [1677] = 1523, - [1678] = 1658, + [1672] = 1532, + [1673] = 1560, + [1674] = 1558, + [1675] = 1675, + [1676] = 1676, + [1677] = 1676, + [1678] = 1676, [1679] = 1679, [1680] = 1680, - [1681] = 1658, - [1682] = 1671, + [1681] = 1681, + [1682] = 1682, [1683] = 1680, - [1684] = 1679, - [1685] = 1529, - [1686] = 1526, - [1687] = 1679, + [1684] = 1604, + [1685] = 1526, + [1686] = 1676, + [1687] = 1676, [1688] = 1688, - [1689] = 1689, - [1690] = 1658, - [1691] = 1561, + [1689] = 1522, + [1690] = 1690, + [1691] = 1523, [1692] = 1692, - [1693] = 1543, - [1694] = 1546, - [1695] = 1530, - [1696] = 1574, - [1697] = 1697, - [1698] = 1647, - [1699] = 1551, + [1693] = 1569, + [1694] = 1694, + [1695] = 1692, + [1696] = 1676, + [1697] = 1680, + [1698] = 1698, + [1699] = 1692, [1700] = 1700, [1701] = 1701, - [1702] = 1662, - [1703] = 1661, - [1704] = 1658, - [1705] = 1705, + [1702] = 1526, + [1703] = 1676, + [1704] = 1565, + [1705] = 1688, [1706] = 1706, - [1707] = 1672, - [1708] = 1708, - [1709] = 1558, - [1710] = 1710, + [1707] = 1523, + [1708] = 1676, + [1709] = 1550, + [1710] = 1558, [1711] = 1711, - [1712] = 1708, - [1713] = 1713, - [1714] = 1714, - [1715] = 1523, - [1716] = 1558, - [1717] = 1658, - [1718] = 1718, - [1719] = 1713, - [1720] = 1574, - [1721] = 1530, - [1722] = 1546, - [1723] = 1543, - [1724] = 1561, - [1725] = 1711, - [1726] = 1658, - [1727] = 1551, - [1728] = 1525, - [1729] = 1692, - [1730] = 1692, - [1731] = 1658, - [1732] = 1526, - [1733] = 1659, + [1712] = 1556, + [1713] = 1569, + [1714] = 1531, + [1715] = 1565, + [1716] = 1560, + [1717] = 1522, + [1718] = 1682, + [1719] = 1676, + [1720] = 1720, + [1721] = 1556, + [1722] = 1550, + [1723] = 1675, + [1724] = 1688, + [1725] = 1560, + [1726] = 1565, + [1727] = 1531, + [1728] = 1569, + [1729] = 1556, + [1730] = 1550, + [1731] = 1731, + [1732] = 1732, + [1733] = 1733, [1734] = 1734, - [1735] = 1735, - [1736] = 1529, - [1737] = 1680, - [1738] = 1738, + [1735] = 1532, + [1736] = 1665, + [1737] = 1676, + [1738] = 1558, [1739] = 1739, - [1740] = 1525, - [1741] = 1511, + [1740] = 1740, + [1741] = 1741, [1742] = 1742, - [1743] = 1523, + [1743] = 1743, [1744] = 1744, - [1745] = 1745, - [1746] = 1738, - [1747] = 1603, - [1748] = 1748, - [1749] = 1749, + [1745] = 1604, + [1746] = 1706, + [1747] = 1747, + [1748] = 1747, + [1749] = 1740, [1750] = 1750, - [1751] = 1751, - [1752] = 1752, - [1753] = 1744, - [1754] = 1738, - [1755] = 1742, - [1756] = 1756, - [1757] = 1738, - [1758] = 1751, - [1759] = 1759, - [1760] = 1688, - [1761] = 1738, - [1762] = 1751, - [1763] = 1763, - [1764] = 1764, - [1765] = 1738, - [1766] = 1766, - [1767] = 1748, - [1768] = 1748, - [1769] = 1744, - [1770] = 1742, - [1771] = 1771, - [1772] = 1738, - [1773] = 1738, - [1774] = 1603, - [1775] = 1647, - [1776] = 1776, - [1777] = 1647, + [1751] = 1742, + [1752] = 1522, + [1753] = 1513, + [1754] = 1742, + [1755] = 1755, + [1756] = 1747, + [1757] = 1742, + [1758] = 1758, + [1759] = 1743, + [1760] = 1741, + [1761] = 1761, + [1762] = 1762, + [1763] = 1742, + [1764] = 1742, + [1765] = 1665, + [1766] = 1742, + [1767] = 1767, + [1768] = 1768, + [1769] = 1769, + [1770] = 1770, + [1771] = 1604, + [1772] = 1742, + [1773] = 1740, + [1774] = 1523, + [1775] = 1741, + [1776] = 1743, + [1777] = 1777, [1778] = 1778, [1779] = 1779, [1780] = 1780, [1781] = 1781, - [1782] = 1782, + [1782] = 1665, [1783] = 1783, [1784] = 1784, [1785] = 1785, - [1786] = 1776, + [1786] = 1786, [1787] = 1787, [1788] = 1788, - [1789] = 1647, - [1790] = 1780, - [1791] = 1787, + [1789] = 1780, + [1790] = 1790, + [1791] = 1791, [1792] = 1792, [1793] = 1793, [1794] = 1794, [1795] = 1795, - [1796] = 1636, + [1796] = 1796, [1797] = 1797, [1798] = 1798, [1799] = 1799, - [1800] = 1800, + [1800] = 1798, [1801] = 1801, [1802] = 1802, - [1803] = 1803, - [1804] = 1429, - [1805] = 1805, + [1803] = 1665, + [1804] = 1804, + [1805] = 1778, [1806] = 1806, [1807] = 1807, [1808] = 1808, - [1809] = 1799, + [1809] = 1809, [1810] = 1810, [1811] = 1811, - [1812] = 1812, + [1812] = 1794, [1813] = 1813, - [1814] = 1734, + [1814] = 1783, [1815] = 1815, [1816] = 1816, - [1817] = 1810, - [1818] = 1795, - [1819] = 1636, - [1820] = 1794, + [1817] = 1817, + [1818] = 1523, + [1819] = 1819, + [1820] = 1797, [1821] = 1821, [1822] = 1822, - [1823] = 1823, - [1824] = 1806, - [1825] = 1778, + [1823] = 1788, + [1824] = 1824, + [1825] = 1825, [1826] = 1826, - [1827] = 1647, - [1828] = 1811, - [1829] = 1829, - [1830] = 1518, + [1827] = 1817, + [1828] = 1828, + [1829] = 1648, + [1830] = 1711, [1831] = 1831, [1832] = 1832, - [1833] = 1833, - [1834] = 1783, - [1835] = 1782, - [1836] = 1781, - [1837] = 1807, + [1833] = 1832, + [1834] = 1831, + [1835] = 1835, + [1836] = 1648, + [1837] = 1430, [1838] = 1838, - [1839] = 1839, - [1840] = 1778, - [1841] = 1779, - [1842] = 1808, - [1843] = 1816, - [1844] = 1810, - [1845] = 1636, - [1846] = 1787, + [1839] = 1797, + [1840] = 1840, + [1841] = 1841, + [1842] = 1842, + [1843] = 1648, + [1844] = 1844, + [1845] = 1517, + [1846] = 1831, [1847] = 1847, - [1848] = 1800, - [1849] = 1849, - [1850] = 1839, - [1851] = 1833, - [1852] = 1432, - [1853] = 1807, - [1854] = 1854, - [1855] = 1855, - [1856] = 1780, - [1857] = 1780, - [1858] = 1808, - [1859] = 1839, - [1860] = 1860, - [1861] = 1512, - [1862] = 1862, - [1863] = 1816, - [1864] = 1864, - [1865] = 1865, - [1866] = 1688, - [1867] = 1867, + [1848] = 1426, + [1849] = 1706, + [1850] = 1809, + [1851] = 1808, + [1852] = 1778, + [1853] = 1811, + [1854] = 1665, + [1855] = 1811, + [1856] = 1793, + [1857] = 1857, + [1858] = 1826, + [1859] = 1859, + [1860] = 1781, + [1861] = 1788, + [1862] = 1786, + [1863] = 1804, + [1864] = 1785, + [1865] = 1832, + [1866] = 1784, + [1867] = 1780, [1868] = 1868, - [1869] = 1869, - [1870] = 1870, - [1871] = 1871, - [1872] = 1525, + [1869] = 1783, + [1870] = 1797, + [1871] = 1522, + [1872] = 1872, [1873] = 1873, - [1874] = 1524, - [1875] = 1875, - [1876] = 1876, - [1877] = 1869, - [1878] = 1878, + [1874] = 1510, + [1875] = 1556, + [1876] = 1706, + [1877] = 1525, + [1878] = 1790, [1879] = 1879, [1880] = 1880, - [1881] = 1881, - [1882] = 1465, - [1883] = 1812, - [1884] = 1878, - [1885] = 1794, - [1886] = 1800, - [1887] = 1795, - [1888] = 1876, - [1889] = 1876, - [1890] = 1878, - [1891] = 1891, - [1892] = 1833, - [1893] = 1800, + [1881] = 1522, + [1882] = 1882, + [1883] = 1883, + [1884] = 1883, + [1885] = 1885, + [1886] = 1886, + [1887] = 1887, + [1888] = 1888, + [1889] = 1838, + [1890] = 1890, + [1891] = 1883, + [1892] = 1892, + [1893] = 1825, [1894] = 1894, - [1895] = 1895, - [1896] = 1895, - [1897] = 1880, - [1898] = 1793, - [1899] = 1869, - [1900] = 1895, - [1901] = 1895, - [1902] = 1523, - [1903] = 1551, - [1904] = 1688, - [1905] = 1805, - [1906] = 1781, - [1907] = 1454, - [1908] = 1799, + [1895] = 1883, + [1896] = 1896, + [1897] = 1810, + [1898] = 1898, + [1899] = 1847, + [1900] = 1892, + [1901] = 1883, + [1902] = 1902, + [1903] = 1898, + [1904] = 1455, + [1905] = 1894, + [1906] = 1906, + [1907] = 1907, + [1908] = 1804, [1909] = 1909, - [1910] = 1910, - [1911] = 1911, + [1910] = 1784, + [1911] = 1785, [1912] = 1912, - [1913] = 1895, - [1914] = 1880, - [1915] = 1915, - [1916] = 1792, - [1917] = 1917, - [1918] = 1918, - [1919] = 1895, - [1920] = 1895, - [1921] = 1781, - [1922] = 1880, - [1923] = 1558, - [1924] = 1924, - [1925] = 1799, - [1926] = 1833, - [1927] = 1782, + [1913] = 1913, + [1914] = 1809, + [1915] = 1808, + [1916] = 1786, + [1917] = 1872, + [1918] = 1467, + [1919] = 1919, + [1920] = 1558, + [1921] = 1523, + [1922] = 1922, + [1923] = 1923, + [1924] = 1817, + [1925] = 1925, + [1926] = 1912, + [1927] = 1883, [1928] = 1928, - [1929] = 1929, - [1930] = 1930, - [1931] = 1803, - [1932] = 1854, - [1933] = 1933, - [1934] = 1783, - [1935] = 1453, - [1936] = 1561, + [1929] = 1894, + [1930] = 1817, + [1931] = 1883, + [1932] = 1457, + [1933] = 1809, + [1934] = 1912, + [1935] = 1560, + [1936] = 1808, [1937] = 1937, - [1938] = 1795, - [1939] = 1794, - [1940] = 1940, - [1941] = 1782, - [1942] = 1464, - [1943] = 1895, - [1944] = 1543, - [1945] = 1546, - [1946] = 1917, + [1938] = 1434, + [1939] = 1550, + [1940] = 1898, + [1941] = 1941, + [1942] = 1569, + [1943] = 1565, + [1944] = 1883, + [1945] = 1882, + [1946] = 1946, [1947] = 1947, - [1948] = 1948, - [1949] = 1870, - [1950] = 1783, - [1951] = 1951, - [1952] = 1574, - [1953] = 1953, - [1954] = 1895, - [1955] = 1895, - [1956] = 1956, + [1948] = 1804, + [1949] = 1798, + [1950] = 1880, + [1951] = 1883, + [1952] = 1952, + [1953] = 1912, + [1954] = 1892, + [1955] = 1883, + [1956] = 1784, [1957] = 1957, - [1958] = 1958, - [1959] = 1959, - [1960] = 1960, - [1961] = 1961, - [1962] = 1854, + [1958] = 1785, + [1959] = 1786, + [1960] = 1798, + [1961] = 1907, + [1962] = 1522, [1963] = 1963, [1964] = 1964, [1965] = 1965, - [1966] = 1966, - [1967] = 1940, - [1968] = 1968, + [1966] = 1879, + [1967] = 1523, + [1968] = 1847, [1969] = 1969, - [1970] = 1970, + [1970] = 1527, [1971] = 1971, [1972] = 1972, - [1973] = 1973, + [1973] = 1882, [1974] = 1974, - [1975] = 1975, - [1976] = 1970, - [1977] = 1928, - [1978] = 1948, + [1975] = 1521, + [1976] = 1976, + [1977] = 1977, + [1978] = 1978, [1979] = 1979, [1980] = 1980, - [1981] = 1981, + [1981] = 1838, [1982] = 1982, - [1983] = 1803, + [1983] = 1983, [1984] = 1984, [1985] = 1985, [1986] = 1986, - [1987] = 1960, - [1988] = 1536, - [1989] = 1989, + [1987] = 1987, + [1988] = 1988, + [1989] = 1987, [1990] = 1990, [1991] = 1991, [1992] = 1992, - [1993] = 1930, - [1994] = 1525, - [1995] = 1937, + [1993] = 1993, + [1994] = 1994, + [1995] = 1995, [1996] = 1996, [1997] = 1997, - [1998] = 1867, - [1999] = 1999, - [2000] = 2000, - [2001] = 1523, - [2002] = 1520, - [2003] = 1870, + [1998] = 1998, + [1999] = 1941, + [2000] = 1885, + [2001] = 1980, + [2002] = 1957, + [2003] = 2003, [2004] = 1519, [2005] = 2005, - [2006] = 2006, + [2006] = 1913, [2007] = 2007, [2008] = 2008, - [2009] = 1854, + [2009] = 2009, [2010] = 2010, [2011] = 2011, [2012] = 2012, - [2013] = 1803, - [2014] = 2014, - [2015] = 2015, + [2013] = 1838, + [2014] = 580, + [2015] = 590, [2016] = 2016, - [2017] = 2017, - [2018] = 580, - [2019] = 2019, - [2020] = 2020, + [2017] = 1426, + [2018] = 2018, + [2019] = 2009, + [2020] = 1872, [2021] = 2021, - [2022] = 1429, + [2022] = 2022, [2023] = 2023, [2024] = 2024, [2025] = 2025, - [2026] = 578, + [2026] = 1430, [2027] = 2027, [2028] = 2028, [2029] = 2029, [2030] = 2030, - [2031] = 2017, - [2032] = 2032, - [2033] = 1432, + [2031] = 2031, + [2032] = 2030, + [2033] = 2033, [2034] = 2034, - [2035] = 2029, - [2036] = 2007, - [2037] = 1432, + [2035] = 2034, + [2036] = 2036, + [2037] = 2037, [2038] = 2038, - [2039] = 2020, - [2040] = 2040, - [2041] = 2023, - [2042] = 2038, - [2043] = 2024, - [2044] = 2025, - [2045] = 2045, - [2046] = 2005, + [2039] = 2039, + [2040] = 2036, + [2041] = 2041, + [2042] = 2037, + [2043] = 2039, + [2044] = 2044, + [2045] = 2029, + [2046] = 583, [2047] = 2047, - [2048] = 2028, - [2049] = 2049, - [2050] = 589, - [2051] = 2051, - [2052] = 2052, + [2048] = 2048, + [2049] = 1523, + [2050] = 2009, + [2051] = 2018, + [2052] = 1522, [2053] = 2029, - [2054] = 2054, - [2055] = 2007, - [2056] = 2016, - [2057] = 2010, - [2058] = 2054, + [2054] = 585, + [2055] = 2055, + [2056] = 2009, + [2057] = 2018, + [2058] = 1847, [2059] = 2038, - [2060] = 2040, - [2061] = 2012, - [2062] = 2040, - [2063] = 579, + [2060] = 2018, + [2061] = 1457, + [2062] = 588, + [2063] = 2038, [2064] = 2064, - [2065] = 2038, - [2066] = 2014, + [2065] = 2016, + [2066] = 2009, [2067] = 2067, - [2068] = 2025, - [2069] = 1854, - [2070] = 2007, - [2071] = 2029, - [2072] = 577, - [2073] = 2005, - [2074] = 2024, - [2075] = 2075, - [2076] = 2010, - [2077] = 2077, - [2078] = 2012, - [2079] = 2012, - [2080] = 2040, - [2081] = 2010, - [2082] = 2023, - [2083] = 2010, + [2068] = 2021, + [2069] = 2011, + [2070] = 2070, + [2071] = 2071, + [2072] = 2016, + [2073] = 2073, + [2074] = 2029, + [2075] = 2064, + [2076] = 2038, + [2077] = 2039, + [2078] = 2037, + [2079] = 2079, + [2080] = 2080, + [2081] = 2081, + [2082] = 2025, + [2083] = 2022, [2084] = 2084, - [2085] = 2085, + [2085] = 2036, [2086] = 2086, - [2087] = 2024, - [2088] = 2005, - [2089] = 2089, - [2090] = 2012, - [2091] = 2052, - [2092] = 2051, - [2093] = 2020, - [2094] = 2000, - [2095] = 1803, - [2096] = 2096, - [2097] = 2025, - [2098] = 2040, - [2099] = 1525, + [2087] = 2022, + [2088] = 1838, + [2089] = 2034, + [2090] = 2025, + [2091] = 2091, + [2092] = 1426, + [2093] = 1847, + [2094] = 2094, + [2095] = 2084, + [2096] = 2079, + [2097] = 2030, + [2098] = 1842, + [2099] = 2099, [2100] = 2100, - [2101] = 2077, - [2102] = 2040, - [2103] = 2075, - [2104] = 2104, - [2105] = 2038, - [2106] = 2007, - [2107] = 2107, - [2108] = 2029, - [2109] = 2030, + [2101] = 2016, + [2102] = 1426, + [2103] = 1838, + [2104] = 2080, + [2105] = 1572, + [2106] = 2038, + [2107] = 2081, + [2108] = 2047, + [2109] = 2018, [2110] = 2110, - [2111] = 2017, - [2112] = 2112, - [2113] = 2107, - [2114] = 2006, - [2115] = 2005, - [2116] = 2024, - [2117] = 2085, - [2118] = 2023, - [2119] = 2119, - [2120] = 2020, - [2121] = 1523, - [2122] = 2017, - [2123] = 2017, - [2124] = 2016, - [2125] = 2028, - [2126] = 862, - [2127] = 2049, - [2128] = 2017, - [2129] = 1522, - [2130] = 2024, - [2131] = 1540, - [2132] = 2132, - [2133] = 2077, - [2134] = 2005, - [2135] = 2015, - [2136] = 2014, - [2137] = 2020, - [2138] = 2104, - [2139] = 2110, - [2140] = 2023, - [2141] = 2141, - [2142] = 2024, - [2143] = 2143, - [2144] = 2029, - [2145] = 1566, - [2146] = 2005, - [2147] = 1563, - [2148] = 2148, - [2149] = 1971, + [2111] = 1573, + [2112] = 2029, + [2113] = 2048, + [2114] = 1844, + [2115] = 2115, + [2116] = 2115, + [2117] = 2064, + [2118] = 2118, + [2119] = 2039, + [2120] = 2037, + [2121] = 2022, + [2122] = 2036, + [2123] = 2123, + [2124] = 2034, + [2125] = 2081, + [2126] = 2030, + [2127] = 2030, + [2128] = 2118, + [2129] = 2129, + [2130] = 2034, + [2131] = 2094, + [2132] = 2025, + [2133] = 2080, + [2134] = 2025, + [2135] = 2022, + [2136] = 1969, + [2137] = 2037, + [2138] = 2039, + [2139] = 1813, + [2140] = 2021, + [2141] = 2038, + [2142] = 2142, + [2143] = 1847, + [2144] = 2028, + [2145] = 2010, + [2146] = 2146, + [2147] = 2036, + [2148] = 2129, + [2149] = 2099, [2150] = 2150, - [2151] = 2017, - [2152] = 2040, + [2151] = 2005, + [2152] = 2152, [2153] = 2153, - [2154] = 2096, - [2155] = 2155, - [2156] = 2156, - [2157] = 2150, - [2158] = 2029, - [2159] = 2159, - [2160] = 1541, - [2161] = 2012, - [2162] = 1980, - [2163] = 1542, - [2164] = 2007, - [2165] = 2038, - [2166] = 2010, - [2167] = 1803, - [2168] = 1821, - [2169] = 2156, - [2170] = 2040, - [2171] = 2017, - [2172] = 1812, - [2173] = 2155, - [2174] = 2025, - [2175] = 2025, - [2176] = 1823, - [2177] = 2025, - [2178] = 2020, - [2179] = 2085, - [2180] = 2023, - [2181] = 1453, - [2182] = 2040, - [2183] = 866, - [2184] = 1822, - [2185] = 2038, - [2186] = 2007, - [2187] = 2187, - [2188] = 2029, - [2189] = 1815, - [2190] = 2024, - [2191] = 2005, - [2192] = 1792, - [2193] = 2020, - [2194] = 2005, - [2195] = 2024, - [2196] = 2196, - [2197] = 2023, - [2198] = 2052, - [2199] = 2020, - [2200] = 1973, - [2201] = 2012, - [2202] = 2017, - [2203] = 2051, - [2204] = 2010, - [2205] = 2187, - [2206] = 2029, - [2207] = 1968, - [2208] = 2007, - [2209] = 1969, - [2210] = 2010, - [2211] = 1432, - [2212] = 2014, - [2213] = 1801, - [2214] = 2096, - [2215] = 2038, - [2216] = 1854, - [2217] = 1793, - [2218] = 2040, - [2219] = 1855, - [2220] = 2220, - [2221] = 2012, - [2222] = 2025, - [2223] = 1865, - [2224] = 2023, - [2225] = 2024, - [2226] = 1864, - [2227] = 2005, - [2228] = 672, - [2229] = 2229, - [2230] = 2230, - [2231] = 1947, - [2232] = 579, + [2154] = 2154, + [2155] = 2037, + [2156] = 2039, + [2157] = 2091, + [2158] = 2030, + [2159] = 2030, + [2160] = 2044, + [2161] = 875, + [2162] = 2162, + [2163] = 2029, + [2164] = 2037, + [2165] = 2025, + [2166] = 2039, + [2167] = 2009, + [2168] = 2029, + [2169] = 1993, + [2170] = 2022, + [2171] = 2171, + [2172] = 2038, + [2173] = 2018, + [2174] = 1995, + [2175] = 1553, + [2176] = 2176, + [2177] = 1790, + [2178] = 2038, + [2179] = 1552, + [2180] = 1840, + [2181] = 2016, + [2182] = 2016, + [2183] = 2030, + [2184] = 1791, + [2185] = 1835, + [2186] = 2038, + [2187] = 2034, + [2188] = 2016, + [2189] = 2018, + [2190] = 2009, + [2191] = 2025, + [2192] = 2029, + [2193] = 2027, + [2194] = 2036, + [2195] = 1792, + [2196] = 2022, + [2197] = 2037, + [2198] = 2039, + [2199] = 2037, + [2200] = 2036, + [2201] = 2036, + [2202] = 1810, + [2203] = 2034, + [2204] = 2039, + [2205] = 2205, + [2206] = 2030, + [2207] = 1796, + [2208] = 2084, + [2209] = 1524, + [2210] = 1555, + [2211] = 2211, + [2212] = 2094, + [2213] = 2029, + [2214] = 2091, + [2215] = 2079, + [2216] = 2021, + [2217] = 2009, + [2218] = 2022, + [2219] = 897, + [2220] = 2018, + [2221] = 2153, + [2222] = 1983, + [2223] = 2038, + [2224] = 2152, + [2225] = 2225, + [2226] = 2025, + [2227] = 2016, + [2228] = 2034, + [2229] = 2039, + [2230] = 1971, + [2231] = 2037, + [2232] = 2232, [2233] = 2233, - [2234] = 1929, - [2235] = 1465, + [2234] = 2234, + [2235] = 590, [2236] = 2236, - [2237] = 1464, - [2238] = 1580, + [2237] = 1937, + [2238] = 1777, [2239] = 2239, - [2240] = 589, + [2240] = 2240, [2241] = 2241, - [2242] = 578, - [2243] = 577, - [2244] = 2241, + [2242] = 2242, + [2243] = 2243, + [2244] = 2244, [2245] = 2245, - [2246] = 2246, + [2246] = 2243, [2247] = 2247, - [2248] = 1930, - [2249] = 2249, + [2248] = 585, + [2249] = 1602, [2250] = 2250, [2251] = 2251, - [2252] = 2027, + [2252] = 2252, [2253] = 2253, [2254] = 2254, - [2255] = 2255, - [2256] = 2256, - [2257] = 1617, - [2258] = 2233, - [2259] = 1947, - [2260] = 677, - [2261] = 1454, - [2262] = 2233, - [2263] = 1590, - [2264] = 2034, + [2255] = 1885, + [2256] = 580, + [2257] = 2236, + [2258] = 2258, + [2259] = 2259, + [2260] = 1455, + [2261] = 2033, + [2262] = 1937, + [2263] = 2211, + [2264] = 2236, [2265] = 2265, - [2266] = 2266, - [2267] = 2256, - [2268] = 580, - [2269] = 2141, - [2270] = 2270, - [2271] = 2271, + [2266] = 647, + [2267] = 2240, + [2268] = 2236, + [2269] = 2269, + [2270] = 2241, + [2271] = 2269, [2272] = 2272, [2273] = 2273, - [2274] = 2245, + [2274] = 2274, [2275] = 2275, - [2276] = 2250, - [2277] = 2251, - [2278] = 2233, + [2276] = 2276, + [2277] = 2277, + [2278] = 2278, [2279] = 2279, - [2280] = 2265, + [2280] = 1580, [2281] = 2281, - [2282] = 2273, - [2283] = 1590, - [2284] = 1454, + [2282] = 2236, + [2283] = 2283, + [2284] = 2284, [2285] = 2285, [2286] = 2286, - [2287] = 2251, - [2288] = 2250, - [2289] = 2245, + [2287] = 2285, + [2288] = 2288, + [2289] = 2289, [2290] = 2290, [2291] = 2291, [2292] = 2292, - [2293] = 2233, - [2294] = 2294, - [2295] = 2295, - [2296] = 2294, + [2293] = 1602, + [2294] = 1455, + [2295] = 1795, + [2296] = 2275, [2297] = 2297, - [2298] = 1953, - [2299] = 1910, - [2300] = 2300, - [2301] = 2301, - [2302] = 2302, - [2303] = 2303, - [2304] = 1464, - [2305] = 2305, - [2306] = 663, + [2298] = 1467, + [2299] = 2284, + [2300] = 2281, + [2301] = 2281, + [2302] = 1434, + [2303] = 1841, + [2304] = 671, + [2305] = 2279, + [2306] = 2275, [2307] = 2307, - [2308] = 2308, - [2309] = 2302, - [2310] = 1453, - [2311] = 2233, - [2312] = 1947, - [2313] = 2313, + [2308] = 1621, + [2309] = 1457, + [2310] = 2279, + [2311] = 2311, + [2312] = 2312, + [2313] = 2236, [2314] = 2314, [2315] = 2315, - [2316] = 2316, - [2317] = 2317, + [2316] = 1434, + [2317] = 2284, [2318] = 2318, - [2319] = 1465, - [2320] = 2320, - [2321] = 2279, + [2319] = 2319, + [2320] = 1937, + [2321] = 2321, [2322] = 2322, - [2323] = 2323, + [2323] = 583, [2324] = 2324, - [2325] = 2300, - [2326] = 2326, + [2325] = 2325, + [2326] = 646, [2327] = 2327, [2328] = 2328, - [2329] = 2329, - [2330] = 2330, + [2329] = 658, + [2330] = 2031, [2331] = 2331, - [2332] = 2233, - [2333] = 2333, - [2334] = 649, + [2332] = 2265, + [2333] = 2236, + [2334] = 2334, [2335] = 2335, - [2336] = 2336, + [2336] = 2236, [2337] = 2337, [2338] = 2338, - [2339] = 1912, - [2340] = 2300, + [2339] = 588, + [2340] = 2340, [2341] = 2341, [2342] = 2342, [2343] = 2343, [2344] = 2344, [2345] = 2345, - [2346] = 2346, - [2347] = 2347, - [2348] = 2348, + [2346] = 2233, + [2347] = 1467, + [2348] = 1799, [2349] = 2349, [2350] = 2350, [2351] = 2351, @@ -5209,224 +5223,230 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2361] = 2361, [2362] = 2362, [2363] = 2363, - [2364] = 2344, + [2364] = 2364, [2365] = 2365, [2366] = 2366, [2367] = 2367, - [2368] = 2367, - [2369] = 2344, - [2370] = 2363, - [2371] = 2360, - [2372] = 2359, - [2373] = 2367, - [2374] = 2374, - [2375] = 2356, - [2376] = 2355, - [2377] = 2353, - [2378] = 2350, - [2379] = 2349, - [2380] = 2347, - [2381] = 2345, - [2382] = 2365, - [2383] = 2361, - [2384] = 2384, - [2385] = 2348, - [2386] = 2386, - [2387] = 2349, - [2388] = 2388, - [2389] = 2367, - [2390] = 2388, - [2391] = 2344, - [2392] = 2363, - [2393] = 2344, - [2394] = 2363, - [2395] = 2360, - [2396] = 2361, - [2397] = 2360, - [2398] = 2345, - [2399] = 2359, - [2400] = 2347, - [2401] = 2359, - [2402] = 2349, - [2403] = 2350, - [2404] = 2356, - [2405] = 2355, - [2406] = 2353, + [2368] = 2368, + [2369] = 2369, + [2370] = 2370, + [2371] = 2371, + [2372] = 2371, + [2373] = 2373, + [2374] = 2371, + [2375] = 2368, + [2376] = 2367, + [2377] = 2364, + [2378] = 2363, + [2379] = 2379, + [2380] = 2360, + [2381] = 2359, + [2382] = 2357, + [2383] = 2354, + [2384] = 2353, + [2385] = 2351, + [2386] = 2369, + [2387] = 2387, + [2388] = 2365, + [2389] = 2389, + [2390] = 2352, + [2391] = 2391, + [2392] = 2392, + [2393] = 2387, + [2394] = 2352, + [2395] = 2371, + [2396] = 2368, + [2397] = 2367, + [2398] = 2391, + [2399] = 2368, + [2400] = 2364, + [2401] = 2367, + [2402] = 2365, + [2403] = 2363, + [2404] = 2369, + [2405] = 2364, + [2406] = 2351, [2407] = 2407, - [2408] = 2355, - [2409] = 2356, - [2410] = 2353, - [2411] = 2350, - [2412] = 2359, - [2413] = 2360, - [2414] = 2349, - [2415] = 2347, - [2416] = 2363, - [2417] = 2344, - [2418] = 2345, - [2419] = 2361, - [2420] = 2348, - [2421] = 2367, - [2422] = 2422, - [2423] = 2423, - [2424] = 577, - [2425] = 2425, + [2408] = 2353, + [2409] = 2354, + [2410] = 2363, + [2411] = 2360, + [2412] = 2357, + [2413] = 2359, + [2414] = 2359, + [2415] = 2360, + [2416] = 2357, + [2417] = 2354, + [2418] = 2363, + [2419] = 2364, + [2420] = 2353, + [2421] = 2351, + [2422] = 2367, + [2423] = 2368, + [2424] = 2369, + [2425] = 2365, [2426] = 2426, - [2427] = 2427, - [2428] = 2428, - [2429] = 2365, - [2430] = 2366, - [2431] = 2367, - [2432] = 2388, - [2433] = 2344, - [2434] = 2363, - [2435] = 2360, - [2436] = 2359, - [2437] = 2356, - [2438] = 2355, - [2439] = 2353, + [2427] = 2371, + [2428] = 2352, + [2429] = 2429, + [2430] = 588, + [2431] = 2431, + [2432] = 2432, + [2433] = 2433, + [2434] = 2434, + [2435] = 2435, + [2436] = 2436, + [2437] = 2387, + [2438] = 2373, + [2439] = 2371, [2440] = 2440, - [2441] = 2350, - [2442] = 2442, - [2443] = 2443, + [2441] = 2441, + [2442] = 2391, + [2443] = 2368, [2444] = 2444, - [2445] = 2445, - [2446] = 2361, + [2445] = 2367, + [2446] = 2446, [2447] = 2447, - [2448] = 2353, - [2449] = 2355, - [2450] = 2356, - [2451] = 2451, - [2452] = 2347, - [2453] = 2345, - [2454] = 2361, - [2455] = 589, - [2456] = 2348, - [2457] = 2427, - [2458] = 2458, - [2459] = 2459, - [2460] = 2356, - [2461] = 2355, - [2462] = 2462, - [2463] = 2463, - [2464] = 2464, - [2465] = 2427, - [2466] = 2365, - [2467] = 2366, - [2468] = 2468, - [2469] = 2361, - [2470] = 2353, - [2471] = 2355, - [2472] = 2356, - [2473] = 2353, - [2474] = 2367, - [2475] = 2388, - [2476] = 2363, - [2477] = 2360, - [2478] = 2359, - [2479] = 2356, + [2448] = 2448, + [2449] = 2449, + [2450] = 2450, + [2451] = 2364, + [2452] = 2365, + [2453] = 2363, + [2454] = 2357, + [2455] = 2359, + [2456] = 2360, + [2457] = 2457, + [2458] = 2360, + [2459] = 2360, + [2460] = 2359, + [2461] = 2357, + [2462] = 2354, + [2463] = 2359, + [2464] = 2353, + [2465] = 2351, + [2466] = 2369, + [2467] = 2467, + [2468] = 583, + [2469] = 2365, + [2470] = 2352, + [2471] = 2434, + [2472] = 2472, + [2473] = 2357, + [2474] = 2474, + [2475] = 2365, + [2476] = 2357, + [2477] = 2359, + [2478] = 2360, + [2479] = 2352, [2480] = 2480, - [2481] = 2355, - [2482] = 2353, - [2483] = 2350, - [2484] = 2350, - [2485] = 2349, - [2486] = 2347, - [2487] = 2349, - [2488] = 2345, - [2489] = 2347, - [2490] = 2345, + [2481] = 2481, + [2482] = 2365, + [2483] = 2483, + [2484] = 2484, + [2485] = 2485, + [2486] = 2486, + [2487] = 2369, + [2488] = 2354, + [2489] = 2353, + [2490] = 2351, [2491] = 2491, - [2492] = 2492, + [2492] = 2369, [2493] = 2493, - [2494] = 2494, - [2495] = 2494, - [2496] = 2492, - [2497] = 2361, - [2498] = 2498, - [2499] = 2499, - [2500] = 2500, - [2501] = 2501, - [2502] = 2502, - [2503] = 2443, - [2504] = 2352, - [2505] = 2348, - [2506] = 2386, - [2507] = 579, - [2508] = 2508, - [2509] = 2451, - [2510] = 2462, - [2511] = 2511, - [2512] = 2512, - [2513] = 2513, + [2494] = 2351, + [2495] = 2495, + [2496] = 2496, + [2497] = 2457, + [2498] = 2353, + [2499] = 2434, + [2500] = 2354, + [2501] = 2387, + [2502] = 2496, + [2503] = 2373, + [2504] = 2504, + [2505] = 2505, + [2506] = 2506, + [2507] = 2507, + [2508] = 2357, + [2509] = 2447, + [2510] = 2356, + [2511] = 2359, + [2512] = 2370, + [2513] = 2371, [2514] = 2514, - [2515] = 2515, - [2516] = 2516, - [2517] = 578, + [2515] = 2491, + [2516] = 2360, + [2517] = 2391, [2518] = 2518, - [2519] = 2518, - [2520] = 2520, - [2521] = 2511, - [2522] = 2462, - [2523] = 2523, + [2519] = 2392, + [2520] = 2368, + [2521] = 2367, + [2522] = 2364, + [2523] = 2363, [2524] = 2524, - [2525] = 2361, + [2525] = 2525, [2526] = 2526, - [2527] = 2463, - [2528] = 2386, - [2529] = 2459, - [2530] = 2427, - [2531] = 2451, - [2532] = 2532, - [2533] = 2384, - [2534] = 2512, - [2535] = 2535, - [2536] = 2365, - [2537] = 2366, - [2538] = 2367, - [2539] = 2388, - [2540] = 2344, - [2541] = 2348, + [2527] = 2360, + [2528] = 2359, + [2529] = 2365, + [2530] = 2357, + [2531] = 2518, + [2532] = 2354, + [2533] = 2353, + [2534] = 2370, + [2535] = 2351, + [2536] = 2536, + [2537] = 2491, + [2538] = 2369, + [2539] = 2539, + [2540] = 2518, + [2541] = 2457, [2542] = 2363, - [2543] = 2543, - [2544] = 2360, - [2545] = 2359, - [2546] = 2356, - [2547] = 2355, - [2548] = 2548, - [2549] = 2353, - [2550] = 2550, - [2551] = 2350, - [2552] = 2349, - [2553] = 580, - [2554] = 2347, - [2555] = 2345, - [2556] = 2494, - [2557] = 2361, + [2543] = 2365, + [2544] = 2544, + [2545] = 2352, + [2546] = 2546, + [2547] = 2547, + [2548] = 585, + [2549] = 2493, + [2550] = 2352, + [2551] = 2367, + [2552] = 2368, + [2553] = 2553, + [2554] = 2554, + [2555] = 2391, + [2556] = 580, + [2557] = 2371, [2558] = 2558, - [2559] = 2512, - [2560] = 2560, - [2561] = 2348, + [2559] = 2373, + [2560] = 2387, + [2561] = 2389, [2562] = 2562, [2563] = 2563, - [2564] = 2564, + [2564] = 590, [2565] = 2565, [2566] = 2566, - [2567] = 2567, - [2568] = 2568, - [2569] = 2535, - [2570] = 2508, - [2571] = 2442, - [2572] = 2572, + [2567] = 2434, + [2568] = 2481, + [2569] = 2569, + [2570] = 2570, + [2571] = 2571, + [2572] = 2485, [2573] = 2573, - [2574] = 2513, - [2575] = 2575, - [2576] = 2576, - [2577] = 2560, - [2578] = 2578, - [2579] = 2502, - [2580] = 2407, - [2581] = 2407, + [2574] = 2364, + [2575] = 2536, + [2576] = 2507, + [2577] = 2446, + [2578] = 2566, + [2579] = 2579, + [2580] = 2580, + [2581] = 2581, + [2582] = 2553, + [2583] = 2565, + [2584] = 2493, + [2585] = 2506, + [2586] = 2407, + [2587] = 2407, }; static inline bool sym_python_identifier_character_set_1(int32_t c) { @@ -11686,2193 +11706,2301 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(195); - if (!eof && lookahead == 0) ADVANCE(202); - if (lookahead == '!') ADVANCE(251); - if (lookahead == '"') ADVANCE(247); - if (lookahead == '#') ADVANCE(969); - if (lookahead == '$') ADVANCE(492); - if (lookahead == '%') ADVANCE(598); - if (lookahead == '&') ADVANCE(606); - if (lookahead == '\'') ADVANCE(493); - if (lookahead == '(') ADVANCE(478); - if (lookahead == ')') ADVANCE(479); - if (lookahead == '*') ADVANCE(526); - if (lookahead == '+') ADVANCE(587); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(588); - if (lookahead == '.') ADVANCE(513); - if (lookahead == '/') ADVANCE(595); - if (lookahead == '0') ADVANCE(665); - if (lookahead == ':') ADVANCE(229); - if (lookahead == ';') ADVANCE(508); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '=') ADVANCE(206); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(252); - if (lookahead == '@') ADVANCE(593); - if (lookahead == 'E') ADVANCE(281); - if (lookahead == 'F') ADVANCE(293); - if (lookahead == 'I') ADVANCE(264); - if (lookahead == 'N') ADVANCE(394); - if (lookahead == 'O') ADVANCE(280); - if (lookahead == 'T') ADVANCE(409); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(642); - if (lookahead == ']') ADVANCE(227); - if (lookahead == '^') ADVANCE(608); - if (lookahead == '_') ADVANCE(282); - if (lookahead == 'a') ADVANCE(311); - if (lookahead == 'b') ADVANCE(332); - if (lookahead == 'c') ADVANCE(396); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(365); - if (lookahead == 'f') ADVANCE(289); - if (lookahead == 'g') ADVANCE(369); - if (lookahead == 'i') ADVANCE(345); - if (lookahead == 'l') ADVANCE(290); - if (lookahead == 'm') ADVANCE(295); - if (lookahead == 'n') ADVANCE(391); - if (lookahead == 'o') ADVANCE(410); - if (lookahead == 'p') ADVANCE(291); - if (lookahead == 'r') ADVANCE(294); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(381); - if (lookahead == 'w') ADVANCE(352); - if (lookahead == 'y') ADVANCE(355); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '|') ADVANCE(604); - if (lookahead == '}') ADVANCE(481); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(193) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(658); - if (lookahead != 0) ADVANCE(454); + if (eof) ADVANCE(193); + if (lookahead == 0) ADVANCE(200); + if (lookahead == '!') ADVANCE(250); + if (lookahead == '"') ADVANCE(246); + if (lookahead == '#') ADVANCE(973); + if (lookahead == '$') ADVANCE(491); + if (lookahead == '%') ADVANCE(597); + if (lookahead == '&') ADVANCE(605); + if (lookahead == '\'') ADVANCE(492); + if (lookahead == '(') ADVANCE(477); + if (lookahead == ')') ADVANCE(478); + if (lookahead == '*') ADVANCE(525); + if (lookahead == '+') ADVANCE(586); + if (lookahead == ',') ADVANCE(518); + if (lookahead == '-') ADVANCE(587); + if (lookahead == '.') ADVANCE(512); + if (lookahead == '/') ADVANCE(594); + if (lookahead == '0') ADVANCE(664); + if (lookahead == ':') ADVANCE(227); + if (lookahead == ';') ADVANCE(507); + if (lookahead == '<') ADVANCE(611); + if (lookahead == '=') ADVANCE(204); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(251); + if (lookahead == '@') ADVANCE(592); + if (lookahead == 'E') ADVANCE(280); + if (lookahead == 'F') ADVANCE(292); + if (lookahead == 'I') ADVANCE(263); + if (lookahead == 'N') ADVANCE(393); + if (lookahead == 'O') ADVANCE(279); + if (lookahead == 'T') ADVANCE(408); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(641); + if (lookahead == ']') ADVANCE(225); + if (lookahead == '^') ADVANCE(607); + if (lookahead == '_') ADVANCE(281); + if (lookahead == 'a') ADVANCE(310); + if (lookahead == 'b') ADVANCE(331); + if (lookahead == 'c') ADVANCE(395); + if (lookahead == 'd') ADVANCE(318); + if (lookahead == 'e') ADVANCE(364); + if (lookahead == 'f') ADVANCE(288); + if (lookahead == 'g') ADVANCE(368); + if (lookahead == 'i') ADVANCE(344); + if (lookahead == 'l') ADVANCE(289); + if (lookahead == 'm') ADVANCE(294); + if (lookahead == 'n') ADVANCE(390); + if (lookahead == 'o') ADVANCE(409); + if (lookahead == 'p') ADVANCE(290); + if (lookahead == 'r') ADVANCE(293); + if (lookahead == 't') ADVANCE(410); + if (lookahead == 'u') ADVANCE(380); + if (lookahead == 'w') ADVANCE(351); + if (lookahead == 'y') ADVANCE(354); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '|') ADVANCE(603); + if (lookahead == '}') ADVANCE(480); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(191) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(657); + if (lookahead != 0) ADVANCE(453); END_STATE(); case 1: - if (!eof && lookahead == 0) ADVANCE(202); - if (lookahead == '\n') ADVANCE(196); + if (lookahead == 0) ADVANCE(200); + if (lookahead == '\n') ADVANCE(195); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(970); - if (lookahead == '$') ADVANCE(171); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '$') ADVANCE(170); if (lookahead == '+') ADVANCE(80); if (lookahead == '.') ADVANCE(81); - if (lookahead == ':') ADVANCE(229); - if (lookahead == '=') ADVANCE(205); + if (lookahead == ':') ADVANCE(227); + if (lookahead == '=') ADVANCE(203); if (lookahead == '?') ADVANCE(84); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == 'a') ADVANCE(943); - if (('\t' <= lookahead && lookahead <= '\f') || + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == 'b') ADVANCE(943); + if (lookahead == '\t' || lookahead == ' ') SKIP(1) if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 2: - if (!eof && lookahead == 0) ADVANCE(202); - if (lookahead == '\n') ADVANCE(198); + if (lookahead == 0) ADVANCE(200); + if (lookahead == '\n') ADVANCE(196); if (lookahead == '\r') ADVANCE(2); - if (lookahead == '#') ADVANCE(969); - if (lookahead == '$') ADVANCE(171); - if (lookahead == '\\') ADVANCE(249); - if (('\t' <= lookahead && lookahead <= '\f') || + if (lookahead == '#') ADVANCE(973); + if (lookahead == '$') ADVANCE(170); + if (lookahead == '\\') ADVANCE(248); + if (lookahead == '\t' || lookahead == ' ') SKIP(2) if (lookahead != 0 && lookahead != '"' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 3: - if (!eof && lookahead == 0) ADVANCE(202); - if (lookahead == '\n') ADVANCE(199); + if (lookahead == 0) ADVANCE(200); + if (lookahead == '\n') ADVANCE(197); if (lookahead == '\r') ADVANCE(3); - if (lookahead == '#') ADVANCE(970); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == 'b') ADVANCE(941); - if (('\t' <= lookahead && lookahead <= '\f') || + if (lookahead == '#') ADVANCE(974); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == 'a') ADVANCE(948); + if (lookahead == '\t' || lookahead == ' ') SKIP(3) if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 4: - if (!eof && lookahead == 0) ADVANCE(202); - if (lookahead == '\n') ADVANCE(200); + if (lookahead == 0) ADVANCE(200); + if (lookahead == '\n') ADVANCE(198); if (lookahead == '\r') ADVANCE(4); - if (lookahead == '#') ADVANCE(970); - if (lookahead == '\\') ADVANCE(175); - if (('\t' <= lookahead && lookahead <= '\f') || + if (lookahead == '#') ADVANCE(974); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == '\t' || lookahead == ' ') SKIP(4) if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 5: - if (!eof && lookahead == 0) ADVANCE(202); - if (lookahead == '\n') ADVANCE(201); + if (lookahead == 0) ADVANCE(200); + if (lookahead == '\n') ADVANCE(199); if (lookahead == '\r') ADVANCE(5); - if (lookahead == '#') ADVANCE(970); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == 'a') ADVANCE(136); - if (lookahead == 'b') ADVANCE(132); - if (('\t' <= lookahead && lookahead <= '\f') || + if (lookahead == '#') ADVANCE(974); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == 'a') ADVANCE(135); + if (lookahead == 'b') ADVANCE(131); + if (lookahead == '\t' || lookahead == ' ') SKIP(5) END_STATE(); case 6: - if (!eof && lookahead == 0) ADVANCE(838); - if (lookahead == '\n') ADVANCE(498); - if (lookahead == '\r') ADVANCE(11); + if (lookahead == 0) ADVANCE(837); + if (lookahead == '\n') ADVANCE(497); + if (lookahead == '\r') ADVANCE(14); END_STATE(); case 7: - if (!eof && lookahead == 0) ADVANCE(203); - if (lookahead == '\n') ADVANCE(197); - if (lookahead == '\r') ADVANCE(7); - if (lookahead == ' ') SKIP(7) - if (lookahead == '#') ADVANCE(968); - if (lookahead == '$') ADVANCE(170); - if (lookahead == '\\') ADVANCE(9); - if (('\t' <= lookahead && lookahead <= '\f')) ADVANCE(8); - if (lookahead != 0) ADVANCE(191); + if (lookahead == 0) ADVANCE(201); + if (lookahead == '\t') ADVANCE(238); + if (lookahead == '\n') ADVANCE(194); + if (lookahead == '\r') ADVANCE(8); + if (lookahead == ' ') SKIP(8) + if (lookahead == '#') ADVANCE(242); + if (lookahead == '$') ADVANCE(241); + if (lookahead == '\\') ADVANCE(239); + if (lookahead != 0) ADVANCE(243); END_STATE(); case 8: - if (!eof && lookahead == 0) ADVANCE(203); - if (lookahead == '\n') ADVANCE(197); - if (lookahead == '\r') ADVANCE(7); - if (lookahead == ' ') SKIP(7) - if (lookahead == '#') ADVANCE(243); - if (lookahead == '$') ADVANCE(242); - if (lookahead == '\\') ADVANCE(240); - if (('\t' <= lookahead && lookahead <= '\f')) ADVANCE(239); - if (lookahead != 0) ADVANCE(244); + if (lookahead == 0) ADVANCE(201); + if (lookahead == '\t') ADVANCE(7); + if (lookahead == '\n') ADVANCE(194); + if (lookahead == '\r') ADVANCE(8); + if (lookahead == ' ') SKIP(8) + if (lookahead == '#') ADVANCE(972); + if (lookahead == '$') ADVANCE(169); + if (lookahead == '\\') ADVANCE(9); + if (lookahead != 0) ADVANCE(189); END_STATE(); case 9: - if (!eof && lookahead == 0) ADVANCE(244); - if (lookahead == '\n') ADVANCE(838); - if (lookahead == '\r') ADVANCE(10); + if (lookahead == 0) ADVANCE(243); + if (lookahead == '\n') ADVANCE(837); + if (lookahead == '\r') ADVANCE(13); if (lookahead != 0 && - lookahead != ' ') ADVANCE(244); + lookahead != ' ') ADVANCE(243); END_STATE(); case 10: - if (lookahead == '\n') ADVANCE(838); + if (lookahead == '\t') ADVANCE(240); + if (lookahead == '#') ADVANCE(242); + if (lookahead == '$') ADVANCE(241); + if (lookahead == '\\') ADVANCE(239); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(12) + if (lookahead != 0) ADVANCE(243); END_STATE(); case 11: - if (lookahead == '\n') ADVANCE(498); + if (lookahead == '\t') ADVANCE(217); + if (lookahead == '#') ADVANCE(223); + if (lookahead == '\\') ADVANCE(216); + if (lookahead == 'n') ADVANCE(221); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(11) + if (lookahead != 0 && + lookahead != ']') ADVANCE(224); END_STATE(); case 12: - if (lookahead == '\n') ADVANCE(498); - if (lookahead == '\r') ADVANCE(11); + if (lookahead == '\t') ADVANCE(10); + if (lookahead == '#') ADVANCE(972); + if (lookahead == '$') ADVANCE(169); + if (lookahead == '\\') ADVANCE(9); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(12) + if (lookahead != 0) ADVANCE(189); END_STATE(); case 13: - if (lookahead == '\n') ADVANCE(641); + if (lookahead == '\n') ADVANCE(837); END_STATE(); case 14: - if (lookahead == '\n') SKIP(14) - if (lookahead == '#') ADVANCE(646); - if (lookahead == '\\') ADVANCE(644); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '}') ADVANCE(481); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(645); - if (lookahead != 0) ADVANCE(646); + if (lookahead == '\n') ADVANCE(497); END_STATE(); case 15: - if (lookahead == '!') ADVANCE(190); - if (lookahead == '#') ADVANCE(970); - if (lookahead == '%') ADVANCE(597); - if (lookahead == '&') ADVANCE(605); - if (lookahead == '(') ADVANCE(478); - if (lookahead == ')') ADVANCE(479); - if (lookahead == '*') ADVANCE(527); - if (lookahead == '+') ADVANCE(586); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(591); - if (lookahead == '.') ADVANCE(514); - if (lookahead == '/') ADVANCE(596); - if (lookahead == '0') ADVANCE(656); - if (lookahead == ':') ADVANCE(228); - if (lookahead == '<') ADVANCE(74); - if (lookahead == '=') ADVANCE(204); - if (lookahead == '>') ADVANCE(94); - if (lookahead == '@') ADVANCE(592); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == ']') ADVANCE(227); - if (lookahead == '^') ADVANCE(607); - if (lookahead == 'a') ADVANCE(792); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'p') ADVANCE(784); - if (lookahead == 't') ADVANCE(814); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '|') ADVANCE(603); - if (lookahead == '}') ADVANCE(481); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(15) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); - if (('A' <= lookahead && lookahead <= '_') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); + if (lookahead == '\n') ADVANCE(497); + if (lookahead == '\r') ADVANCE(14); END_STATE(); case 16: - if (lookahead == '!') ADVANCE(190); - if (lookahead == '#') ADVANCE(970); - if (lookahead == '(') ADVANCE(478); - if (lookahead == ')') ADVANCE(479); - if (lookahead == '*') ADVANCE(525); - if (lookahead == '+') ADVANCE(586); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(591); - if (lookahead == '.') ADVANCE(71); - if (lookahead == '0') ADVANCE(656); - if (lookahead == ':') ADVANCE(228); - if (lookahead == ';') ADVANCE(508); - if (lookahead == '=') ADVANCE(204); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == ']') ADVANCE(227); - if (lookahead == 'a') ADVANCE(792); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'f') ADVANCE(785); - if (lookahead == 'l') ADVANCE(683); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'n') ADVANCE(773); - if (lookahead == 'p') ADVANCE(784); - if (lookahead == 't') ADVANCE(814); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '}') ADVANCE(481); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(16) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); + if (lookahead == '\n') ADVANCE(640); END_STATE(); case 17: - if (lookahead == '!') ADVANCE(190); - if (lookahead == '#') ADVANCE(970); - if (lookahead == '(') ADVANCE(478); - if (lookahead == ')') ADVANCE(479); - if (lookahead == '*') ADVANCE(525); - if (lookahead == '+') ADVANCE(586); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(591); - if (lookahead == '.') ADVANCE(71); - if (lookahead == '0') ADVANCE(656); - if (lookahead == ':') ADVANCE(228); - if (lookahead == ';') ADVANCE(508); - if (lookahead == '=') ADVANCE(204); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == ']') ADVANCE(227); - if (lookahead == 'a') ADVANCE(792); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'l') ADVANCE(683); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'n') ADVANCE(773); - if (lookahead == 'p') ADVANCE(784); - if (lookahead == 't') ADVANCE(814); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '}') ADVANCE(481); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(17) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); + if (lookahead == '\n') SKIP(17) + if (lookahead == '#') ADVANCE(645); + if (lookahead == '\\') ADVANCE(643); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '}') ADVANCE(480); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(644); + if (lookahead != 0) ADVANCE(645); END_STATE(); case 18: - if (lookahead == '!') ADVANCE(190); - if (lookahead == '#') ADVANCE(970); - if (lookahead == '(') ADVANCE(478); - if (lookahead == ')') ADVANCE(479); - if (lookahead == '*') ADVANCE(525); - if (lookahead == '+') ADVANCE(586); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(591); - if (lookahead == '.') ADVANCE(71); - if (lookahead == '0') ADVANCE(656); - if (lookahead == ':') ADVANCE(228); - if (lookahead == '=') ADVANCE(204); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == ']') ADVANCE(227); - if (lookahead == 'a') ADVANCE(792); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'p') ADVANCE(784); - if (lookahead == 't') ADVANCE(814); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '}') ADVANCE(481); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '!') ADVANCE(188); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '%') ADVANCE(596); + if (lookahead == '&') ADVANCE(604); + if (lookahead == '(') ADVANCE(477); + if (lookahead == ')') ADVANCE(478); + if (lookahead == '*') ADVANCE(526); + if (lookahead == '+') ADVANCE(585); + if (lookahead == ',') ADVANCE(518); + if (lookahead == '-') ADVANCE(590); + if (lookahead == '.') ADVANCE(513); + if (lookahead == '/') ADVANCE(595); + if (lookahead == '0') ADVANCE(655); + if (lookahead == ':') ADVANCE(226); + if (lookahead == '<') ADVANCE(74); + if (lookahead == '=') ADVANCE(202); + if (lookahead == '>') ADVANCE(94); + if (lookahead == '@') ADVANCE(591); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == ']') ADVANCE(225); + if (lookahead == '^') ADVANCE(606); + if (lookahead == 'a') ADVANCE(791); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'p') ADVANCE(783); + if (lookahead == 't') ADVANCE(813); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '|') ADVANCE(602); + if (lookahead == '}') ADVANCE(480); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(18) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); + if (('A' <= lookahead && lookahead <= '_') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); case 19: - if (lookahead == '!') ADVANCE(77); - if (lookahead == '#') ADVANCE(970); - if (lookahead == '%') ADVANCE(598); - if (lookahead == '&') ADVANCE(606); - if (lookahead == '(') ADVANCE(478); - if (lookahead == ')') ADVANCE(479); - if (lookahead == '*') ADVANCE(526); - if (lookahead == '+') ADVANCE(587); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(589); - if (lookahead == '.') ADVANCE(512); - if (lookahead == '/') ADVANCE(595); - if (lookahead == ':') ADVANCE(228); - if (lookahead == ';') ADVANCE(508); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '@') ADVANCE(593); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == ']') ADVANCE(227); - if (lookahead == '^') ADVANCE(608); - if (lookahead == 'a') ADVANCE(146); - if (lookahead == 'e') ADVANCE(141); - if (lookahead == 'f') ADVANCE(160); - if (lookahead == 'i') ADVANCE(135); - if (lookahead == 'n') ADVANCE(150); - if (lookahead == 'o') ADVANCE(157); - if (lookahead == '|') ADVANCE(604); - if (lookahead == '}') ADVANCE(481); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '!') ADVANCE(188); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '(') ADVANCE(477); + if (lookahead == ')') ADVANCE(478); + if (lookahead == '*') ADVANCE(524); + if (lookahead == '+') ADVANCE(585); + if (lookahead == ',') ADVANCE(518); + if (lookahead == '-') ADVANCE(590); + if (lookahead == '.') ADVANCE(71); + if (lookahead == '0') ADVANCE(655); + if (lookahead == ':') ADVANCE(226); + if (lookahead == ';') ADVANCE(507); + if (lookahead == '=') ADVANCE(202); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == ']') ADVANCE(225); + if (lookahead == 'a') ADVANCE(791); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'f') ADVANCE(784); + if (lookahead == 'l') ADVANCE(682); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'n') ADVANCE(772); + if (lookahead == 'p') ADVANCE(783); + if (lookahead == 't') ADVANCE(813); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '}') ADVANCE(480); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(19) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); case 20: - if (lookahead == '!') ADVANCE(77); - if (lookahead == '#') ADVANCE(970); - if (lookahead == '%') ADVANCE(597); - if (lookahead == '&') ADVANCE(605); - if (lookahead == '(') ADVANCE(478); - if (lookahead == ')') ADVANCE(479); - if (lookahead == '*') ADVANCE(527); - if (lookahead == '+') ADVANCE(586); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(588); - if (lookahead == '.') ADVANCE(512); - if (lookahead == '/') ADVANCE(596); - if (lookahead == ':') ADVANCE(229); - if (lookahead == ';') ADVANCE(508); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(619); - if (lookahead == '@') ADVANCE(592); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == ']') ADVANCE(227); - if (lookahead == '^') ADVANCE(607); - if (lookahead == 'a') ADVANCE(146); - if (lookahead == 'e') ADVANCE(141); - if (lookahead == 'f') ADVANCE(160); - if (lookahead == 'i') ADVANCE(135); - if (lookahead == 'n') ADVANCE(150); - if (lookahead == 'o') ADVANCE(157); - if (lookahead == '|') ADVANCE(603); - if (lookahead == '}') ADVANCE(481); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '!') ADVANCE(188); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '(') ADVANCE(477); + if (lookahead == ')') ADVANCE(478); + if (lookahead == '*') ADVANCE(524); + if (lookahead == '+') ADVANCE(585); + if (lookahead == ',') ADVANCE(518); + if (lookahead == '-') ADVANCE(590); + if (lookahead == '.') ADVANCE(71); + if (lookahead == '0') ADVANCE(655); + if (lookahead == ':') ADVANCE(226); + if (lookahead == ';') ADVANCE(507); + if (lookahead == '=') ADVANCE(202); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == ']') ADVANCE(225); + if (lookahead == 'a') ADVANCE(791); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'l') ADVANCE(682); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'n') ADVANCE(772); + if (lookahead == 'p') ADVANCE(783); + if (lookahead == 't') ADVANCE(813); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '}') ADVANCE(480); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(20) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); case 21: - if (lookahead == '!') ADVANCE(77); - if (lookahead == '#') ADVANCE(970); - if (lookahead == '%') ADVANCE(597); - if (lookahead == '&') ADVANCE(605); - if (lookahead == '(') ADVANCE(478); - if (lookahead == ')') ADVANCE(479); - if (lookahead == '*') ADVANCE(527); - if (lookahead == '+') ADVANCE(586); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(588); - if (lookahead == '.') ADVANCE(512); - if (lookahead == '/') ADVANCE(596); - if (lookahead == ':') ADVANCE(228); - if (lookahead == ';') ADVANCE(508); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(619); - if (lookahead == '@') ADVANCE(592); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == ']') ADVANCE(227); - if (lookahead == '^') ADVANCE(607); - if (lookahead == 'a') ADVANCE(146); - if (lookahead == 'e') ADVANCE(141); - if (lookahead == 'f') ADVANCE(160); - if (lookahead == 'i') ADVANCE(135); - if (lookahead == 'n') ADVANCE(150); - if (lookahead == 'o') ADVANCE(157); - if (lookahead == '|') ADVANCE(603); - if (lookahead == '}') ADVANCE(481); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '!') ADVANCE(188); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '(') ADVANCE(477); + if (lookahead == ')') ADVANCE(478); + if (lookahead == '*') ADVANCE(524); + if (lookahead == '+') ADVANCE(585); + if (lookahead == ',') ADVANCE(518); + if (lookahead == '-') ADVANCE(590); + if (lookahead == '.') ADVANCE(71); + if (lookahead == '0') ADVANCE(655); + if (lookahead == ':') ADVANCE(226); + if (lookahead == '=') ADVANCE(202); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == ']') ADVANCE(225); + if (lookahead == 'a') ADVANCE(791); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'p') ADVANCE(783); + if (lookahead == 't') ADVANCE(813); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '}') ADVANCE(480); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(21) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); case 22: if (lookahead == '!') ADVANCE(77); - if (lookahead == '#') ADVANCE(970); + if (lookahead == '#') ADVANCE(974); if (lookahead == '%') ADVANCE(597); if (lookahead == '&') ADVANCE(605); - if (lookahead == '(') ADVANCE(478); - if (lookahead == ')') ADVANCE(479); - if (lookahead == '*') ADVANCE(527); + if (lookahead == '(') ADVANCE(477); + if (lookahead == ')') ADVANCE(478); + if (lookahead == '*') ADVANCE(525); if (lookahead == '+') ADVANCE(586); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(591); - if (lookahead == '.') ADVANCE(514); - if (lookahead == '/') ADVANCE(596); - if (lookahead == '0') ADVANCE(656); - if (lookahead == ':') ADVANCE(229); - if (lookahead == ';') ADVANCE(508); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(619); + if (lookahead == ',') ADVANCE(518); + if (lookahead == '-') ADVANCE(588); + if (lookahead == '.') ADVANCE(511); + if (lookahead == '/') ADVANCE(594); + if (lookahead == ':') ADVANCE(226); + if (lookahead == ';') ADVANCE(507); + if (lookahead == '<') ADVANCE(611); + if (lookahead == '=') ADVANCE(205); + if (lookahead == '>') ADVANCE(617); if (lookahead == '@') ADVANCE(592); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == ']') ADVANCE(227); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == ']') ADVANCE(225); if (lookahead == '^') ADVANCE(607); - if (lookahead == 'a') ADVANCE(758); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'i') ADVANCE(722); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'n') ADVANCE(773); - if (lookahead == 'o') ADVANCE(782); - if (lookahead == 'p') ADVANCE(784); - if (lookahead == 't') ADVANCE(814); - if (lookahead == '{') ADVANCE(480); + if (lookahead == 'a') ADVANCE(145); + if (lookahead == 'e') ADVANCE(140); + if (lookahead == 'f') ADVANCE(159); + if (lookahead == 'i') ADVANCE(134); + if (lookahead == 'n') ADVANCE(149); + if (lookahead == 'o') ADVANCE(156); if (lookahead == '|') ADVANCE(603); - if (lookahead == '}') ADVANCE(481); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '}') ADVANCE(480); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(22) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); - if (('A' <= lookahead && lookahead <= '_') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); END_STATE(); case 23: if (lookahead == '!') ADVANCE(77); - if (lookahead == '#') ADVANCE(970); - if (lookahead == '%') ADVANCE(597); - if (lookahead == '&') ADVANCE(605); - if (lookahead == '(') ADVANCE(478); - if (lookahead == ')') ADVANCE(479); - if (lookahead == '*') ADVANCE(527); - if (lookahead == '+') ADVANCE(586); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(591); - if (lookahead == '.') ADVANCE(514); - if (lookahead == '/') ADVANCE(596); - if (lookahead == '0') ADVANCE(656); - if (lookahead == ':') ADVANCE(228); - if (lookahead == ';') ADVANCE(508); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(619); - if (lookahead == '@') ADVANCE(592); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == ']') ADVANCE(227); - if (lookahead == '^') ADVANCE(607); - if (lookahead == 'a') ADVANCE(758); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'i') ADVANCE(722); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'n') ADVANCE(773); - if (lookahead == 'o') ADVANCE(782); - if (lookahead == 'p') ADVANCE(784); - if (lookahead == 't') ADVANCE(814); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '|') ADVANCE(603); - if (lookahead == '}') ADVANCE(481); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '#') ADVANCE(974); + if (lookahead == '%') ADVANCE(596); + if (lookahead == '&') ADVANCE(604); + if (lookahead == '(') ADVANCE(477); + if (lookahead == ')') ADVANCE(478); + if (lookahead == '*') ADVANCE(526); + if (lookahead == '+') ADVANCE(585); + if (lookahead == ',') ADVANCE(518); + if (lookahead == '-') ADVANCE(587); + if (lookahead == '.') ADVANCE(511); + if (lookahead == '/') ADVANCE(595); + if (lookahead == ':') ADVANCE(227); + if (lookahead == ';') ADVANCE(507); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '=') ADVANCE(205); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '@') ADVANCE(591); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == ']') ADVANCE(225); + if (lookahead == '^') ADVANCE(606); + if (lookahead == 'a') ADVANCE(145); + if (lookahead == 'e') ADVANCE(140); + if (lookahead == 'f') ADVANCE(159); + if (lookahead == 'i') ADVANCE(134); + if (lookahead == 'n') ADVANCE(149); + if (lookahead == 'o') ADVANCE(156); + if (lookahead == '|') ADVANCE(602); + if (lookahead == '}') ADVANCE(480); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(23) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); - if (('A' <= lookahead && lookahead <= '_') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); END_STATE(); case 24: - if (lookahead == '!') ADVANCE(76); - if (lookahead == '#') ADVANCE(970); - if (lookahead == '%') ADVANCE(598); - if (lookahead == '&') ADVANCE(606); - if (lookahead == '(') ADVANCE(478); - if (lookahead == ')') ADVANCE(479); + if (lookahead == '!') ADVANCE(77); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '%') ADVANCE(596); + if (lookahead == '&') ADVANCE(604); + if (lookahead == '(') ADVANCE(477); + if (lookahead == ')') ADVANCE(478); if (lookahead == '*') ADVANCE(526); - if (lookahead == '+') ADVANCE(587); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(589); - if (lookahead == '.') ADVANCE(512); + if (lookahead == '+') ADVANCE(585); + if (lookahead == ',') ADVANCE(518); + if (lookahead == '-') ADVANCE(587); + if (lookahead == '.') ADVANCE(511); if (lookahead == '/') ADVANCE(595); - if (lookahead == ':') ADVANCE(229); - if (lookahead == ';') ADVANCE(508); + if (lookahead == ':') ADVANCE(226); + if (lookahead == ';') ADVANCE(507); if (lookahead == '<') ADVANCE(612); - if (lookahead == '=') ADVANCE(207); + if (lookahead == '=') ADVANCE(205); if (lookahead == '>') ADVANCE(618); - if (lookahead == '@') ADVANCE(593); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == ']') ADVANCE(227); - if (lookahead == '^') ADVANCE(608); - if (lookahead == 'a') ADVANCE(146); - if (lookahead == 'e') ADVANCE(142); - if (lookahead == 'f') ADVANCE(139); + if (lookahead == '@') ADVANCE(591); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == ']') ADVANCE(225); + if (lookahead == '^') ADVANCE(606); + if (lookahead == 'a') ADVANCE(145); + if (lookahead == 'e') ADVANCE(140); + if (lookahead == 'f') ADVANCE(159); if (lookahead == 'i') ADVANCE(134); - if (lookahead == 'n') ADVANCE(150); - if (lookahead == 'o') ADVANCE(157); - if (lookahead == 'w') ADVANCE(140); - if (lookahead == '|') ADVANCE(604); - if (lookahead == '}') ADVANCE(481); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == 'n') ADVANCE(149); + if (lookahead == 'o') ADVANCE(156); + if (lookahead == '|') ADVANCE(602); + if (lookahead == '}') ADVANCE(480); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(24) END_STATE(); case 25: - if (lookahead == '!') ADVANCE(76); - if (lookahead == '#') ADVANCE(970); - if (lookahead == '%') ADVANCE(598); - if (lookahead == '&') ADVANCE(606); - if (lookahead == '(') ADVANCE(478); + if (lookahead == '!') ADVANCE(77); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '%') ADVANCE(596); + if (lookahead == '&') ADVANCE(604); + if (lookahead == '(') ADVANCE(477); + if (lookahead == ')') ADVANCE(478); if (lookahead == '*') ADVANCE(526); - if (lookahead == '+') ADVANCE(587); - if (lookahead == ',') ADVANCE(519); + if (lookahead == '+') ADVANCE(585); + if (lookahead == ',') ADVANCE(518); if (lookahead == '-') ADVANCE(590); - if (lookahead == '.') ADVANCE(514); + if (lookahead == '.') ADVANCE(513); if (lookahead == '/') ADVANCE(595); - if (lookahead == '0') ADVANCE(656); - if (lookahead == ':') ADVANCE(229); - if (lookahead == ';') ADVANCE(508); + if (lookahead == '0') ADVANCE(655); + if (lookahead == ':') ADVANCE(227); + if (lookahead == ';') ADVANCE(507); if (lookahead == '<') ADVANCE(612); - if (lookahead == '=') ADVANCE(207); + if (lookahead == '=') ADVANCE(205); if (lookahead == '>') ADVANCE(618); - if (lookahead == '@') ADVANCE(593); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == '^') ADVANCE(608); - if (lookahead == 'a') ADVANCE(758); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'i') ADVANCE(722); - if (lookahead == 'l') ADVANCE(683); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'n') ADVANCE(773); - if (lookahead == 'o') ADVANCE(782); - if (lookahead == 'p') ADVANCE(784); - if (lookahead == 't') ADVANCE(814); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '|') ADVANCE(604); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '@') ADVANCE(591); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == ']') ADVANCE(225); + if (lookahead == '^') ADVANCE(606); + if (lookahead == 'a') ADVANCE(757); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'i') ADVANCE(721); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'n') ADVANCE(772); + if (lookahead == 'o') ADVANCE(781); + if (lookahead == 'p') ADVANCE(783); + if (lookahead == 't') ADVANCE(813); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '|') ADVANCE(602); + if (lookahead == '}') ADVANCE(480); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(25) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); + if (('A' <= lookahead && lookahead <= '_') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); case 26: - if (lookahead == '!') ADVANCE(76); - if (lookahead == '#') ADVANCE(970); - if (lookahead == '%') ADVANCE(598); - if (lookahead == '&') ADVANCE(606); - if (lookahead == '(') ADVANCE(478); + if (lookahead == '!') ADVANCE(77); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '%') ADVANCE(596); + if (lookahead == '&') ADVANCE(604); + if (lookahead == '(') ADVANCE(477); + if (lookahead == ')') ADVANCE(478); if (lookahead == '*') ADVANCE(526); - if (lookahead == '+') ADVANCE(587); - if (lookahead == ',') ADVANCE(519); + if (lookahead == '+') ADVANCE(585); + if (lookahead == ',') ADVANCE(518); if (lookahead == '-') ADVANCE(590); - if (lookahead == '.') ADVANCE(514); + if (lookahead == '.') ADVANCE(513); if (lookahead == '/') ADVANCE(595); - if (lookahead == '0') ADVANCE(656); - if (lookahead == ':') ADVANCE(229); - if (lookahead == ';') ADVANCE(508); + if (lookahead == '0') ADVANCE(655); + if (lookahead == ':') ADVANCE(226); + if (lookahead == ';') ADVANCE(507); if (lookahead == '<') ADVANCE(612); - if (lookahead == '=') ADVANCE(207); + if (lookahead == '=') ADVANCE(205); if (lookahead == '>') ADVANCE(618); - if (lookahead == '@') ADVANCE(593); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == '^') ADVANCE(608); - if (lookahead == 'a') ADVANCE(758); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'i') ADVANCE(722); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'n') ADVANCE(773); - if (lookahead == 'o') ADVANCE(782); - if (lookahead == 'p') ADVANCE(784); - if (lookahead == 't') ADVANCE(814); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '|') ADVANCE(604); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '@') ADVANCE(591); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == ']') ADVANCE(225); + if (lookahead == '^') ADVANCE(606); + if (lookahead == 'a') ADVANCE(757); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'i') ADVANCE(721); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'n') ADVANCE(772); + if (lookahead == 'o') ADVANCE(781); + if (lookahead == 'p') ADVANCE(783); + if (lookahead == 't') ADVANCE(813); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '|') ADVANCE(602); + if (lookahead == '}') ADVANCE(480); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(26) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); + if (('A' <= lookahead && lookahead <= '_') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); case 27: if (lookahead == '!') ADVANCE(76); - if (lookahead == '#') ADVANCE(970); - if (lookahead == '%') ADVANCE(598); - if (lookahead == '&') ADVANCE(606); - if (lookahead == '(') ADVANCE(478); - if (lookahead == '*') ADVANCE(526); - if (lookahead == '+') ADVANCE(587); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(590); - if (lookahead == '.') ADVANCE(514); - if (lookahead == '/') ADVANCE(595); - if (lookahead == '0') ADVANCE(656); - if (lookahead == ':') ADVANCE(228); - if (lookahead == ';') ADVANCE(508); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '@') ADVANCE(593); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == '^') ADVANCE(608); - if (lookahead == 'a') ADVANCE(758); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'i') ADVANCE(722); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'n') ADVANCE(773); - if (lookahead == 'o') ADVANCE(782); - if (lookahead == 'p') ADVANCE(784); - if (lookahead == 't') ADVANCE(814); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '|') ADVANCE(604); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '#') ADVANCE(974); + if (lookahead == '%') ADVANCE(597); + if (lookahead == '&') ADVANCE(605); + if (lookahead == '(') ADVANCE(477); + if (lookahead == ')') ADVANCE(478); + if (lookahead == '*') ADVANCE(525); + if (lookahead == '+') ADVANCE(586); + if (lookahead == ',') ADVANCE(518); + if (lookahead == '-') ADVANCE(588); + if (lookahead == '.') ADVANCE(511); + if (lookahead == '/') ADVANCE(594); + if (lookahead == ':') ADVANCE(227); + if (lookahead == ';') ADVANCE(507); + if (lookahead == '<') ADVANCE(611); + if (lookahead == '=') ADVANCE(205); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '@') ADVANCE(592); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == ']') ADVANCE(225); + if (lookahead == '^') ADVANCE(607); + if (lookahead == 'a') ADVANCE(145); + if (lookahead == 'e') ADVANCE(141); + if (lookahead == 'f') ADVANCE(138); + if (lookahead == 'i') ADVANCE(133); + if (lookahead == 'n') ADVANCE(149); + if (lookahead == 'o') ADVANCE(156); + if (lookahead == 'w') ADVANCE(139); + if (lookahead == '|') ADVANCE(603); + if (lookahead == '}') ADVANCE(480); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(27) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); END_STATE(); case 28: if (lookahead == '!') ADVANCE(76); - if (lookahead == '#') ADVANCE(970); - if (lookahead == '%') ADVANCE(598); - if (lookahead == '&') ADVANCE(606); - if (lookahead == '(') ADVANCE(478); - if (lookahead == '*') ADVANCE(526); - if (lookahead == '+') ADVANCE(587); - if (lookahead == ',') ADVANCE(519); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '%') ADVANCE(597); + if (lookahead == '&') ADVANCE(605); + if (lookahead == '(') ADVANCE(477); + if (lookahead == '*') ADVANCE(525); + if (lookahead == '+') ADVANCE(586); + if (lookahead == ',') ADVANCE(518); if (lookahead == '-') ADVANCE(589); - if (lookahead == '.') ADVANCE(512); - if (lookahead == '/') ADVANCE(595); - if (lookahead == ':') ADVANCE(229); - if (lookahead == ';') ADVANCE(508); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '@') ADVANCE(593); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == '^') ADVANCE(608); - if (lookahead == 'a') ADVANCE(825); - if (lookahead == 'i') ADVANCE(822); - if (lookahead == 'n') ADVANCE(826); - if (lookahead == 'o') ADVANCE(829); - if (lookahead == '|') ADVANCE(604); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '.') ADVANCE(513); + if (lookahead == '/') ADVANCE(594); + if (lookahead == '0') ADVANCE(655); + if (lookahead == ':') ADVANCE(227); + if (lookahead == ';') ADVANCE(507); + if (lookahead == '<') ADVANCE(611); + if (lookahead == '=') ADVANCE(205); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '@') ADVANCE(592); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == '^') ADVANCE(607); + if (lookahead == 'a') ADVANCE(757); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'i') ADVANCE(721); + if (lookahead == 'l') ADVANCE(682); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'n') ADVANCE(772); + if (lookahead == 'o') ADVANCE(781); + if (lookahead == 'p') ADVANCE(783); + if (lookahead == 't') ADVANCE(813); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '|') ADVANCE(603); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(28) - if (sym_python_identifier_character_set_2(lookahead)) ADVANCE(837); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); case 29: if (lookahead == '!') ADVANCE(76); - if (lookahead == '#') ADVANCE(970); + if (lookahead == '#') ADVANCE(974); if (lookahead == '%') ADVANCE(597); if (lookahead == '&') ADVANCE(605); - if (lookahead == '(') ADVANCE(478); - if (lookahead == ')') ADVANCE(479); - if (lookahead == '*') ADVANCE(527); + if (lookahead == '(') ADVANCE(477); + if (lookahead == '*') ADVANCE(525); if (lookahead == '+') ADVANCE(586); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(588); - if (lookahead == '.') ADVANCE(512); - if (lookahead == '/') ADVANCE(596); - if (lookahead == ':') ADVANCE(229); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(619); + if (lookahead == ',') ADVANCE(518); + if (lookahead == '-') ADVANCE(589); + if (lookahead == '.') ADVANCE(513); + if (lookahead == '/') ADVANCE(594); + if (lookahead == '0') ADVANCE(655); + if (lookahead == ':') ADVANCE(227); + if (lookahead == ';') ADVANCE(507); + if (lookahead == '<') ADVANCE(611); + if (lookahead == '=') ADVANCE(205); + if (lookahead == '>') ADVANCE(617); if (lookahead == '@') ADVANCE(592); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == ']') ADVANCE(227); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); if (lookahead == '^') ADVANCE(607); - if (lookahead == 'a') ADVANCE(147); - if (lookahead == 'f') ADVANCE(152); - if (lookahead == 'i') ADVANCE(135); - if (lookahead == 'n') ADVANCE(150); - if (lookahead == 'o') ADVANCE(157); + if (lookahead == 'a') ADVANCE(757); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'i') ADVANCE(721); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'n') ADVANCE(772); + if (lookahead == 'o') ADVANCE(781); + if (lookahead == 'p') ADVANCE(783); + if (lookahead == 't') ADVANCE(813); + if (lookahead == '{') ADVANCE(479); if (lookahead == '|') ADVANCE(603); - if (lookahead == '}') ADVANCE(481); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(29) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); case 30: if (lookahead == '!') ADVANCE(76); - if (lookahead == '#') ADVANCE(970); + if (lookahead == '#') ADVANCE(974); if (lookahead == '%') ADVANCE(597); if (lookahead == '&') ADVANCE(605); - if (lookahead == '(') ADVANCE(478); - if (lookahead == ')') ADVANCE(479); - if (lookahead == '*') ADVANCE(527); + if (lookahead == '(') ADVANCE(477); + if (lookahead == '*') ADVANCE(525); if (lookahead == '+') ADVANCE(586); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(588); - if (lookahead == '.') ADVANCE(512); - if (lookahead == '/') ADVANCE(596); - if (lookahead == ':') ADVANCE(228); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '=') ADVANCE(83); - if (lookahead == '>') ADVANCE(619); + if (lookahead == ',') ADVANCE(518); + if (lookahead == '-') ADVANCE(589); + if (lookahead == '.') ADVANCE(513); + if (lookahead == '/') ADVANCE(594); + if (lookahead == '0') ADVANCE(655); + if (lookahead == ':') ADVANCE(226); + if (lookahead == ';') ADVANCE(507); + if (lookahead == '<') ADVANCE(611); + if (lookahead == '=') ADVANCE(205); + if (lookahead == '>') ADVANCE(617); if (lookahead == '@') ADVANCE(592); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == ']') ADVANCE(227); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); if (lookahead == '^') ADVANCE(607); - if (lookahead == 'a') ADVANCE(147); - if (lookahead == 'f') ADVANCE(152); - if (lookahead == 'i') ADVANCE(135); - if (lookahead == 'n') ADVANCE(150); - if (lookahead == 'o') ADVANCE(157); + if (lookahead == 'a') ADVANCE(757); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'i') ADVANCE(721); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'n') ADVANCE(772); + if (lookahead == 'o') ADVANCE(781); + if (lookahead == 'p') ADVANCE(783); + if (lookahead == 't') ADVANCE(813); + if (lookahead == '{') ADVANCE(479); if (lookahead == '|') ADVANCE(603); - if (lookahead == '}') ADVANCE(481); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(30) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); case 31: if (lookahead == '!') ADVANCE(76); - if (lookahead == '#') ADVANCE(970); + if (lookahead == '#') ADVANCE(974); if (lookahead == '%') ADVANCE(597); if (lookahead == '&') ADVANCE(605); - if (lookahead == '(') ADVANCE(478); - if (lookahead == ')') ADVANCE(479); - if (lookahead == '*') ADVANCE(527); + if (lookahead == '(') ADVANCE(477); + if (lookahead == '*') ADVANCE(525); if (lookahead == '+') ADVANCE(586); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(591); - if (lookahead == '.') ADVANCE(514); - if (lookahead == '/') ADVANCE(596); - if (lookahead == '0') ADVANCE(656); - if (lookahead == ':') ADVANCE(229); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(619); + if (lookahead == ',') ADVANCE(518); + if (lookahead == '-') ADVANCE(588); + if (lookahead == '.') ADVANCE(511); + if (lookahead == '/') ADVANCE(594); + if (lookahead == ':') ADVANCE(227); + if (lookahead == ';') ADVANCE(507); + if (lookahead == '<') ADVANCE(611); + if (lookahead == '=') ADVANCE(205); + if (lookahead == '>') ADVANCE(617); if (lookahead == '@') ADVANCE(592); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == ']') ADVANCE(227); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); if (lookahead == '^') ADVANCE(607); - if (lookahead == 'a') ADVANCE(758); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'i') ADVANCE(722); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'n') ADVANCE(773); - if (lookahead == 'o') ADVANCE(782); - if (lookahead == 'p') ADVANCE(784); - if (lookahead == 't') ADVANCE(814); - if (lookahead == '{') ADVANCE(480); + if (lookahead == 'a') ADVANCE(824); + if (lookahead == 'i') ADVANCE(821); + if (lookahead == 'n') ADVANCE(825); + if (lookahead == 'o') ADVANCE(828); if (lookahead == '|') ADVANCE(603); - if (lookahead == '}') ADVANCE(481); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(31) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); - if (('A' <= lookahead && lookahead <= '_') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); + if (sym_python_identifier_character_set_2(lookahead)) ADVANCE(836); END_STATE(); case 32: if (lookahead == '!') ADVANCE(76); - if (lookahead == '#') ADVANCE(970); - if (lookahead == '%') ADVANCE(597); - if (lookahead == '&') ADVANCE(605); - if (lookahead == '(') ADVANCE(478); - if (lookahead == '*') ADVANCE(527); - if (lookahead == '+') ADVANCE(586); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(591); - if (lookahead == '.') ADVANCE(514); - if (lookahead == '/') ADVANCE(596); - if (lookahead == '0') ADVANCE(656); - if (lookahead == ':') ADVANCE(228); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '=') ADVANCE(83); - if (lookahead == '>') ADVANCE(619); - if (lookahead == '@') ADVANCE(592); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == '^') ADVANCE(607); - if (lookahead == 'a') ADVANCE(758); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'i') ADVANCE(722); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'n') ADVANCE(773); - if (lookahead == 'o') ADVANCE(782); - if (lookahead == 'p') ADVANCE(784); - if (lookahead == 't') ADVANCE(814); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '|') ADVANCE(603); - if (lookahead == '}') ADVANCE(481); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '#') ADVANCE(974); + if (lookahead == '%') ADVANCE(596); + if (lookahead == '&') ADVANCE(604); + if (lookahead == '(') ADVANCE(477); + if (lookahead == ')') ADVANCE(478); + if (lookahead == '*') ADVANCE(526); + if (lookahead == '+') ADVANCE(585); + if (lookahead == ',') ADVANCE(518); + if (lookahead == '-') ADVANCE(587); + if (lookahead == '.') ADVANCE(511); + if (lookahead == '/') ADVANCE(595); + if (lookahead == ':') ADVANCE(227); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '=') ADVANCE(205); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '@') ADVANCE(591); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == ']') ADVANCE(225); + if (lookahead == '^') ADVANCE(606); + if (lookahead == 'a') ADVANCE(146); + if (lookahead == 'f') ADVANCE(151); + if (lookahead == 'i') ADVANCE(134); + if (lookahead == 'n') ADVANCE(149); + if (lookahead == 'o') ADVANCE(156); + if (lookahead == '|') ADVANCE(602); + if (lookahead == '}') ADVANCE(480); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(32) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); + END_STATE(); + case 33: + if (lookahead == '!') ADVANCE(76); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '%') ADVANCE(596); + if (lookahead == '&') ADVANCE(604); + if (lookahead == '(') ADVANCE(477); + if (lookahead == ')') ADVANCE(478); + if (lookahead == '*') ADVANCE(526); + if (lookahead == '+') ADVANCE(585); + if (lookahead == ',') ADVANCE(518); + if (lookahead == '-') ADVANCE(587); + if (lookahead == '.') ADVANCE(511); + if (lookahead == '/') ADVANCE(595); + if (lookahead == ':') ADVANCE(226); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '=') ADVANCE(83); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '@') ADVANCE(591); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == ']') ADVANCE(225); + if (lookahead == '^') ADVANCE(606); + if (lookahead == 'a') ADVANCE(146); + if (lookahead == 'f') ADVANCE(151); + if (lookahead == 'i') ADVANCE(134); + if (lookahead == 'n') ADVANCE(149); + if (lookahead == 'o') ADVANCE(156); + if (lookahead == '|') ADVANCE(602); + if (lookahead == '}') ADVANCE(480); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(33) + END_STATE(); + case 34: + if (lookahead == '!') ADVANCE(76); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '%') ADVANCE(596); + if (lookahead == '&') ADVANCE(604); + if (lookahead == '(') ADVANCE(477); + if (lookahead == ')') ADVANCE(478); + if (lookahead == '*') ADVANCE(526); + if (lookahead == '+') ADVANCE(585); + if (lookahead == ',') ADVANCE(518); + if (lookahead == '-') ADVANCE(590); + if (lookahead == '.') ADVANCE(513); + if (lookahead == '/') ADVANCE(595); + if (lookahead == '0') ADVANCE(655); + if (lookahead == ':') ADVANCE(227); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '=') ADVANCE(205); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '@') ADVANCE(591); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == ']') ADVANCE(225); + if (lookahead == '^') ADVANCE(606); + if (lookahead == 'a') ADVANCE(757); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'f') ADVANCE(770); + if (lookahead == 'i') ADVANCE(721); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'n') ADVANCE(772); + if (lookahead == 'o') ADVANCE(781); + if (lookahead == 'p') ADVANCE(783); + if (lookahead == 't') ADVANCE(813); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '|') ADVANCE(602); + if (lookahead == '}') ADVANCE(480); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(34) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); + if (('A' <= lookahead && lookahead <= '_') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); + END_STATE(); + case 35: + if (lookahead == '!') ADVANCE(76); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '%') ADVANCE(596); + if (lookahead == '&') ADVANCE(604); + if (lookahead == '(') ADVANCE(477); + if (lookahead == '*') ADVANCE(526); + if (lookahead == '+') ADVANCE(585); + if (lookahead == ',') ADVANCE(518); + if (lookahead == '-') ADVANCE(590); + if (lookahead == '.') ADVANCE(513); + if (lookahead == '/') ADVANCE(595); + if (lookahead == '0') ADVANCE(655); + if (lookahead == ':') ADVANCE(226); + if (lookahead == '<') ADVANCE(612); + if (lookahead == '=') ADVANCE(83); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '@') ADVANCE(591); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == '^') ADVANCE(606); + if (lookahead == 'a') ADVANCE(757); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'f') ADVANCE(770); + if (lookahead == 'i') ADVANCE(721); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'n') ADVANCE(772); + if (lookahead == 'o') ADVANCE(781); + if (lookahead == 'p') ADVANCE(783); + if (lookahead == 't') ADVANCE(813); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '|') ADVANCE(602); + if (lookahead == '}') ADVANCE(480); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(35) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); - case 33: + case 36: if (lookahead == '!') ADVANCE(76); - if (lookahead == '#') ADVANCE(970); - if (lookahead == '%') ADVANCE(597); - if (lookahead == '&') ADVANCE(605); - if (lookahead == '(') ADVANCE(478); - if (lookahead == '*') ADVANCE(527); - if (lookahead == '+') ADVANCE(586); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(591); - if (lookahead == '.') ADVANCE(514); - if (lookahead == '/') ADVANCE(596); - if (lookahead == '0') ADVANCE(656); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '%') ADVANCE(596); + if (lookahead == '&') ADVANCE(604); + if (lookahead == '(') ADVANCE(477); + if (lookahead == '*') ADVANCE(526); + if (lookahead == '+') ADVANCE(585); + if (lookahead == ',') ADVANCE(518); + if (lookahead == '-') ADVANCE(590); + if (lookahead == '.') ADVANCE(513); + if (lookahead == '/') ADVANCE(595); + if (lookahead == '0') ADVANCE(655); if (lookahead == ':') ADVANCE(82); - if (lookahead == ';') ADVANCE(508); - if (lookahead == '<') ADVANCE(613); + if (lookahead == ';') ADVANCE(507); + if (lookahead == '<') ADVANCE(612); if (lookahead == '=') ADVANCE(83); - if (lookahead == '>') ADVANCE(619); - if (lookahead == '@') ADVANCE(592); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == '^') ADVANCE(607); - if (lookahead == 'a') ADVANCE(758); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'f') ADVANCE(785); - if (lookahead == 'i') ADVANCE(722); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'n') ADVANCE(773); - if (lookahead == 'o') ADVANCE(782); - if (lookahead == 'p') ADVANCE(784); - if (lookahead == 't') ADVANCE(814); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '|') ADVANCE(603); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(33) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '@') ADVANCE(591); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == '^') ADVANCE(606); + if (lookahead == 'a') ADVANCE(757); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'f') ADVANCE(784); + if (lookahead == 'i') ADVANCE(721); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'n') ADVANCE(772); + if (lookahead == 'o') ADVANCE(781); + if (lookahead == 'p') ADVANCE(783); + if (lookahead == 't') ADVANCE(813); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '|') ADVANCE(602); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(36) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); - case 34: + case 37: if (lookahead == '!') ADVANCE(76); - if (lookahead == '#') ADVANCE(970); - if (lookahead == '%') ADVANCE(597); - if (lookahead == '&') ADVANCE(605); - if (lookahead == '(') ADVANCE(478); - if (lookahead == '*') ADVANCE(527); - if (lookahead == '+') ADVANCE(586); - if (lookahead == '-') ADVANCE(591); - if (lookahead == '.') ADVANCE(514); - if (lookahead == '/') ADVANCE(596); - if (lookahead == '0') ADVANCE(656); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '%') ADVANCE(596); + if (lookahead == '&') ADVANCE(604); + if (lookahead == '(') ADVANCE(477); + if (lookahead == '*') ADVANCE(526); + if (lookahead == '+') ADVANCE(585); + if (lookahead == '-') ADVANCE(590); + if (lookahead == '.') ADVANCE(513); + if (lookahead == '/') ADVANCE(595); + if (lookahead == '0') ADVANCE(655); if (lookahead == ':') ADVANCE(82); - if (lookahead == '<') ADVANCE(613); + if (lookahead == '<') ADVANCE(612); if (lookahead == '=') ADVANCE(83); - if (lookahead == '>') ADVANCE(619); - if (lookahead == '@') ADVANCE(592); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == '^') ADVANCE(607); - if (lookahead == 'a') ADVANCE(758); - if (lookahead == 'e') ADVANCE(750); - if (lookahead == 'i') ADVANCE(722); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'n') ADVANCE(773); - if (lookahead == 'o') ADVANCE(782); - if (lookahead == 'p') ADVANCE(784); - if (lookahead == 't') ADVANCE(814); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '|') ADVANCE(603); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(34) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); + if (lookahead == '>') ADVANCE(618); + if (lookahead == '@') ADVANCE(591); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == '^') ADVANCE(606); + if (lookahead == 'a') ADVANCE(757); + if (lookahead == 'e') ADVANCE(749); + if (lookahead == 'i') ADVANCE(721); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'n') ADVANCE(772); + if (lookahead == 'o') ADVANCE(781); + if (lookahead == 'p') ADVANCE(783); + if (lookahead == 't') ADVANCE(813); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '|') ADVANCE(602); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(37) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); - case 35: - if (lookahead == '"') ADVANCE(489); + case 38: + if (lookahead == '"') ADVANCE(488); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '$' && - lookahead != '\\') ADVANCE(35); + lookahead != '\\') ADVANCE(38); END_STATE(); - case 36: - if (lookahead == '"') ADVANCE(246); - if (lookahead == '#') ADVANCE(970); - if (lookahead == '\'') ADVANCE(493); - if (lookahead == '(') ADVANCE(478); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == '}') ADVANCE(481); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(36) + case 39: + if (lookahead == '"') ADVANCE(245); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '\'') ADVANCE(492); + if (lookahead == '(') ADVANCE(477); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == '}') ADVANCE(480); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(39) if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); - case 37: - if (lookahead == '#') ADVANCE(969); - if (lookahead == '$') ADVANCE(171); - if (lookahead == '\\') ADVANCE(249); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(37) + case 40: + if (lookahead == '#') ADVANCE(973); + if (lookahead == '$') ADVANCE(170); + if (lookahead == '\\') ADVANCE(248); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(40) if (lookahead != 0 && lookahead != '"' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); - case 38: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '$') ADVANCE(171); - if (lookahead == '(') ADVANCE(478); - if (lookahead == '*') ADVANCE(525); - if (lookahead == '+') ADVANCE(587); - if (lookahead == '-') ADVANCE(591); + case 41: + if (lookahead == '#') ADVANCE(974); + if (lookahead == '$') ADVANCE(170); + if (lookahead == '(') ADVANCE(477); + if (lookahead == '*') ADVANCE(524); + if (lookahead == '+') ADVANCE(586); + if (lookahead == '-') ADVANCE(590); if (lookahead == '.') ADVANCE(70); - if (lookahead == '0') ADVANCE(656); - if (lookahead == ':') ADVANCE(229); - if (lookahead == '=') ADVANCE(205); + if (lookahead == '0') ADVANCE(655); + if (lookahead == ':') ADVANCE(227); + if (lookahead == '=') ADVANCE(203); if (lookahead == '?') ADVANCE(84); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == 'a') ADVANCE(789); - if (lookahead == 'b') ADVANCE(783); - if (lookahead == 'c') ADVANCE(768); - if (lookahead == 'd') ADVANCE(705); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'f') ADVANCE(770); - if (lookahead == 'g') ADVANCE(744); - if (lookahead == 'i') ADVANCE(721); - if (lookahead == 'l') ADVANCE(683); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'n') ADVANCE(766); - if (lookahead == 'p') ADVANCE(685); - if (lookahead == 'r') ADVANCE(689); - if (lookahead == 't') ADVANCE(780); - if (lookahead == 'w') ADVANCE(728); - if (lookahead == 'y') ADVANCE(731); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(38) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == 'a') ADVANCE(788); + if (lookahead == 'b') ADVANCE(782); + if (lookahead == 'c') ADVANCE(767); + if (lookahead == 'd') ADVANCE(704); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'f') ADVANCE(769); + if (lookahead == 'g') ADVANCE(743); + if (lookahead == 'i') ADVANCE(720); + if (lookahead == 'l') ADVANCE(682); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'n') ADVANCE(765); + if (lookahead == 'p') ADVANCE(684); + if (lookahead == 'r') ADVANCE(688); + if (lookahead == 't') ADVANCE(779); + if (lookahead == 'w') ADVANCE(727); + if (lookahead == 'y') ADVANCE(730); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(41) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); - case 39: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '$') ADVANCE(171); - if (lookahead == '(') ADVANCE(478); + case 42: + if (lookahead == '#') ADVANCE(974); + if (lookahead == '$') ADVANCE(170); + if (lookahead == '(') ADVANCE(477); if (lookahead == '+') ADVANCE(80); - if (lookahead == '.') ADVANCE(964); - if (lookahead == ':') ADVANCE(229); - if (lookahead == '=') ADVANCE(205); + if (lookahead == '.') ADVANCE(968); + if (lookahead == ':') ADVANCE(227); + if (lookahead == '=') ADVANCE(203); if (lookahead == '?') ADVANCE(84); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(39) + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(42) if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); - case 40: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '$') ADVANCE(171); - if (lookahead == '(') ADVANCE(478); - if (lookahead == '.') ADVANCE(965); - if (lookahead == ':') ADVANCE(228); - if (lookahead == '\\') ADVANCE(175); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(40) + case 43: + if (lookahead == '#') ADVANCE(974); + if (lookahead == '$') ADVANCE(170); + if (lookahead == '(') ADVANCE(477); + if (lookahead == '.') ADVANCE(969); + if (lookahead == ':') ADVANCE(226); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(43) if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); - case 41: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '$') ADVANCE(171); - if (lookahead == '.') ADVANCE(965); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == 'a') ADVANCE(910); - if (lookahead == 'p') ADVANCE(919); - if (lookahead == 'r') ADVANCE(878); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(41) + case 44: + if (lookahead == '#') ADVANCE(974); + if (lookahead == '$') ADVANCE(170); + if (lookahead == '.') ADVANCE(969); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == 'a') ADVANCE(913); + if (lookahead == 'p') ADVANCE(923); + if (lookahead == 'r') ADVANCE(879); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(44) if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); - case 42: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '$') ADVANCE(173); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == 'f') ADVANCE(938); - if (lookahead == '}') ADVANCE(481); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(42) + case 45: + if (lookahead == '#') ADVANCE(974); + if (lookahead == '$') ADVANCE(169); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == 'f') ADVANCE(942); + if (lookahead == '}') ADVANCE(480); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(45) if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); - case 43: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '%') ADVANCE(598); - if (lookahead == '&') ADVANCE(606); - if (lookahead == '(') ADVANCE(478); - if (lookahead == '*') ADVANCE(526); - if (lookahead == '+') ADVANCE(587); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(590); - if (lookahead == '.') ADVANCE(514); - if (lookahead == '/') ADVANCE(595); - if (lookahead == '0') ADVANCE(656); - if (lookahead == ':') ADVANCE(228); - if (lookahead == ';') ADVANCE(508); + case 46: + if (lookahead == '#') ADVANCE(974); + if (lookahead == '%') ADVANCE(597); + if (lookahead == '&') ADVANCE(605); + if (lookahead == '(') ADVANCE(477); + if (lookahead == '*') ADVANCE(525); + if (lookahead == '+') ADVANCE(586); + if (lookahead == ',') ADVANCE(518); + if (lookahead == '-') ADVANCE(589); + if (lookahead == '.') ADVANCE(513); + if (lookahead == '/') ADVANCE(594); + if (lookahead == '0') ADVANCE(655); + if (lookahead == ':') ADVANCE(226); + if (lookahead == ';') ADVANCE(507); if (lookahead == '<') ADVANCE(73); - if (lookahead == '=') ADVANCE(204); + if (lookahead == '=') ADVANCE(202); if (lookahead == '>') ADVANCE(93); - if (lookahead == '@') ADVANCE(593); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == '^') ADVANCE(608); - if (lookahead == 'a') ADVANCE(792); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'p') ADVANCE(784); - if (lookahead == 't') ADVANCE(814); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '|') ADVANCE(604); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(43) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); + if (lookahead == '@') ADVANCE(592); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == '^') ADVANCE(607); + if (lookahead == 'a') ADVANCE(791); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'p') ADVANCE(783); + if (lookahead == 't') ADVANCE(813); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '|') ADVANCE(603); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(46) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); - case 44: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '%') ADVANCE(597); - if (lookahead == '&') ADVANCE(605); - if (lookahead == '(') ADVANCE(478); - if (lookahead == '*') ADVANCE(527); - if (lookahead == '+') ADVANCE(586); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(591); - if (lookahead == '.') ADVANCE(514); - if (lookahead == '/') ADVANCE(596); - if (lookahead == '0') ADVANCE(656); + case 47: + if (lookahead == '#') ADVANCE(974); + if (lookahead == '%') ADVANCE(596); + if (lookahead == '&') ADVANCE(604); + if (lookahead == '(') ADVANCE(477); + if (lookahead == '*') ADVANCE(526); + if (lookahead == '+') ADVANCE(585); + if (lookahead == ',') ADVANCE(518); + if (lookahead == '-') ADVANCE(590); + if (lookahead == '.') ADVANCE(513); + if (lookahead == '/') ADVANCE(595); + if (lookahead == '0') ADVANCE(655); if (lookahead == '<') ADVANCE(74); if (lookahead == '>') ADVANCE(94); - if (lookahead == '@') ADVANCE(592); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == '^') ADVANCE(607); - if (lookahead == 'a') ADVANCE(792); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'i') ADVANCE(756); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'p') ADVANCE(784); - if (lookahead == 't') ADVANCE(814); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '|') ADVANCE(603); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(44) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); + if (lookahead == '@') ADVANCE(591); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == '^') ADVANCE(606); + if (lookahead == 'a') ADVANCE(791); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'i') ADVANCE(755); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'p') ADVANCE(783); + if (lookahead == 't') ADVANCE(813); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '|') ADVANCE(602); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(47) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); - case 45: - if (lookahead == '#') ADVANCE(970); + case 48: + if (lookahead == '#') ADVANCE(974); if (lookahead == '%') ADVANCE(78); if (lookahead == '&') ADVANCE(79); - if (lookahead == '(') ADVANCE(478); - if (lookahead == '*') ADVANCE(528); - if (lookahead == '+') ADVANCE(587); - if (lookahead == '-') ADVANCE(590); + if (lookahead == '(') ADVANCE(477); + if (lookahead == '*') ADVANCE(527); + if (lookahead == '+') ADVANCE(586); + if (lookahead == '-') ADVANCE(589); if (lookahead == '.') ADVANCE(71); if (lookahead == '/') ADVANCE(72); - if (lookahead == '0') ADVANCE(656); - if (lookahead == ':') ADVANCE(228); - if (lookahead == ';') ADVANCE(508); + if (lookahead == '0') ADVANCE(655); + if (lookahead == ':') ADVANCE(226); + if (lookahead == ';') ADVANCE(507); if (lookahead == '<') ADVANCE(75); - if (lookahead == '=') ADVANCE(204); + if (lookahead == '=') ADVANCE(202); if (lookahead == '>') ADVANCE(96); if (lookahead == '@') ADVANCE(85); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); if (lookahead == '^') ADVANCE(86); - if (lookahead == 'a') ADVANCE(792); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'p') ADVANCE(784); - if (lookahead == 't') ADVANCE(814); - if (lookahead == '{') ADVANCE(480); + if (lookahead == 'a') ADVANCE(791); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'p') ADVANCE(783); + if (lookahead == 't') ADVANCE(813); + if (lookahead == '{') ADVANCE(479); if (lookahead == '|') ADVANCE(87); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(45) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(48) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); - case 46: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '(') ADVANCE(478); - if (lookahead == ')') ADVANCE(479); - if (lookahead == '*') ADVANCE(525); - if (lookahead == '+') ADVANCE(586); - if (lookahead == '-') ADVANCE(591); + case 49: + if (lookahead == '#') ADVANCE(974); + if (lookahead == '(') ADVANCE(477); + if (lookahead == ')') ADVANCE(478); + if (lookahead == '*') ADVANCE(524); + if (lookahead == '+') ADVANCE(585); + if (lookahead == '-') ADVANCE(590); if (lookahead == '.') ADVANCE(71); - if (lookahead == '0') ADVANCE(656); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == ']') ADVANCE(227); - if (lookahead == 'a') ADVANCE(792); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'i') ADVANCE(723); - if (lookahead == 'l') ADVANCE(683); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'n') ADVANCE(773); - if (lookahead == 'p') ADVANCE(784); - if (lookahead == 't') ADVANCE(814); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '}') ADVANCE(481); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(46) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); + if (lookahead == '0') ADVANCE(655); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == ']') ADVANCE(225); + if (lookahead == 'a') ADVANCE(791); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'f') ADVANCE(770); + if (lookahead == 'i') ADVANCE(722); + if (lookahead == 'l') ADVANCE(682); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'n') ADVANCE(772); + if (lookahead == 'p') ADVANCE(783); + if (lookahead == 't') ADVANCE(813); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '}') ADVANCE(480); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(49) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); - END_STATE(); - case 47: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '(') ADVANCE(478); - if (lookahead == ')') ADVANCE(479); - if (lookahead == '*') ADVANCE(525); - if (lookahead == '+') ADVANCE(586); - if (lookahead == '-') ADVANCE(591); - if (lookahead == '.') ADVANCE(71); - if (lookahead == '0') ADVANCE(656); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == ']') ADVANCE(227); - if (lookahead == 'a') ADVANCE(792); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'l') ADVANCE(683); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'n') ADVANCE(773); - if (lookahead == 'p') ADVANCE(784); - if (lookahead == 't') ADVANCE(814); - if (lookahead == 'y') ADVANCE(731); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '}') ADVANCE(481); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(47) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); - END_STATE(); - case 48: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '(') ADVANCE(478); - if (lookahead == ')') ADVANCE(479); - if (lookahead == '*') ADVANCE(527); - if (lookahead == '+') ADVANCE(586); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(591); - if (lookahead == '.') ADVANCE(71); - if (lookahead == '0') ADVANCE(656); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == 'a') ADVANCE(792); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'l') ADVANCE(683); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'n') ADVANCE(773); - if (lookahead == 'p') ADVANCE(784); - if (lookahead == 't') ADVANCE(814); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '}') ADVANCE(481); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(48) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); - END_STATE(); - case 49: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '(') ADVANCE(478); - if (lookahead == ')') ADVANCE(479); - if (lookahead == '*') ADVANCE(527); - if (lookahead == '-') ADVANCE(95); - if (lookahead == '/') ADVANCE(594); - if (lookahead == ':') ADVANCE(228); - if (lookahead == ';') ADVANCE(508); - if (lookahead == '\\') ADVANCE(175); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(49) - if (sym_python_identifier_character_set_3(lookahead)) ADVANCE(837); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); case 50: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '(') ADVANCE(478); - if (lookahead == '*') ADVANCE(525); - if (lookahead == '+') ADVANCE(586); - if (lookahead == '-') ADVANCE(591); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '(') ADVANCE(477); + if (lookahead == ')') ADVANCE(478); + if (lookahead == '*') ADVANCE(524); + if (lookahead == '+') ADVANCE(585); + if (lookahead == '-') ADVANCE(590); if (lookahead == '.') ADVANCE(71); - if (lookahead == '0') ADVANCE(656); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == 'a') ADVANCE(789); - if (lookahead == 'b') ADVANCE(783); - if (lookahead == 'c') ADVANCE(768); - if (lookahead == 'd') ADVANCE(705); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'f') ADVANCE(734); - if (lookahead == 'g') ADVANCE(744); - if (lookahead == 'i') ADVANCE(721); - if (lookahead == 'l') ADVANCE(683); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'n') ADVANCE(766); - if (lookahead == 'p') ADVANCE(685); - if (lookahead == 'r') ADVANCE(689); - if (lookahead == 't') ADVANCE(780); - if (lookahead == 'w') ADVANCE(728); - if (lookahead == 'y') ADVANCE(731); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '0') ADVANCE(655); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == ']') ADVANCE(225); + if (lookahead == 'a') ADVANCE(791); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'l') ADVANCE(682); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'n') ADVANCE(772); + if (lookahead == 'p') ADVANCE(783); + if (lookahead == 't') ADVANCE(813); + if (lookahead == 'y') ADVANCE(730); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '}') ADVANCE(480); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(50) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); case 51: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '(') ADVANCE(478); - if (lookahead == '*') ADVANCE(525); - if (lookahead == '+') ADVANCE(586); - if (lookahead == '-') ADVANCE(591); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '(') ADVANCE(477); + if (lookahead == ')') ADVANCE(478); + if (lookahead == '*') ADVANCE(526); + if (lookahead == '+') ADVANCE(585); + if (lookahead == ',') ADVANCE(518); + if (lookahead == '-') ADVANCE(590); if (lookahead == '.') ADVANCE(71); - if (lookahead == '0') ADVANCE(656); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == 'a') ADVANCE(789); - if (lookahead == 'b') ADVANCE(783); - if (lookahead == 'c') ADVANCE(768); - if (lookahead == 'd') ADVANCE(705); - if (lookahead == 'e') ADVANCE(750); - if (lookahead == 'f') ADVANCE(770); - if (lookahead == 'g') ADVANCE(744); - if (lookahead == 'i') ADVANCE(721); - if (lookahead == 'l') ADVANCE(683); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'n') ADVANCE(766); - if (lookahead == 'p') ADVANCE(685); - if (lookahead == 'r') ADVANCE(689); - if (lookahead == 't') ADVANCE(780); - if (lookahead == 'w') ADVANCE(728); - if (lookahead == 'y') ADVANCE(731); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '0') ADVANCE(655); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == 'a') ADVANCE(791); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'l') ADVANCE(682); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'n') ADVANCE(772); + if (lookahead == 'p') ADVANCE(783); + if (lookahead == 't') ADVANCE(813); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '}') ADVANCE(480); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(51) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); case 52: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '(') ADVANCE(478); - if (lookahead == '*') ADVANCE(525); - if (lookahead == '+') ADVANCE(586); - if (lookahead == '-') ADVANCE(591); - if (lookahead == '.') ADVANCE(71); - if (lookahead == '0') ADVANCE(656); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == 'a') ADVANCE(789); - if (lookahead == 'b') ADVANCE(783); - if (lookahead == 'c') ADVANCE(768); - if (lookahead == 'd') ADVANCE(705); - if (lookahead == 'e') ADVANCE(749); - if (lookahead == 'f') ADVANCE(734); - if (lookahead == 'g') ADVANCE(744); - if (lookahead == 'i') ADVANCE(721); - if (lookahead == 'l') ADVANCE(683); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'n') ADVANCE(766); - if (lookahead == 'p') ADVANCE(685); - if (lookahead == 'r') ADVANCE(689); - if (lookahead == 't') ADVANCE(780); - if (lookahead == 'w') ADVANCE(728); - if (lookahead == 'y') ADVANCE(731); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '#') ADVANCE(974); + if (lookahead == '(') ADVANCE(477); + if (lookahead == ')') ADVANCE(478); + if (lookahead == '*') ADVANCE(526); + if (lookahead == '-') ADVANCE(95); + if (lookahead == '/') ADVANCE(593); + if (lookahead == ':') ADVANCE(226); + if (lookahead == ';') ADVANCE(507); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(52) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); + if (sym_python_identifier_character_set_3(lookahead)) ADVANCE(836); END_STATE(); case 53: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '(') ADVANCE(478); - if (lookahead == '*') ADVANCE(525); - if (lookahead == '+') ADVANCE(586); - if (lookahead == '-') ADVANCE(591); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '(') ADVANCE(477); + if (lookahead == '*') ADVANCE(524); + if (lookahead == '+') ADVANCE(585); + if (lookahead == '-') ADVANCE(590); if (lookahead == '.') ADVANCE(71); - if (lookahead == '0') ADVANCE(656); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == 'a') ADVANCE(789); - if (lookahead == 'b') ADVANCE(783); - if (lookahead == 'c') ADVANCE(768); - if (lookahead == 'd') ADVANCE(705); - if (lookahead == 'e') ADVANCE(741); - if (lookahead == 'f') ADVANCE(770); - if (lookahead == 'g') ADVANCE(744); - if (lookahead == 'i') ADVANCE(721); - if (lookahead == 'l') ADVANCE(683); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'n') ADVANCE(766); - if (lookahead == 'p') ADVANCE(685); - if (lookahead == 'r') ADVANCE(689); - if (lookahead == 't') ADVANCE(780); - if (lookahead == 'w') ADVANCE(728); - if (lookahead == 'y') ADVANCE(731); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '0') ADVANCE(655); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == 'a') ADVANCE(788); + if (lookahead == 'b') ADVANCE(782); + if (lookahead == 'c') ADVANCE(767); + if (lookahead == 'd') ADVANCE(704); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'f') ADVANCE(733); + if (lookahead == 'g') ADVANCE(743); + if (lookahead == 'i') ADVANCE(720); + if (lookahead == 'l') ADVANCE(682); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'n') ADVANCE(765); + if (lookahead == 'p') ADVANCE(684); + if (lookahead == 'r') ADVANCE(688); + if (lookahead == 't') ADVANCE(779); + if (lookahead == 'w') ADVANCE(727); + if (lookahead == 'y') ADVANCE(730); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(53) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); case 54: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '(') ADVANCE(478); - if (lookahead == '*') ADVANCE(525); - if (lookahead == '+') ADVANCE(586); - if (lookahead == '-') ADVANCE(591); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '(') ADVANCE(477); + if (lookahead == '*') ADVANCE(524); + if (lookahead == '+') ADVANCE(585); + if (lookahead == '-') ADVANCE(590); if (lookahead == '.') ADVANCE(71); - if (lookahead == '0') ADVANCE(656); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == 'a') ADVANCE(789); - if (lookahead == 'b') ADVANCE(783); - if (lookahead == 'c') ADVANCE(768); - if (lookahead == 'd') ADVANCE(705); - if (lookahead == 'e') ADVANCE(751); - if (lookahead == 'f') ADVANCE(734); - if (lookahead == 'g') ADVANCE(744); - if (lookahead == 'i') ADVANCE(721); - if (lookahead == 'l') ADVANCE(683); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'n') ADVANCE(766); - if (lookahead == 'p') ADVANCE(685); - if (lookahead == 'r') ADVANCE(689); - if (lookahead == 't') ADVANCE(780); - if (lookahead == 'w') ADVANCE(728); - if (lookahead == 'y') ADVANCE(731); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '0') ADVANCE(655); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == 'a') ADVANCE(788); + if (lookahead == 'b') ADVANCE(782); + if (lookahead == 'c') ADVANCE(767); + if (lookahead == 'd') ADVANCE(704); + if (lookahead == 'e') ADVANCE(749); + if (lookahead == 'f') ADVANCE(769); + if (lookahead == 'g') ADVANCE(743); + if (lookahead == 'i') ADVANCE(720); + if (lookahead == 'l') ADVANCE(682); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'n') ADVANCE(765); + if (lookahead == 'p') ADVANCE(684); + if (lookahead == 'r') ADVANCE(688); + if (lookahead == 't') ADVANCE(779); + if (lookahead == 'w') ADVANCE(727); + if (lookahead == 'y') ADVANCE(730); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(54) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); case 55: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '(') ADVANCE(478); - if (lookahead == '*') ADVANCE(525); - if (lookahead == '+') ADVANCE(586); - if (lookahead == '-') ADVANCE(591); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '(') ADVANCE(477); + if (lookahead == '*') ADVANCE(524); + if (lookahead == '+') ADVANCE(585); + if (lookahead == '-') ADVANCE(590); if (lookahead == '.') ADVANCE(71); - if (lookahead == '0') ADVANCE(656); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == 'a') ADVANCE(789); - if (lookahead == 'b') ADVANCE(783); - if (lookahead == 'c') ADVANCE(768); - if (lookahead == 'd') ADVANCE(719); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'f') ADVANCE(785); - if (lookahead == 'g') ADVANCE(744); - if (lookahead == 'i') ADVANCE(752); - if (lookahead == 'l') ADVANCE(683); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'n') ADVANCE(766); - if (lookahead == 'p') ADVANCE(685); - if (lookahead == 'r') ADVANCE(689); - if (lookahead == 't') ADVANCE(814); - if (lookahead == 'y') ADVANCE(731); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '0') ADVANCE(655); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == 'a') ADVANCE(788); + if (lookahead == 'b') ADVANCE(782); + if (lookahead == 'c') ADVANCE(767); + if (lookahead == 'd') ADVANCE(704); + if (lookahead == 'e') ADVANCE(748); + if (lookahead == 'f') ADVANCE(733); + if (lookahead == 'g') ADVANCE(743); + if (lookahead == 'i') ADVANCE(720); + if (lookahead == 'l') ADVANCE(682); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'n') ADVANCE(765); + if (lookahead == 'p') ADVANCE(684); + if (lookahead == 'r') ADVANCE(688); + if (lookahead == 't') ADVANCE(779); + if (lookahead == 'w') ADVANCE(727); + if (lookahead == 'y') ADVANCE(730); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(55) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); case 56: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '(') ADVANCE(478); - if (lookahead == '*') ADVANCE(525); - if (lookahead == '+') ADVANCE(586); - if (lookahead == '-') ADVANCE(591); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '(') ADVANCE(477); + if (lookahead == '*') ADVANCE(524); + if (lookahead == '+') ADVANCE(585); + if (lookahead == '-') ADVANCE(590); if (lookahead == '.') ADVANCE(71); - if (lookahead == '0') ADVANCE(656); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == 'a') ADVANCE(792); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'i') ADVANCE(756); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'p') ADVANCE(784); - if (lookahead == 't') ADVANCE(814); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '0') ADVANCE(655); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == 'a') ADVANCE(788); + if (lookahead == 'b') ADVANCE(782); + if (lookahead == 'c') ADVANCE(767); + if (lookahead == 'd') ADVANCE(704); + if (lookahead == 'e') ADVANCE(740); + if (lookahead == 'f') ADVANCE(769); + if (lookahead == 'g') ADVANCE(743); + if (lookahead == 'i') ADVANCE(720); + if (lookahead == 'l') ADVANCE(682); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'n') ADVANCE(765); + if (lookahead == 'p') ADVANCE(684); + if (lookahead == 'r') ADVANCE(688); + if (lookahead == 't') ADVANCE(779); + if (lookahead == 'w') ADVANCE(727); + if (lookahead == 'y') ADVANCE(730); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(56) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); case 57: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '(') ADVANCE(478); - if (lookahead == '*') ADVANCE(525); - if (lookahead == '+') ADVANCE(586); - if (lookahead == '-') ADVANCE(591); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '(') ADVANCE(477); + if (lookahead == '*') ADVANCE(524); + if (lookahead == '+') ADVANCE(585); + if (lookahead == '-') ADVANCE(590); if (lookahead == '.') ADVANCE(71); - if (lookahead == '0') ADVANCE(656); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == 'a') ADVANCE(792); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'n') ADVANCE(773); - if (lookahead == 'p') ADVANCE(784); - if (lookahead == 't') ADVANCE(814); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '0') ADVANCE(655); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == 'a') ADVANCE(788); + if (lookahead == 'b') ADVANCE(782); + if (lookahead == 'c') ADVANCE(767); + if (lookahead == 'd') ADVANCE(704); + if (lookahead == 'e') ADVANCE(750); + if (lookahead == 'f') ADVANCE(733); + if (lookahead == 'g') ADVANCE(743); + if (lookahead == 'i') ADVANCE(720); + if (lookahead == 'l') ADVANCE(682); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'n') ADVANCE(765); + if (lookahead == 'p') ADVANCE(684); + if (lookahead == 'r') ADVANCE(688); + if (lookahead == 't') ADVANCE(779); + if (lookahead == 'w') ADVANCE(727); + if (lookahead == 'y') ADVANCE(730); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(57) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); case 58: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '(') ADVANCE(478); - if (lookahead == '*') ADVANCE(525); - if (lookahead == '\\') ADVANCE(175); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '#') ADVANCE(974); + if (lookahead == '(') ADVANCE(477); + if (lookahead == '*') ADVANCE(524); + if (lookahead == '+') ADVANCE(585); + if (lookahead == '-') ADVANCE(590); + if (lookahead == '.') ADVANCE(71); + if (lookahead == '0') ADVANCE(655); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == 'a') ADVANCE(788); + if (lookahead == 'b') ADVANCE(782); + if (lookahead == 'c') ADVANCE(767); + if (lookahead == 'd') ADVANCE(718); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'f') ADVANCE(784); + if (lookahead == 'g') ADVANCE(743); + if (lookahead == 'i') ADVANCE(751); + if (lookahead == 'l') ADVANCE(682); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'n') ADVANCE(765); + if (lookahead == 'p') ADVANCE(684); + if (lookahead == 'r') ADVANCE(688); + if (lookahead == 't') ADVANCE(813); + if (lookahead == 'y') ADVANCE(730); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(58) - if (sym_python_identifier_character_set_3(lookahead)) ADVANCE(837); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); case 59: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '(') ADVANCE(478); - if (lookahead == '*') ADVANCE(527); - if (lookahead == '+') ADVANCE(586); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(591); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '(') ADVANCE(477); + if (lookahead == '*') ADVANCE(524); + if (lookahead == '+') ADVANCE(585); + if (lookahead == '-') ADVANCE(590); if (lookahead == '.') ADVANCE(71); - if (lookahead == '0') ADVANCE(656); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == 'a') ADVANCE(792); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'l') ADVANCE(683); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'n') ADVANCE(773); - if (lookahead == 'p') ADVANCE(784); - if (lookahead == 't') ADVANCE(814); - if (lookahead == 'y') ADVANCE(731); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '}') ADVANCE(481); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '0') ADVANCE(655); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == 'a') ADVANCE(791); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'i') ADVANCE(755); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'p') ADVANCE(783); + if (lookahead == 't') ADVANCE(813); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(59) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); case 60: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '(') ADVANCE(478); - if (lookahead == '*') ADVANCE(527); - if (lookahead == '+') ADVANCE(586); - if (lookahead == '-') ADVANCE(591); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '(') ADVANCE(477); + if (lookahead == '*') ADVANCE(524); + if (lookahead == '+') ADVANCE(585); + if (lookahead == '-') ADVANCE(590); if (lookahead == '.') ADVANCE(71); - if (lookahead == '0') ADVANCE(656); - if (lookahead == 'F') ADVANCE(688); - if (lookahead == 'N') ADVANCE(765); - if (lookahead == 'T') ADVANCE(779); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == 'a') ADVANCE(789); - if (lookahead == 'b') ADVANCE(783); - if (lookahead == 'c') ADVANCE(768); - if (lookahead == 'd') ADVANCE(719); - if (lookahead == 'e') ADVANCE(811); - if (lookahead == 'f') ADVANCE(785); - if (lookahead == 'g') ADVANCE(744); - if (lookahead == 'i') ADVANCE(752); - if (lookahead == 'l') ADVANCE(683); - if (lookahead == 'm') ADVANCE(684); - if (lookahead == 'n') ADVANCE(766); - if (lookahead == 'p') ADVANCE(685); - if (lookahead == 'r') ADVANCE(689); - if (lookahead == 't') ADVANCE(814); - if (lookahead == 'y') ADVANCE(731); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '0') ADVANCE(655); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == 'a') ADVANCE(791); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'n') ADVANCE(772); + if (lookahead == 'p') ADVANCE(783); + if (lookahead == 't') ADVANCE(813); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(60) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(655); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(837); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); case 61: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '.') ADVANCE(512); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == '_') ADVANCE(817); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '#') ADVANCE(974); + if (lookahead == '(') ADVANCE(477); + if (lookahead == '*') ADVANCE(524); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(61) - if (sym_python_identifier_character_set_4(lookahead)) ADVANCE(837); + if (sym_python_identifier_character_set_3(lookahead)) ADVANCE(836); END_STATE(); case 62: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '.') ADVANCE(512); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == 'i') ADVANCE(824); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '#') ADVANCE(974); + if (lookahead == '(') ADVANCE(477); + if (lookahead == '*') ADVANCE(526); + if (lookahead == '+') ADVANCE(585); + if (lookahead == ',') ADVANCE(518); + if (lookahead == '-') ADVANCE(590); + if (lookahead == '.') ADVANCE(71); + if (lookahead == '0') ADVANCE(655); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == 'a') ADVANCE(791); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'l') ADVANCE(682); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'n') ADVANCE(772); + if (lookahead == 'p') ADVANCE(783); + if (lookahead == 't') ADVANCE(813); + if (lookahead == 'y') ADVANCE(730); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '}') ADVANCE(480); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(62) - if (sym_python_identifier_character_set_3(lookahead)) ADVANCE(837); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); case 63: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == 'p') ADVANCE(958); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '#') ADVANCE(974); + if (lookahead == '(') ADVANCE(477); + if (lookahead == '*') ADVANCE(526); + if (lookahead == '+') ADVANCE(585); + if (lookahead == '-') ADVANCE(590); + if (lookahead == '.') ADVANCE(71); + if (lookahead == '0') ADVANCE(655); + if (lookahead == 'F') ADVANCE(687); + if (lookahead == 'N') ADVANCE(764); + if (lookahead == 'T') ADVANCE(778); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == 'a') ADVANCE(788); + if (lookahead == 'b') ADVANCE(782); + if (lookahead == 'c') ADVANCE(767); + if (lookahead == 'd') ADVANCE(718); + if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'f') ADVANCE(784); + if (lookahead == 'g') ADVANCE(743); + if (lookahead == 'i') ADVANCE(751); + if (lookahead == 'l') ADVANCE(682); + if (lookahead == 'm') ADVANCE(683); + if (lookahead == 'n') ADVANCE(765); + if (lookahead == 'p') ADVANCE(684); + if (lookahead == 'r') ADVANCE(688); + if (lookahead == 't') ADVANCE(813); + if (lookahead == 'y') ADVANCE(730); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(63) - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(654); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_1(lookahead)) ADVANCE(836); END_STATE(); case 64: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == '{') ADVANCE(480); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '#') ADVANCE(974); + if (lookahead == '.') ADVANCE(511); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == '_') ADVANCE(816); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(64) + if (sym_python_identifier_character_set_4(lookahead)) ADVANCE(836); END_STATE(); case 65: - if (lookahead == '#') ADVANCE(970); - if (lookahead == '\\') ADVANCE(643); - if (lookahead == '{') ADVANCE(480); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(64) + if (lookahead == '#') ADVANCE(974); + if (lookahead == '.') ADVANCE(511); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == 'i') ADVANCE(823); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(65) + if (sym_python_identifier_character_set_3(lookahead)) ADVANCE(836); END_STATE(); case 66: - if (lookahead == '#') ADVANCE(968); - if (lookahead == '$') ADVANCE(170); - if (lookahead == '\\') ADVANCE(9); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == 'p') ADVANCE(962); if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f') ADVANCE(67); - if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(66) - if (lookahead != 0) ADVANCE(191); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 67: - if (lookahead == '#') ADVANCE(243); - if (lookahead == '$') ADVANCE(242); - if (lookahead == '\\') ADVANCE(240); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == '{') ADVANCE(479); if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f') ADVANCE(241); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(66) - if (lookahead != 0) ADVANCE(244); + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(67) END_STATE(); case 68: - if (lookahead == '#') ADVANCE(225); - if (lookahead == '\\') ADVANCE(218); - if (lookahead == 'n') ADVANCE(223); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '\\') ADVANCE(642); + if (lookahead == '{') ADVANCE(479); if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f') ADVANCE(219); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(68) - if (lookahead != 0 && - lookahead != ']') ADVANCE(226); + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(67) END_STATE(); case 69: - if (lookahead == '.') ADVANCE(640); + if (lookahead == '.') ADVANCE(639); END_STATE(); case 70: if (lookahead == '.') ADVANCE(69); - if (lookahead == '=') ADVANCE(213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (lookahead == '=') ADVANCE(211); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(668); END_STATE(); case 71: if (lookahead == '.') ADVANCE(69); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(668); END_STATE(); case 72: if (lookahead == '/') ADVANCE(89); - if (lookahead == '=') ADVANCE(628); + if (lookahead == '=') ADVANCE(627); END_STATE(); case 73: - if (lookahead == '<') ADVANCE(610); + if (lookahead == '<') ADVANCE(609); END_STATE(); case 74: - if (lookahead == '<') ADVANCE(609); + if (lookahead == '<') ADVANCE(608); END_STATE(); case 75: if (lookahead == '<') ADVANCE(90); END_STATE(); case 76: - if (lookahead == '=') ADVANCE(616); + if (lookahead == '=') ADVANCE(615); END_STATE(); case 77: - if (lookahead == '=') ADVANCE(616); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(647); + if (lookahead == '=') ADVANCE(615); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(646); END_STATE(); case 78: - if (lookahead == '=') ADVANCE(631); + if (lookahead == '=') ADVANCE(630); END_STATE(); case 79: - if (lookahead == '=') ADVANCE(635); + if (lookahead == '=') ADVANCE(634); END_STATE(); case 80: - if (lookahead == '=') ADVANCE(211); + if (lookahead == '=') ADVANCE(209); END_STATE(); case 81: - if (lookahead == '=') ADVANCE(213); + if (lookahead == '=') ADVANCE(211); END_STATE(); case 82: - if (lookahead == '=') ADVANCE(210); + if (lookahead == '=') ADVANCE(208); END_STATE(); case 83: - if (lookahead == '=') ADVANCE(615); + if (lookahead == '=') ADVANCE(614); END_STATE(); case 84: - if (lookahead == '=') ADVANCE(208); + if (lookahead == '=') ADVANCE(206); if (lookahead == '?') ADVANCE(92); END_STATE(); case 85: - if (lookahead == '=') ADVANCE(629); + if (lookahead == '=') ADVANCE(628); END_STATE(); case 86: - if (lookahead == '=') ADVANCE(636); + if (lookahead == '=') ADVANCE(635); END_STATE(); case 87: - if (lookahead == '=') ADVANCE(637); + if (lookahead == '=') ADVANCE(636); END_STATE(); case 88: - if (lookahead == '=') ADVANCE(632); + if (lookahead == '=') ADVANCE(631); END_STATE(); case 89: - if (lookahead == '=') ADVANCE(630); + if (lookahead == '=') ADVANCE(629); END_STATE(); case 90: - if (lookahead == '=') ADVANCE(634); + if (lookahead == '=') ADVANCE(633); END_STATE(); case 91: - if (lookahead == '=') ADVANCE(633); + if (lookahead == '=') ADVANCE(632); END_STATE(); case 92: - if (lookahead == '=') ADVANCE(209); + if (lookahead == '=') ADVANCE(207); END_STATE(); case 93: - if (lookahead == '>') ADVANCE(532); + if (lookahead == '>') ADVANCE(531); END_STATE(); case 94: - if (lookahead == '>') ADVANCE(531); + if (lookahead == '>') ADVANCE(530); END_STATE(); case 95: - if (lookahead == '>') ADVANCE(507); + if (lookahead == '>') ADVANCE(506); END_STATE(); case 96: if (lookahead == '>') ADVANCE(91); END_STATE(); case 97: - if (lookahead == '@') ADVANCE(499); + if (lookahead == 'A') ADVANCE(117); END_STATE(); case 98: - if (lookahead == 'A') ADVANCE(118); + if (lookahead == 'A') ADVANCE(102); END_STATE(); case 99: - if (lookahead == 'A') ADVANCE(103); + if (lookahead == 'B') ADVANCE(100); + if (lookahead == '{') ADVANCE(501); END_STATE(); case 100: - if (lookahead == 'B') ADVANCE(101); - if (lookahead == '{') ADVANCE(502); + if (lookahead == 'B') ADVANCE(122); END_STATE(); case 101: - if (lookahead == 'B') ADVANCE(123); + if (lookahead == 'D') ADVANCE(107); END_STATE(); case 102: - if (lookahead == 'D') ADVANCE(108); + if (lookahead == 'D') ADVANCE(101); END_STATE(); case 103: - if (lookahead == 'D') ADVANCE(102); + if (lookahead == 'E') ADVANCE(109); END_STATE(); case 104: - if (lookahead == 'E') ADVANCE(110); + if (lookahead == 'G') ADVANCE(106); END_STATE(); case 105: - if (lookahead == 'G') ADVANCE(107); + if (lookahead == 'H') ADVANCE(114); END_STATE(); case 106: - if (lookahead == 'H') ADVANCE(115); + if (lookahead == 'H') ADVANCE(489); END_STATE(); case 107: - if (lookahead == 'H') ADVANCE(490); + if (lookahead == 'I') ADVANCE(119); END_STATE(); case 108: - if (lookahead == 'I') ADVANCE(120); + if (lookahead == 'I') ADVANCE(112); END_STATE(); case 109: - if (lookahead == 'I') ADVANCE(113); + if (lookahead == 'N') ADVANCE(121); END_STATE(); case 110: - if (lookahead == 'N') ADVANCE(122); + if (lookahead == 'N') ADVANCE(116); END_STATE(); case 111: - if (lookahead == 'N') ADVANCE(117); + if (lookahead == 'O') ADVANCE(120); END_STATE(); case 112: - if (lookahead == 'O') ADVANCE(121); + if (lookahead == 'O') ADVANCE(110); END_STATE(); case 113: - if (lookahead == 'O') ADVANCE(111); + if (lookahead == 'P') ADVANCE(97); END_STATE(); case 114: - if (lookahead == 'P') ADVANCE(98); + if (lookahead == 'R') ADVANCE(111); END_STATE(); case 115: - if (lookahead == 'R') ADVANCE(112); + if (lookahead == 'S') ADVANCE(118); END_STATE(); case 116: - if (lookahead == 'S') ADVANCE(119); + if (lookahead == 'S') ADVANCE(490); END_STATE(); case 117: - if (lookahead == 'S') ADVANCE(491); + if (lookahead == 'S') ADVANCE(115); END_STATE(); case 118: - if (lookahead == 'S') ADVANCE(116); + if (lookahead == 'T') ADVANCE(105); END_STATE(); case 119: - if (lookahead == 'T') ADVANCE(106); + if (lookahead == 'T') ADVANCE(108); END_STATE(); case 120: - if (lookahead == 'T') ADVANCE(109); + if (lookahead == 'U') ADVANCE(104); END_STATE(); case 121: - if (lookahead == 'U') ADVANCE(105); + if (lookahead == 'V') ADVANCE(123); END_STATE(); case 122: - if (lookahead == 'V') ADVANCE(124); + if (lookahead == '_') ADVANCE(103); END_STATE(); case 123: - if (lookahead == '_') ADVANCE(104); + if (lookahead == '_') ADVANCE(113); END_STATE(); case 124: - if (lookahead == '_') ADVANCE(114); + if (lookahead == 'a') ADVANCE(143); END_STATE(); case 125: - if (lookahead == 'a') ADVANCE(144); + if (lookahead == 'c') ADVANCE(561); END_STATE(); case 126: - if (lookahead == 'c') ADVANCE(562); + if (lookahead == 'c') ADVANCE(130); END_STATE(); case 127: - if (lookahead == 'c') ADVANCE(131); + if (lookahead == 'd') ADVANCE(579); END_STATE(); case 128: - if (lookahead == 'd') ADVANCE(580); + if (lookahead == 'e') ADVANCE(559); END_STATE(); case 129: - if (lookahead == 'e') ADVANCE(560); + if (lookahead == 'e') ADVANCE(466); END_STATE(); case 130: - if (lookahead == 'e') ADVANCE(467); + if (lookahead == 'e') ADVANCE(155); END_STATE(); case 131: - if (lookahead == 'e') ADVANCE(156); + if (lookahead == 'e') ADVANCE(136); END_STATE(); case 132: - if (lookahead == 'e') ADVANCE(137); + if (lookahead == 'e') ADVANCE(158); END_STATE(); case 133: - if (lookahead == 'e') ADVANCE(159); + if (lookahead == 'f') ADVANCE(554); + if (lookahead == 'm') ADVANCE(154); + if (lookahead == 'n') ADVANCE(551); + if (lookahead == 's') ADVANCE(620); END_STATE(); case 134: - if (lookahead == 'f') ADVANCE(555); - if (lookahead == 'm') ADVANCE(155); - if (lookahead == 'n') ADVANCE(552); - if (lookahead == 's') ADVANCE(621); + if (lookahead == 'f') ADVANCE(554); + if (lookahead == 'n') ADVANCE(551); + if (lookahead == 's') ADVANCE(620); END_STATE(); case 135: - if (lookahead == 'f') ADVANCE(555); - if (lookahead == 'n') ADVANCE(552); - if (lookahead == 's') ADVANCE(621); + if (lookahead == 'f') ADVANCE(167); END_STATE(); case 136: - if (lookahead == 'f') ADVANCE(168); + if (lookahead == 'f') ADVANCE(153); END_STATE(); case 137: - if (lookahead == 'f') ADVANCE(154); + if (lookahead == 'h') ADVANCE(574); END_STATE(); case 138: - if (lookahead == 'h') ADVANCE(575); + if (lookahead == 'i') ADVANCE(147); + if (lookahead == 'o') ADVANCE(157); + if (lookahead == 'r') ADVANCE(150); END_STATE(); case 139: - if (lookahead == 'i') ADVANCE(148); - if (lookahead == 'o') ADVANCE(158); - if (lookahead == 'r') ADVANCE(151); + if (lookahead == 'i') ADVANCE(166); END_STATE(); case 140: - if (lookahead == 'i') ADVANCE(167); + if (lookahead == 'l') ADVANCE(162); END_STATE(); case 141: - if (lookahead == 'l') ADVANCE(163); + if (lookahead == 'l') ADVANCE(162); + if (lookahead == 'x') ADVANCE(126); END_STATE(); case 142: - if (lookahead == 'l') ADVANCE(163); - if (lookahead == 'x') ADVANCE(127); + if (lookahead == 'l') ADVANCE(168); END_STATE(); case 143: - if (lookahead == 'l') ADVANCE(169); + if (lookahead == 'l') ADVANCE(142); END_STATE(); case 144: - if (lookahead == 'l') ADVANCE(143); + if (lookahead == 'm') ADVANCE(514); END_STATE(); case 145: - if (lookahead == 'm') ADVANCE(515); + if (lookahead == 'n') ADVANCE(127); + if (lookahead == 's') ADVANCE(519); END_STATE(); case 146: - if (lookahead == 'n') ADVANCE(128); - if (lookahead == 's') ADVANCE(520); + if (lookahead == 'n') ADVANCE(127); + if (lookahead == 's') ADVANCE(521); END_STATE(); case 147: - if (lookahead == 'n') ADVANCE(128); - if (lookahead == 's') ADVANCE(522); + if (lookahead == 'n') ADVANCE(124); END_STATE(); case 148: if (lookahead == 'n') ADVANCE(125); END_STATE(); case 149: - if (lookahead == 'n') ADVANCE(126); + if (lookahead == 'o') ADVANCE(163); END_STATE(); case 150: - if (lookahead == 'o') ADVANCE(164); + if (lookahead == 'o') ADVANCE(144); END_STATE(); case 151: - if (lookahead == 'o') ADVANCE(145); + if (lookahead == 'o') ADVANCE(157); END_STATE(); case 152: - if (lookahead == 'o') ADVANCE(158); + if (lookahead == 'o') ADVANCE(160); END_STATE(); case 153: if (lookahead == 'o') ADVANCE(161); END_STATE(); case 154: - if (lookahead == 'o') ADVANCE(162); + if (lookahead == 'p') ADVANCE(152); END_STATE(); case 155: - if (lookahead == 'p') ADVANCE(153); + if (lookahead == 'p') ADVANCE(164); END_STATE(); case 156: - if (lookahead == 'p') ADVANCE(165); + if (lookahead == 'r') ADVANCE(582); END_STATE(); case 157: - if (lookahead == 'r') ADVANCE(583); + if (lookahead == 'r') ADVANCE(563); END_STATE(); case 158: - if (lookahead == 'r') ADVANCE(564); + if (lookahead == 'r') ADVANCE(464); END_STATE(); case 159: - if (lookahead == 'r') ADVANCE(465); + if (lookahead == 'r') ADVANCE(150); END_STATE(); case 160: - if (lookahead == 'r') ADVANCE(151); + if (lookahead == 'r') ADVANCE(165); END_STATE(); case 161: - if (lookahead == 'r') ADVANCE(166); + if (lookahead == 'r') ADVANCE(129); END_STATE(); case 162: - if (lookahead == 'r') ADVANCE(130); + if (lookahead == 's') ADVANCE(128); END_STATE(); case 163: - if (lookahead == 's') ADVANCE(129); + if (lookahead == 't') ADVANCE(576); END_STATE(); case 164: - if (lookahead == 't') ADVANCE(577); + if (lookahead == 't') ADVANCE(569); END_STATE(); case 165: - if (lookahead == 't') ADVANCE(570); + if (lookahead == 't') ADVANCE(508); END_STATE(); case 166: - if (lookahead == 't') ADVANCE(509); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 167: - if (lookahead == 't') ADVANCE(138); + if (lookahead == 't') ADVANCE(132); END_STATE(); case 168: - if (lookahead == 't') ADVANCE(133); + if (lookahead == 'y') ADVANCE(572); END_STATE(); case 169: - if (lookahead == 'y') ADVANCE(573); + if (lookahead == '{') ADVANCE(501); END_STATE(); case 170: - if (lookahead == '{') ADVANCE(502); + if (lookahead == '{') ADVANCE(500); END_STATE(); case 171: - if (lookahead == '{') ADVANCE(501); + if (lookahead == '{') ADVANCE(190); END_STATE(); case 172: - if (lookahead == '{') ADVANCE(192); + if (lookahead == '}') ADVANCE(640); + if (lookahead != 0) ADVANCE(172); END_STATE(); case 173: - if (lookahead == '{') ADVANCE(97); + if (lookahead == 0 || + lookahead == '\n') ADVANCE(837); + if (lookahead == '\r') ADVANCE(13); END_STATE(); case 174: - if (lookahead == '}') ADVANCE(641); - if (lookahead != 0) ADVANCE(174); + if (lookahead == '+' || + lookahead == '-') ADVANCE(177); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(670); END_STATE(); case 175: - if (!eof && lookahead == 0 || - lookahead == '\n') ADVANCE(838); - if (lookahead == '\r') ADVANCE(10); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(485); + if (lookahead == '\r') ADVANCE(485); + if (lookahead == '"') ADVANCE(246); + if (lookahead == '#') ADVANCE(481); + if (lookahead == '$') ADVANCE(491); + if (lookahead == '\\') ADVANCE(484); + if (lookahead != 0) ADVANCE(486); END_STATE(); case 176: - if (lookahead == '+' || - lookahead == '-') ADVANCE(179); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(494); + if (lookahead == '\r') ADVANCE(494); + if (lookahead == '"') ADVANCE(496); + if (lookahead == '#') ADVANCE(493); + if (lookahead == '$') ADVANCE(99); + if (lookahead == '\'') ADVANCE(492); + if (lookahead == '\\') ADVANCE(6); + if (lookahead != 0) ADVANCE(497); END_STATE(); case 177: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(486); - if (lookahead == '\r') ADVANCE(486); - if (lookahead == '"') ADVANCE(247); - if (lookahead == '#') ADVANCE(482); - if (lookahead == '$') ADVANCE(492); - if (lookahead == '\\') ADVANCE(485); - if (lookahead != 0) ADVANCE(487); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(670); END_STATE(); case 178: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(495); - if (lookahead == '\r') ADVANCE(495); - if (lookahead == '"') ADVANCE(497); - if (lookahead == '#') ADVANCE(494); - if (lookahead == '$') ADVANCE(100); - if (lookahead == '\'') ADVANCE(493); - if (lookahead == '\\') ADVANCE(6); - if (lookahead != 0) ADVANCE(498); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(640); END_STATE(); case 179: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(178); END_STATE(); case 180: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(641); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(640); END_STATE(); case 181: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(180); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(180); END_STATE(); case 182: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(641); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(181); END_STATE(); case 183: if (('0' <= lookahead && lookahead <= '9') || @@ -13900,3754 +14028,4171 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(186); END_STATE(); case 188: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(187); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(646); END_STATE(); case 189: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(188); - END_STATE(); - case 190: - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(647); - END_STATE(); - case 191: if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(244); + lookahead != ' ') ADVANCE(243); END_STATE(); - case 192: + case 190: if (lookahead != 0 && - lookahead != '}') ADVANCE(174); - END_STATE(); - case 193: - if (eof) ADVANCE(195); - if (!eof && lookahead == 0) ADVANCE(202); - if (lookahead == '!') ADVANCE(251); - if (lookahead == '"') ADVANCE(247); - if (lookahead == '#') ADVANCE(969); - if (lookahead == '$') ADVANCE(492); - if (lookahead == '%') ADVANCE(598); - if (lookahead == '&') ADVANCE(606); - if (lookahead == '\'') ADVANCE(493); - if (lookahead == '(') ADVANCE(478); - if (lookahead == ')') ADVANCE(479); - if (lookahead == '*') ADVANCE(526); - if (lookahead == '+') ADVANCE(587); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '-') ADVANCE(588); - if (lookahead == '.') ADVANCE(513); - if (lookahead == '/') ADVANCE(595); - if (lookahead == '0') ADVANCE(665); - if (lookahead == ':') ADVANCE(229); - if (lookahead == ';') ADVANCE(508); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '=') ADVANCE(206); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(252); - if (lookahead == '@') ADVANCE(593); - if (lookahead == 'E') ADVANCE(281); - if (lookahead == 'F') ADVANCE(293); - if (lookahead == 'I') ADVANCE(264); - if (lookahead == 'N') ADVANCE(394); - if (lookahead == 'O') ADVANCE(280); - if (lookahead == 'T') ADVANCE(409); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(249); - if (lookahead == ']') ADVANCE(227); - if (lookahead == '^') ADVANCE(608); - if (lookahead == '_') ADVANCE(282); - if (lookahead == 'a') ADVANCE(311); - if (lookahead == 'b') ADVANCE(332); - if (lookahead == 'c') ADVANCE(396); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(365); - if (lookahead == 'f') ADVANCE(289); - if (lookahead == 'g') ADVANCE(369); - if (lookahead == 'i') ADVANCE(345); - if (lookahead == 'l') ADVANCE(290); - if (lookahead == 'm') ADVANCE(295); - if (lookahead == 'n') ADVANCE(391); - if (lookahead == 'o') ADVANCE(410); - if (lookahead == 'p') ADVANCE(291); - if (lookahead == 'r') ADVANCE(294); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(381); - if (lookahead == 'w') ADVANCE(352); - if (lookahead == 'y') ADVANCE(355); - if (lookahead == '{') ADVANCE(480); - if (lookahead == '|') ADVANCE(604); - if (lookahead == '}') ADVANCE(481); - if (lookahead == '~') ADVANCE(611); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(193) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(658); - if (lookahead != 0) ADVANCE(454); + lookahead != '}') ADVANCE(172); END_STATE(); - case 194: - if (eof) ADVANCE(195); - if (lookahead == '!') ADVANCE(190); + case 191: + if (eof) ADVANCE(193); + if (lookahead == 0) ADVANCE(200); + if (lookahead == '!') ADVANCE(250); if (lookahead == '"') ADVANCE(246); - if (lookahead == '#') ADVANCE(970); - if (lookahead == '$') ADVANCE(171); - if (lookahead == '(') ADVANCE(478); - if (lookahead == ')') ADVANCE(479); - if (lookahead == ',') ADVANCE(519); - if (lookahead == '.') ADVANCE(965); - if (lookahead == ':') ADVANCE(228); - if (lookahead == ';') ADVANCE(508); + if (lookahead == '#') ADVANCE(973); + if (lookahead == '$') ADVANCE(491); + if (lookahead == '%') ADVANCE(597); + if (lookahead == '&') ADVANCE(605); + if (lookahead == '\'') ADVANCE(492); + if (lookahead == '(') ADVANCE(477); + if (lookahead == ')') ADVANCE(478); + if (lookahead == '*') ADVANCE(525); + if (lookahead == '+') ADVANCE(586); + if (lookahead == ',') ADVANCE(518); + if (lookahead == '-') ADVANCE(587); + if (lookahead == '.') ADVANCE(512); + if (lookahead == '/') ADVANCE(594); + if (lookahead == '0') ADVANCE(664); + if (lookahead == ':') ADVANCE(227); + if (lookahead == ';') ADVANCE(507); + if (lookahead == '<') ADVANCE(611); if (lookahead == '=') ADVANCE(204); - if (lookahead == 'E') ADVANCE(861); - if (lookahead == 'O') ADVANCE(860); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(175); - if (lookahead == ']') ADVANCE(227); - if (lookahead == 'a') ADVANCE(871); + if (lookahead == '>') ADVANCE(617); + if (lookahead == '?') ADVANCE(251); + if (lookahead == '@') ADVANCE(592); + if (lookahead == 'E') ADVANCE(280); + if (lookahead == 'F') ADVANCE(292); + if (lookahead == 'I') ADVANCE(263); + if (lookahead == 'N') ADVANCE(393); + if (lookahead == 'O') ADVANCE(279); + if (lookahead == 'T') ADVANCE(408); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(248); + if (lookahead == ']') ADVANCE(225); + if (lookahead == '^') ADVANCE(607); + if (lookahead == '_') ADVANCE(281); + if (lookahead == 'a') ADVANCE(310); + if (lookahead == 'b') ADVANCE(331); + if (lookahead == 'c') ADVANCE(395); + if (lookahead == 'd') ADVANCE(318); + if (lookahead == 'e') ADVANCE(364); + if (lookahead == 'f') ADVANCE(288); + if (lookahead == 'g') ADVANCE(368); + if (lookahead == 'i') ADVANCE(344); + if (lookahead == 'l') ADVANCE(289); + if (lookahead == 'm') ADVANCE(294); + if (lookahead == 'n') ADVANCE(390); + if (lookahead == 'o') ADVANCE(409); + if (lookahead == 'p') ADVANCE(290); + if (lookahead == 'r') ADVANCE(293); + if (lookahead == 't') ADVANCE(410); + if (lookahead == 'u') ADVANCE(380); + if (lookahead == 'w') ADVANCE(351); + if (lookahead == 'y') ADVANCE(354); + if (lookahead == '{') ADVANCE(479); + if (lookahead == '|') ADVANCE(603); + if (lookahead == '}') ADVANCE(480); + if (lookahead == '~') ADVANCE(610); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(191) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(657); + if (lookahead != 0) ADVANCE(453); + END_STATE(); + case 192: + if (eof) ADVANCE(193); + if (lookahead == '!') ADVANCE(188); + if (lookahead == '"') ADVANCE(245); + if (lookahead == '#') ADVANCE(974); + if (lookahead == '$') ADVANCE(170); + if (lookahead == '(') ADVANCE(477); + if (lookahead == ')') ADVANCE(478); + if (lookahead == ',') ADVANCE(518); + if (lookahead == '.') ADVANCE(969); + if (lookahead == ':') ADVANCE(226); + if (lookahead == ';') ADVANCE(507); + if (lookahead == '=') ADVANCE(202); + if (lookahead == 'E') ADVANCE(860); + if (lookahead == 'O') ADVANCE(859); + if (lookahead == '[') ADVANCE(213); + if (lookahead == '\\') ADVANCE(173); + if (lookahead == ']') ADVANCE(225); + if (lookahead == 'a') ADVANCE(870); if (lookahead == 'd') ADVANCE(874); - if (lookahead == 'e') ADVANCE(932); - if (lookahead == 'f') ADVANCE(863); - if (lookahead == 'i') ADVANCE(898); - if (lookahead == 'p') ADVANCE(933); + if (lookahead == 'e') ADVANCE(936); + if (lookahead == 'f') ADVANCE(862); + if (lookahead == 'i') ADVANCE(901); + if (lookahead == 'p') ADVANCE(937); if (lookahead == 'r') ADVANCE(875); - if (lookahead == 'u') ADVANCE(899); - if (lookahead == '}') ADVANCE(481); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(194) + if (lookahead == 'u') ADVANCE(902); + if (lookahead == '}') ADVANCE(480); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(192) if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); - case 195: + case 193: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); + case 194: + ACCEPT_TOKEN(aux_sym_recipe_token1); + if (lookahead == '\t') ADVANCE(7); + if (lookahead == '\n') ADVANCE(194); + if (lookahead == '\r') ADVANCE(8); + END_STATE(); + case 195: + ACCEPT_TOKEN(aux_sym_recipe_token1); + if (lookahead == '\n') ADVANCE(195); + if (lookahead == '\r') ADVANCE(1); + END_STATE(); case 196: ACCEPT_TOKEN(aux_sym_recipe_token1); if (lookahead == '\n') ADVANCE(196); - if (lookahead == '\r') ADVANCE(1); + if (lookahead == '\r') ADVANCE(2); END_STATE(); case 197: ACCEPT_TOKEN(aux_sym_recipe_token1); if (lookahead == '\n') ADVANCE(197); - if (lookahead == '\r') ADVANCE(7); - if (('\t' <= lookahead && lookahead <= '\f')) ADVANCE(8); + if (lookahead == '\r') ADVANCE(3); END_STATE(); case 198: ACCEPT_TOKEN(aux_sym_recipe_token1); if (lookahead == '\n') ADVANCE(198); - if (lookahead == '\r') ADVANCE(2); + if (lookahead == '\r') ADVANCE(4); END_STATE(); case 199: ACCEPT_TOKEN(aux_sym_recipe_token1); if (lookahead == '\n') ADVANCE(199); - if (lookahead == '\r') ADVANCE(3); + if (lookahead == '\r') ADVANCE(5); END_STATE(); case 200: - ACCEPT_TOKEN(aux_sym_recipe_token1); - if (lookahead == '\n') ADVANCE(200); - if (lookahead == '\r') ADVANCE(4); + ACCEPT_TOKEN(anon_sym_); END_STATE(); case 201: - ACCEPT_TOKEN(aux_sym_recipe_token1); - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(5); - END_STATE(); - case 202: - ACCEPT_TOKEN(anon_sym_NULL); - END_STATE(); - case 203: - ACCEPT_TOKEN(anon_sym_NULL); + ACCEPT_TOKEN(anon_sym_); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(244); + lookahead != ' ') ADVANCE(243); END_STATE(); - case 204: + case 202: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 205: + case 203: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '+') ADVANCE(212); - if (lookahead == '.') ADVANCE(214); + if (lookahead == '+') ADVANCE(210); + if (lookahead == '.') ADVANCE(212); END_STATE(); - case 206: + case 204: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '+') ADVANCE(212); - if (lookahead == '.') ADVANCE(214); - if (lookahead == '=') ADVANCE(615); + if (lookahead == '+') ADVANCE(210); + if (lookahead == '.') ADVANCE(212); + if (lookahead == '=') ADVANCE(614); END_STATE(); - case 207: + case 205: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(615); + if (lookahead == '=') ADVANCE(614); END_STATE(); - case 208: + case 206: ACCEPT_TOKEN(anon_sym_QMARK_EQ); END_STATE(); - case 209: + case 207: ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); - case 210: + case 208: ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); - case 211: + case 209: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 212: + case 210: ACCEPT_TOKEN(anon_sym_EQ_PLUS); END_STATE(); - case 213: + case 211: ACCEPT_TOKEN(anon_sym_DOT_EQ); END_STATE(); - case 214: + case 212: ACCEPT_TOKEN(anon_sym_EQ_DOT); END_STATE(); - case 215: + case 213: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 216: + case 214: ACCEPT_TOKEN(anon_sym_noexec); END_STATE(); - case 217: + case 215: ACCEPT_TOKEN(anon_sym_noexec); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && - lookahead != ']') ADVANCE(226); + lookahead != ']') ADVANCE(224); END_STATE(); - case 218: + case 216: ACCEPT_TOKEN(aux_sym_variable_flag_token1); - if (!eof && lookahead == 0) ADVANCE(226); - if (lookahead == '\n') ADVANCE(838); - if (lookahead == '\r') ADVANCE(10); + if (lookahead == 0) ADVANCE(224); + if (lookahead == '\n') ADVANCE(837); + if (lookahead == '\r') ADVANCE(13); if (lookahead != 0 && lookahead != ' ' && - lookahead != ']') ADVANCE(226); + lookahead != ']') ADVANCE(224); END_STATE(); - case 219: + case 217: ACCEPT_TOKEN(aux_sym_variable_flag_token1); - if (lookahead == '#') ADVANCE(225); - if (lookahead == '\\') ADVANCE(218); - if (lookahead == 'n') ADVANCE(223); - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f') ADVANCE(219); + if (lookahead == '\t') ADVANCE(217); + if (lookahead == '#') ADVANCE(223); + if (lookahead == '\\') ADVANCE(216); + if (lookahead == 'n') ADVANCE(221); if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead) && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && - lookahead != ']') ADVANCE(226); + lookahead != ']') ADVANCE(224); END_STATE(); - case 220: + case 218: ACCEPT_TOKEN(aux_sym_variable_flag_token1); - if (lookahead == 'c') ADVANCE(217); + if (lookahead == 'c') ADVANCE(215); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && - lookahead != ']') ADVANCE(226); + lookahead != ']') ADVANCE(224); END_STATE(); - case 221: + case 219: ACCEPT_TOKEN(aux_sym_variable_flag_token1); - if (lookahead == 'e') ADVANCE(224); + if (lookahead == 'e') ADVANCE(222); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && - lookahead != ']') ADVANCE(226); + lookahead != ']') ADVANCE(224); END_STATE(); - case 222: + case 220: ACCEPT_TOKEN(aux_sym_variable_flag_token1); - if (lookahead == 'e') ADVANCE(220); + if (lookahead == 'e') ADVANCE(218); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && - lookahead != ']') ADVANCE(226); + lookahead != ']') ADVANCE(224); END_STATE(); - case 223: + case 221: ACCEPT_TOKEN(aux_sym_variable_flag_token1); - if (lookahead == 'o') ADVANCE(221); + if (lookahead == 'o') ADVANCE(219); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && - lookahead != ']') ADVANCE(226); + lookahead != ']') ADVANCE(224); END_STATE(); - case 224: + case 222: ACCEPT_TOKEN(aux_sym_variable_flag_token1); - if (lookahead == 'x') ADVANCE(222); + if (lookahead == 'x') ADVANCE(220); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && - lookahead != ']') ADVANCE(226); + lookahead != ']') ADVANCE(224); END_STATE(); - case 225: + case 223: ACCEPT_TOKEN(aux_sym_variable_flag_token1); if (lookahead == '\r' || lookahead == ' ' || - lookahead == ']') ADVANCE(970); + lookahead == ']') ADVANCE(974); if (lookahead != 0 && - lookahead != '\n') ADVANCE(225); + lookahead != '\n') ADVANCE(223); END_STATE(); - case 226: + case 224: ACCEPT_TOKEN(aux_sym_variable_flag_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && - lookahead != ']') ADVANCE(226); + lookahead != ']') ADVANCE(224); END_STATE(); - case 227: + case 225: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 228: + case 226: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 229: + case 227: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '=') ADVANCE(210); + if (lookahead == '=') ADVANCE(208); END_STATE(); - case 230: + case 228: ACCEPT_TOKEN(anon_sym_append); END_STATE(); - case 231: + case 229: ACCEPT_TOKEN(anon_sym_append); - if (lookahead == '.') ADVANCE(965); + if (lookahead == '.') ADVANCE(969); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); - case 232: + case 230: ACCEPT_TOKEN(anon_sym_prepend); END_STATE(); - case 233: + case 231: ACCEPT_TOKEN(anon_sym_prepend); - if (lookahead == '.') ADVANCE(965); + if (lookahead == '.') ADVANCE(969); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); - case 234: + case 232: ACCEPT_TOKEN(anon_sym_remove); END_STATE(); - case 235: + case 233: ACCEPT_TOKEN(anon_sym_remove); - if (lookahead == '.') ADVANCE(965); + if (lookahead == '.') ADVANCE(969); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); - case 236: + case 234: ACCEPT_TOKEN(anon_sym_unset); END_STATE(); - case 237: + case 235: ACCEPT_TOKEN(anon_sym_unset); - if (lookahead == '.') ADVANCE(965); + if (lookahead == '.') ADVANCE(969); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); - case 238: + case 236: ACCEPT_TOKEN(anon_sym_inherit); - if (lookahead == '.') ADVANCE(965); + if (lookahead == '.') ADVANCE(969); + if (lookahead == '_') ADVANCE(873); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); + END_STATE(); + case 237: + ACCEPT_TOKEN(anon_sym_inherit_defer); + if (lookahead == '.') ADVANCE(969); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); - case 239: + case 238: ACCEPT_TOKEN(sym_inherit_path); - if (!eof && lookahead == 0) ADVANCE(203); - if (lookahead == '\n') ADVANCE(197); - if (lookahead == '\r') ADVANCE(7); - if (lookahead == '#') ADVANCE(243); - if (lookahead == '$') ADVANCE(242); - if (lookahead == '\\') ADVANCE(240); - if (('\t' <= lookahead && lookahead <= '\f')) ADVANCE(239); + if (lookahead == 0) ADVANCE(201); + if (lookahead == '\t') ADVANCE(238); + if (lookahead == '\n') ADVANCE(194); + if (lookahead == '\r') ADVANCE(8); + if (lookahead == '#') ADVANCE(242); + if (lookahead == '$') ADVANCE(241); + if (lookahead == '\\') ADVANCE(239); if (lookahead != 0 && - lookahead != ' ') ADVANCE(244); + lookahead != ' ') ADVANCE(243); END_STATE(); - case 240: + case 239: ACCEPT_TOKEN(sym_inherit_path); - if (!eof && lookahead == 0) ADVANCE(244); - if (lookahead == '\n') ADVANCE(838); - if (lookahead == '\r') ADVANCE(10); + if (lookahead == 0) ADVANCE(243); + if (lookahead == '\n') ADVANCE(837); + if (lookahead == '\r') ADVANCE(13); if (lookahead != 0 && - lookahead != ' ') ADVANCE(244); + lookahead != ' ') ADVANCE(243); END_STATE(); - case 241: + case 240: ACCEPT_TOKEN(sym_inherit_path); - if (lookahead == '#') ADVANCE(243); - if (lookahead == '$') ADVANCE(242); - if (lookahead == '\\') ADVANCE(240); - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f') ADVANCE(241); + if (lookahead == '\t') ADVANCE(240); + if (lookahead == '#') ADVANCE(242); + if (lookahead == '$') ADVANCE(241); + if (lookahead == '\\') ADVANCE(239); if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(244); + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') ADVANCE(243); END_STATE(); - case 242: + case 241: ACCEPT_TOKEN(sym_inherit_path); - if (lookahead == '{') ADVANCE(503); + if (lookahead == '{') ADVANCE(502); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(244); + lookahead != ' ') ADVANCE(243); END_STATE(); - case 243: + case 242: ACCEPT_TOKEN(sym_inherit_path); if (lookahead == '\r' || - lookahead == ' ') ADVANCE(970); + lookahead == ' ') ADVANCE(974); if (lookahead != 0 && - lookahead != '\n') ADVANCE(243); + lookahead != '\n') ADVANCE(242); END_STATE(); - case 244: + case 243: ACCEPT_TOKEN(sym_inherit_path); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(244); + lookahead != ' ') ADVANCE(243); END_STATE(); - case 245: + case 244: ACCEPT_TOKEN(anon_sym_INHERIT); END_STATE(); - case 246: + case 245: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 247: + case 246: ACCEPT_TOKEN(anon_sym_DQUOTE); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(35); + lookahead != '\\') ADVANCE(38); END_STATE(); - case 248: + case 247: ACCEPT_TOKEN(anon_sym_include); - if (lookahead == '.') ADVANCE(965); + if (lookahead == '.') ADVANCE(969); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); + END_STATE(); + case 248: + ACCEPT_TOKEN(aux_sym_include_directive_token1); + if (lookahead == 0) ADVANCE(837); + if (lookahead == '\n') ADVANCE(837); + if (lookahead == '\r') ADVANCE(13); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != ' ' && + lookahead != '"' && + lookahead != '$' && + lookahead != '{' && + lookahead != '}') ADVANCE(453); END_STATE(); case 249: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (!eof && lookahead == 0) ADVANCE(838); - if (lookahead == '\n') ADVANCE(838); - if (lookahead == '\r') ADVANCE(10); + if (lookahead == '.') ADVANCE(639); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 250: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == '.') ADVANCE(640); + if (lookahead == '=') ADVANCE(615); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(646); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 251: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == '=') ADVANCE(616); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(647); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '?') ADVANCE(252); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 252: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == '=') ADVANCE(208); - if (lookahead == '?') ADVANCE(253); + if (lookahead == '=') ADVANCE(207); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 253: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == '=') ADVANCE(209); + if (lookahead == 'C') ADVANCE(277); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 254: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'C') ADVANCE(278); + if (lookahead == 'D') ADVANCE(256); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 255: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'D') ADVANCE(257); + if (lookahead == 'E') ADVANCE(272); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 256: ACCEPT_TOKEN(aux_sym_include_directive_token1); if (lookahead == 'E') ADVANCE(273); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 257: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'E') ADVANCE(274); + if (lookahead == 'E') ADVANCE(270); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 258: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'E') ADVANCE(271); + if (lookahead == 'F') ADVANCE(278); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 259: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'F') ADVANCE(279); + if (lookahead == 'H') ADVANCE(257); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 260: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'H') ADVANCE(258); + if (lookahead == 'I') ADVANCE(254); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 261: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'I') ADVANCE(255); + if (lookahead == 'I') ADVANCE(267); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 262: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'I') ADVANCE(268); + if (lookahead == 'I') ADVANCE(275); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 263: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'I') ADVANCE(276); + if (lookahead == 'N') ADVANCE(259); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 264: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'N') ADVANCE(260); + if (lookahead == 'N') ADVANCE(253); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 265: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'N') ADVANCE(254); + if (lookahead == 'N') ADVANCE(274); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 266: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'N') ADVANCE(275); + if (lookahead == 'O') ADVANCE(269); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 267: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'O') ADVANCE(270); + if (lookahead == 'O') ADVANCE(265); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 268: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'O') ADVANCE(266); + if (lookahead == 'P') ADVANCE(266); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 269: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'P') ADVANCE(267); + if (lookahead == 'R') ADVANCE(276); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 270: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'R') ADVANCE(277); + if (lookahead == 'R') ADVANCE(262); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 271: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'R') ADVANCE(263); + if (lookahead == 'R') ADVANCE(260); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 272: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'R') ADVANCE(261); + if (lookahead == 'R') ADVANCE(271); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 273: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'R') ADVANCE(272); + if (lookahead == 'S') ADVANCE(458); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 274: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'S') ADVANCE(459); + if (lookahead == 'S') ADVANCE(460); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 275: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'S') ADVANCE(461); + if (lookahead == 'T') ADVANCE(244); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 276: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'T') ADVANCE(245); + if (lookahead == 'T') ADVANCE(285); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 277: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'T') ADVANCE(286); + if (lookahead == 'T') ADVANCE(261); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 278: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'T') ADVANCE(262); + if (lookahead == 'U') ADVANCE(264); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 279: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'U') ADVANCE(265); + if (lookahead == 'V') ADVANCE(255); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 280: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'V') ADVANCE(256); + if (lookahead == 'X') ADVANCE(268); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 281: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'X') ADVANCE(269); + if (lookahead == '_') ADVANCE(347); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 282: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == '_') ADVANCE(348); + if (lookahead == '_') ADVANCE(450); + if (lookahead == '0' || + lookahead == '1') ADVANCE(658); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 283: ACCEPT_TOKEN(aux_sym_include_directive_token1); if (lookahead == '_') ADVANCE(451); - if (lookahead == '0' || - lookahead == '1') ADVANCE(659); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(659); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 284: ACCEPT_TOKEN(aux_sym_include_directive_token1); if (lookahead == '_') ADVANCE(452); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(660); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(660); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 285: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == '_') ADVANCE(453); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(661); + if (lookahead == '_') ADVANCE(258); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 286: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == '_') ADVANCE(259); + if (lookahead == '_') ADVANCE(516); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 287: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == '_') ADVANCE(517); + if (lookahead == '_') ADVANCE(286); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 288: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == '_') ADVANCE(287); + if (lookahead == 'a') ADVANCE(363); + if (lookahead == 'i') ADVANCE(388); + if (lookahead == 'o') ADVANCE(411); + if (lookahead == 'r') ADVANCE(394); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 289: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'a') ADVANCE(364); - if (lookahead == 'i') ADVANCE(389); - if (lookahead == 'o') ADVANCE(412); - if (lookahead == 'r') ADVANCE(395); + if (lookahead == 'a') ADVANCE(376); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 290: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'a') ADVANCE(377); + if (lookahead == 'a') ADVANCE(423); + if (lookahead == 'r') ADVANCE(343); + if (lookahead == 'y') ADVANCE(427); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 291: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'a') ADVANCE(424); - if (lookahead == 'r') ADVANCE(344); - if (lookahead == 'y') ADVANCE(428); + if (lookahead == 'a') ADVANCE(623); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 292: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'a') ADVANCE(624); + if (lookahead == 'a') ADVANCE(374); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 293: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'a') ADVANCE(375); + if (lookahead == 'a') ADVANCE(360); + if (lookahead == 'e') ADVANCE(377); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 294: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'a') ADVANCE(361); - if (lookahead == 'e') ADVANCE(378); + if (lookahead == 'a') ADVANCE(435); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 295: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'a') ADVANCE(436); + if (lookahead == 'a') ADVANCE(361); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 296: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'a') ADVANCE(362); + if (lookahead == 'a') ADVANCE(357); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 297: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'a') ADVANCE(358); + if (lookahead == 'a') ADVANCE(422); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 298: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'a') ADVANCE(423); + if (lookahead == 'a') ADVANCE(370); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 299: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'a') ADVANCE(371); + if (lookahead == 'a') ADVANCE(365); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 300: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'a') ADVANCE(366); + if (lookahead == 'a') ADVANCE(385); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 301: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'a') ADVANCE(386); + if (lookahead == 'a') ADVANCE(366); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 302: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'a') ADVANCE(367); + if (lookahead == 'b') ADVANCE(316); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 303: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'b') ADVANCE(317); + if (lookahead == 'b') ADVANCE(299); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 304: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'b') ADVANCE(300); + if (lookahead == 'c') ADVANCE(549); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 305: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'c') ADVANCE(550); + if (lookahead == 'c') ADVANCE(561); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 306: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'c') ADVANCE(562); + if (lookahead == 'c') ADVANCE(214); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 307: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'c') ADVANCE(216); + if (lookahead == 'c') ADVANCE(350); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 308: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'c') ADVANCE(351); + if (lookahead == 'c') ADVANCE(333); + if (lookahead == 'e') ADVANCE(304); + if (lookahead == 'p') ADVANCE(398); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 309: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'c') ADVANCE(334); - if (lookahead == 'e') ADVANCE(305); - if (lookahead == 'p') ADVANCE(399); + if (lookahead == 'c') ADVANCE(301); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 310: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'c') ADVANCE(302); + if (lookahead == 'd') ADVANCE(311); + if (lookahead == 'f') ADVANCE(438); + if (lookahead == 'n') ADVANCE(312); + if (lookahead == 'p') ADVANCE(403); + if (lookahead == 's') ADVANCE(522); + if (lookahead == 'w') ADVANCE(296); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 311: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'd') ADVANCE(312); - if (lookahead == 'f') ADVANCE(439); - if (lookahead == 'n') ADVANCE(313); - if (lookahead == 'p') ADVANCE(404); - if (lookahead == 's') ADVANCE(523); - if (lookahead == 'w') ADVANCE(297); + if (lookahead == 'd') ADVANCE(352); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 312: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'd') ADVANCE(353); + if (lookahead == 'd') ADVANCE(579); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 313: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'd') ADVANCE(580); + if (lookahead == 'd') ADVANCE(637); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 314: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'd') ADVANCE(638); + if (lookahead == 'd') ADVANCE(228); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 315: ACCEPT_TOKEN(aux_sym_include_directive_token1); if (lookahead == 'd') ADVANCE(230); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 316: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'd') ADVANCE(232); + if (lookahead == 'd') ADVANCE(291); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 317: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'd') ADVANCE(292); + if (lookahead == 'd') ADVANCE(373); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 318: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'd') ADVANCE(374); + if (lookahead == 'e') ADVANCE(345); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 319: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(346); + if (lookahead == 'e') ADVANCE(447); + if (lookahead == 'n') ADVANCE(371); + if (lookahead == 't') ADVANCE(576); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 320: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(448); - if (lookahead == 'n') ADVANCE(372); - if (lookahead == 't') ADVANCE(577); + if (lookahead == 'e') ADVANCE(679); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 321: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(680); + if (lookahead == 'e') ADVANCE(675); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 322: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(676); + if (lookahead == 'e') ADVANCE(559); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 323: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(560); + if (lookahead == 'e') ADVANCE(651); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 324: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(652); + if (lookahead == 'e') ADVANCE(677); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 325: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(678); + if (lookahead == 'e') ADVANCE(537); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 326: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(538); + if (lookahead == 'e') ADVANCE(565); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 327: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(566); + if (lookahead == 'e') ADVANCE(466); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 328: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(467); + if (lookahead == 'e') ADVANCE(232); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 329: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(234); + if (lookahead == 'e') ADVANCE(454); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 330: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(455); + if (lookahead == 'e') ADVANCE(543); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 331: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(544); + if (lookahead == 'e') ADVANCE(348); + if (lookahead == 'r') ADVANCE(337); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 332: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(349); - if (lookahead == 'r') ADVANCE(338); + if (lookahead == 'e') ADVANCE(287); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 333: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(288); + if (lookahead == 'e') ADVANCE(404); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 334: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(405); + if (lookahead == 'e') ADVANCE(412); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 335: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(413); + if (lookahead == 'e') ADVANCE(369); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 336: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(370); + if (lookahead == 'e') ADVANCE(306); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 337: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(307); + if (lookahead == 'e') ADVANCE(295); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 338: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(296); + if (lookahead == 'e') ADVANCE(383); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 339: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(384); + if (lookahead == 'e') ADVANCE(414); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 340: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(415); + if (lookahead == 'e') ADVANCE(413); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 341: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(414); + if (lookahead == 'e') ADVANCE(386); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 342: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(387); + if (lookahead == 'e') ADVANCE(430); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 343: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(431); + if (lookahead == 'e') ADVANCE(406); + if (lookahead == 'i') ADVANCE(387); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 344: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'e') ADVANCE(407); - if (lookahead == 'i') ADVANCE(388); + if (lookahead == 'f') ADVANCE(554); + if (lookahead == 'm') ADVANCE(407); + if (lookahead == 'n') ADVANCE(551); + if (lookahead == 's') ADVANCE(620); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 345: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'f') ADVANCE(555); - if (lookahead == 'm') ADVANCE(408); - if (lookahead == 'n') ADVANCE(552); - if (lookahead == 's') ADVANCE(621); + if (lookahead == 'f') ADVANCE(503); + if (lookahead == 'l') ADVANCE(535); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 346: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'f') ADVANCE(504); - if (lookahead == 'l') ADVANCE(536); + if (lookahead == 'f') ADVANCE(557); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 347: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'f') ADVANCE(558); + if (lookahead == 'f') ADVANCE(442); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 348: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'f') ADVANCE(443); + if (lookahead == 'f') ADVANCE(396); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 349: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'f') ADVANCE(397); + if (lookahead == 'h') ADVANCE(574); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 350: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'h') ADVANCE(575); + if (lookahead == 'h') ADVANCE(649); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 351: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'h') ADVANCE(650); + if (lookahead == 'h') ADVANCE(355); + if (lookahead == 'i') ADVANCE(436); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 352: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'h') ADVANCE(356); - if (lookahead == 'i') ADVANCE(437); + if (lookahead == 'h') ADVANCE(300); + if (lookahead == 't') ADVANCE(297); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 353: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'h') ADVANCE(301); - if (lookahead == 't') ADVANCE(298); + if (lookahead == 'h') ADVANCE(400); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 354: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'h') ADVANCE(401); + if (lookahead == 'i') ADVANCE(335); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 355: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'i') ADVANCE(336); + if (lookahead == 'i') ADVANCE(372); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 356: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'i') ADVANCE(373); + if (lookahead == 'i') ADVANCE(346); + if (lookahead == 's') ADVANCE(322); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 357: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'i') ADVANCE(347); - if (lookahead == 's') ADVANCE(323); + if (lookahead == 'i') ADVANCE(428); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 358: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'i') ADVANCE(429); + if (lookahead == 'i') ADVANCE(389); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 359: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'i') ADVANCE(390); + if (lookahead == 'i') ADVANCE(419); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 360: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'i') ADVANCE(426); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 361: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'i') ADVANCE(427); + if (lookahead == 'k') ADVANCE(541); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 362: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'k') ADVANCE(542); + if (lookahead == 'k') ADVANCE(462); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 363: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'k') ADVANCE(463); + if (lookahead == 'k') ADVANCE(339); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 364: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'k') ADVANCE(340); + if (lookahead == 'l') ADVANCE(356); + if (lookahead == 'x') ADVANCE(308); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 365: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'l') ADVANCE(357); - if (lookahead == 'x') ADVANCE(309); + if (lookahead == 'l') ADVANCE(545); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 366: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'l') ADVANCE(546); + if (lookahead == 'l') ADVANCE(547); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 367: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'l') ADVANCE(548); + if (lookahead == 'l') ADVANCE(449); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 368: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'l') ADVANCE(450); + if (lookahead == 'l') ADVANCE(391); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 369: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'l') ADVANCE(392); + if (lookahead == 'l') ADVANCE(313); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 370: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'l') ADVANCE(314); + if (lookahead == 'l') ADVANCE(367); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 371: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'l') ADVANCE(397); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 372: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'l') ADVANCE(398); + if (lookahead == 'l') ADVANCE(326); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 373: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'l') ADVANCE(327); + if (lookahead == 'l') ADVANCE(340); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 374: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'l') ADVANCE(341); + if (lookahead == 'l') ADVANCE(425); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 375: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'l') ADVANCE(426); + if (lookahead == 'm') ADVANCE(514); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 376: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'm') ADVANCE(515); + if (lookahead == 'm') ADVANCE(302); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 377: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'm') ADVANCE(303); + if (lookahead == 'm') ADVANCE(392); + if (lookahead == 'q') ADVANCE(441); + if (lookahead == 't') ADVANCE(443); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 378: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'm') ADVANCE(393); - if (lookahead == 'q') ADVANCE(442); - if (lookahead == 't') ADVANCE(444); + if (lookahead == 'n') ADVANCE(474); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 379: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'n') ADVANCE(475); + if (lookahead == 'n') ADVANCE(533); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 380: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'n') ADVANCE(534); + if (lookahead == 'n') ADVANCE(424); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 381: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'n') ADVANCE(425); + if (lookahead == 'n') ADVANCE(305); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 382: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'n') ADVANCE(306); + if (lookahead == 'n') ADVANCE(320); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 383: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'n') ADVANCE(321); + if (lookahead == 'n') ADVANCE(314); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 384: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'n') ADVANCE(315); + if (lookahead == 'n') ADVANCE(437); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 385: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'n') ADVANCE(438); + if (lookahead == 'n') ADVANCE(317); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 386: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'n') ADVANCE(318); + if (lookahead == 'n') ADVANCE(315); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 387: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'n') ADVANCE(316); + if (lookahead == 'n') ADVANCE(429); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 388: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'n') ADVANCE(430); + if (lookahead == 'n') ADVANCE(298); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 389: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'n') ADVANCE(299); + if (lookahead == 'n') ADVANCE(444); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 390: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'n') ADVANCE(445); + if (lookahead == 'o') ADVANCE(319); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 391: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'o') ADVANCE(320); + if (lookahead == 'o') ADVANCE(303); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 392: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'o') ADVANCE(304); + if (lookahead == 'o') ADVANCE(446); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 393: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'o') ADVANCE(447); + if (lookahead == 'o') ADVANCE(382); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 394: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'o') ADVANCE(383); + if (lookahead == 'o') ADVANCE(375); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 395: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'o') ADVANCE(376); + if (lookahead == 'o') ADVANCE(384); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 396: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'o') ADVANCE(385); + if (lookahead == 'o') ADVANCE(418); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 397: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'o') ADVANCE(419); + if (lookahead == 'o') ADVANCE(309); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 398: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'o') ADVANCE(310); + if (lookahead == 'o') ADVANCE(416); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 399: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'o') ADVANCE(417); + if (lookahead == 'o') ADVANCE(401); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 400: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'o') ADVANCE(402); + if (lookahead == 'o') ADVANCE(378); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 401: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'o') ADVANCE(379); + if (lookahead == 'o') ADVANCE(434); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 402: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'o') ADVANCE(435); + if (lookahead == 'o') ADVANCE(417); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 403: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'o') ADVANCE(418); + if (lookahead == 'p') ADVANCE(338); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 404: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'p') ADVANCE(339); + if (lookahead == 'p') ADVANCE(431); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 405: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'p') ADVANCE(432); + if (lookahead == 'p') ADVANCE(323); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 406: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'p') ADVANCE(341); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 407: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'p') ADVANCE(342); + if (lookahead == 'p') ADVANCE(402); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 408: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'p') ADVANCE(403); + if (lookahead == 'r') ADVANCE(440); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 409: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'r') ADVANCE(441); + if (lookahead == 'r') ADVANCE(582); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 410: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'r') ADVANCE(583); + if (lookahead == 'r') ADVANCE(448); + if (lookahead == 'y') ADVANCE(405); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 411: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'r') ADVANCE(449); - if (lookahead == 'y') ADVANCE(406); + if (lookahead == 'r') ADVANCE(563); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 412: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'r') ADVANCE(564); + if (lookahead == 'r') ADVANCE(464); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 413: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'r') ADVANCE(465); + if (lookahead == 'r') ADVANCE(469); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 414: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'r') ADVANCE(470); + if (lookahead == 'r') ADVANCE(399); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 415: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'r') ADVANCE(400); + if (lookahead == 'r') ADVANCE(379); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 416: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'r') ADVANCE(380); + if (lookahead == 'r') ADVANCE(432); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 417: ACCEPT_TOKEN(aux_sym_include_directive_token1); if (lookahead == 'r') ADVANCE(433); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 418: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'r') ADVANCE(434); + if (lookahead == 'r') ADVANCE(327); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 419: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'r') ADVANCE(328); + if (lookahead == 'r') ADVANCE(329); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 420: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'r') ADVANCE(330); + if (lookahead == 'r') ADVANCE(332); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 421: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'r') ADVANCE(333); + if (lookahead == 's') ADVANCE(539); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 422: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 's') ADVANCE(540); + if (lookahead == 's') ADVANCE(362); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 423: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 's') ADVANCE(363); + if (lookahead == 's') ADVANCE(421); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 424: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 's') ADVANCE(422); + if (lookahead == 's') ADVANCE(342); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 425: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 's') ADVANCE(343); + if (lookahead == 's') ADVANCE(324); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 426: ACCEPT_TOKEN(aux_sym_include_directive_token1); if (lookahead == 's') ADVANCE(325); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 427: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 's') ADVANCE(326); + if (lookahead == 't') ADVANCE(353); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 428: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 't') ADVANCE(354); + if (lookahead == 't') ADVANCE(647); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 429: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 't') ADVANCE(648); + if (lookahead == 't') ADVANCE(528); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 430: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 't') ADVANCE(529); + if (lookahead == 't') ADVANCE(234); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 431: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 't') ADVANCE(236); + if (lookahead == 't') ADVANCE(569); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 432: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 't') ADVANCE(570); + if (lookahead == 't') ADVANCE(456); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 433: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 't') ADVANCE(457); + if (lookahead == 't') ADVANCE(508); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 434: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 't') ADVANCE(509); + if (lookahead == 't') ADVANCE(471); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 435: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 't') ADVANCE(472); + if (lookahead == 't') ADVANCE(307); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 436: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 't') ADVANCE(308); + if (lookahead == 't') ADVANCE(349); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 437: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 't') ADVANCE(350); + if (lookahead == 't') ADVANCE(358); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 438: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 't') ADVANCE(359); + if (lookahead == 't') ADVANCE(334); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 439: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 't') ADVANCE(335); + if (lookahead == 't') ADVANCE(445); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 440: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 't') ADVANCE(446); + if (lookahead == 'u') ADVANCE(321); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 441: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'u') ADVANCE(322); + if (lookahead == 'u') ADVANCE(359); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 442: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'u') ADVANCE(360); + if (lookahead == 'u') ADVANCE(439); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 443: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'u') ADVANCE(440); + if (lookahead == 'u') ADVANCE(415); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 444: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'u') ADVANCE(416); + if (lookahead == 'u') ADVANCE(330); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 445: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'u') ADVANCE(331); + if (lookahead == 'u') ADVANCE(420); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 446: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'u') ADVANCE(421); + if (lookahead == 'v') ADVANCE(328); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 447: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'v') ADVANCE(329); + if (lookahead == 'x') ADVANCE(336); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 448: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'x') ADVANCE(337); + if (lookahead == 'y') ADVANCE(567); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 449: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'y') ADVANCE(568); + if (lookahead == 'y') ADVANCE(572); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 450: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == 'y') ADVANCE(573); + if (lookahead == '0' || + lookahead == '1') ADVANCE(658); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 451: ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (lookahead == '0' || - lookahead == '1') ADVANCE(659); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(659); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); case 452: - ACCEPT_TOKEN(aux_sym_include_directive_token1); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(660); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '"' && - lookahead != '$' && - lookahead != '{' && - lookahead != '}') ADVANCE(454); - END_STATE(); - case 453: ACCEPT_TOKEN(aux_sym_include_directive_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(661); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(660); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); - case 454: + case 453: ACCEPT_TOKEN(aux_sym_include_directive_token1); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '{' && - lookahead != '}') ADVANCE(454); + lookahead != '}') ADVANCE(453); END_STATE(); - case 455: + case 454: ACCEPT_TOKEN(anon_sym_require); END_STATE(); - case 456: + case 455: ACCEPT_TOKEN(anon_sym_require); - if (lookahead == '.') ADVANCE(965); + if (lookahead == '.') ADVANCE(969); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); - case 457: + case 456: ACCEPT_TOKEN(anon_sym_export); END_STATE(); - case 458: + case 457: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '.') ADVANCE(965); + if (lookahead == '.') ADVANCE(969); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); - case 459: + case 458: ACCEPT_TOKEN(anon_sym_OVERRIDES); END_STATE(); - case 460: + case 459: ACCEPT_TOKEN(anon_sym_OVERRIDES); - if (lookahead == '.') ADVANCE(965); + if (lookahead == '.') ADVANCE(969); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); - case 461: + case 460: ACCEPT_TOKEN(anon_sym_EXPORT_FUNCTIONS); END_STATE(); - case 462: + case 461: ACCEPT_TOKEN(anon_sym_EXPORT_FUNCTIONS); - if (lookahead == '.') ADVANCE(965); + if (lookahead == '.') ADVANCE(969); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); - case 463: + case 462: ACCEPT_TOKEN(anon_sym_addtask); END_STATE(); - case 464: + case 463: ACCEPT_TOKEN(anon_sym_addtask); - if (lookahead == '.') ADVANCE(965); + if (lookahead == '.') ADVANCE(969); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); - case 465: + case 464: ACCEPT_TOKEN(anon_sym_after); END_STATE(); - case 466: + case 465: ACCEPT_TOKEN(anon_sym_after); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); - case 467: + case 466: ACCEPT_TOKEN(anon_sym_before); END_STATE(); - case 468: + case 467: ACCEPT_TOKEN(anon_sym_before); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); - case 469: + case 468: ACCEPT_TOKEN(anon_sym_deltask); - if (lookahead == '.') ADVANCE(965); + if (lookahead == '.') ADVANCE(969); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); - case 470: + case 469: ACCEPT_TOKEN(anon_sym_addhandler); END_STATE(); - case 471: + case 470: ACCEPT_TOKEN(anon_sym_addhandler); - if (lookahead == '.') ADVANCE(965); + if (lookahead == '.') ADVANCE(969); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); - case 472: + case 471: ACCEPT_TOKEN(anon_sym_fakeroot); END_STATE(); - case 473: + case 472: ACCEPT_TOKEN(anon_sym_fakeroot); - if (lookahead == '.') ADVANCE(965); + if (lookahead == '.') ADVANCE(969); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); - case 474: + case 473: ACCEPT_TOKEN(anon_sym_fakeroot); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); - case 475: + case 474: ACCEPT_TOKEN(anon_sym_python); END_STATE(); - case 476: + case 475: ACCEPT_TOKEN(anon_sym_python); - if (lookahead == '.') ADVANCE(965); + if (lookahead == '.') ADVANCE(969); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); - case 477: + case 476: ACCEPT_TOKEN(anon_sym_python); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); - case 478: + case 477: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 479: + case 478: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 480: + case 479: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 481: + case 480: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 482: + case 481: ACCEPT_TOKEN(aux_sym_string_token1); - if (lookahead == '\n') ADVANCE(487); - if (lookahead == '\r') ADVANCE(482); - if (lookahead == '\\') ADVANCE(483); + if (lookahead == '\n') ADVANCE(486); + if (lookahead == '\r') ADVANCE(481); + if (lookahead == '\\') ADVANCE(482); if (lookahead != 0 && lookahead != '"' && - lookahead != '$') ADVANCE(482); + lookahead != '$') ADVANCE(481); END_STATE(); - case 483: + case 482: ACCEPT_TOKEN(aux_sym_string_token1); - if (lookahead == '\n') ADVANCE(487); - if (lookahead == '\r') ADVANCE(482); - if (lookahead == '\\') ADVANCE(483); - if (lookahead != 0) ADVANCE(482); + if (lookahead == '\n') ADVANCE(486); + if (lookahead == '\r') ADVANCE(481); + if (lookahead == '\\') ADVANCE(482); + if (lookahead != 0) ADVANCE(481); END_STATE(); - case 484: + case 483: ACCEPT_TOKEN(aux_sym_string_token1); - if (lookahead == '\n') ADVANCE(487); - if (lookahead == '\r') ADVANCE(487); - if (lookahead == '\\') ADVANCE(488); + if (lookahead == '\n') ADVANCE(486); + if (lookahead == '\r') ADVANCE(486); + if (lookahead == '\\') ADVANCE(487); if (lookahead != 0 && lookahead != '"' && - lookahead != '$') ADVANCE(487); + lookahead != '$') ADVANCE(486); END_STATE(); - case 485: + case 484: ACCEPT_TOKEN(aux_sym_string_token1); - if (!eof && lookahead == 0 || - lookahead == '\n') ADVANCE(487); - if (lookahead == '\r') ADVANCE(484); - if (lookahead == '\\') ADVANCE(488); - if (lookahead != 0) ADVANCE(487); + if (lookahead == 0 || + lookahead == '\n') ADVANCE(486); + if (lookahead == '\r') ADVANCE(483); + if (lookahead == '\\') ADVANCE(487); + if (lookahead != 0) ADVANCE(486); END_STATE(); - case 486: + case 485: ACCEPT_TOKEN(aux_sym_string_token1); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(486); - if (lookahead == '\r') ADVANCE(486); - if (lookahead == '#') ADVANCE(482); - if (lookahead == '\\') ADVANCE(485); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(485); + if (lookahead == '\r') ADVANCE(485); + if (lookahead == '#') ADVANCE(481); + if (lookahead == '\\') ADVANCE(484); if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead)) ADVANCE(487); + (lookahead < '"' || '$' < lookahead)) ADVANCE(486); END_STATE(); - case 487: + case 486: ACCEPT_TOKEN(aux_sym_string_token1); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(487); - if (lookahead == '\r') ADVANCE(487); - if (lookahead == '\\') ADVANCE(488); + lookahead != '\\') ADVANCE(486); + if (lookahead == '\r') ADVANCE(486); + if (lookahead == '\\') ADVANCE(487); END_STATE(); - case 488: + case 487: ACCEPT_TOKEN(aux_sym_string_token1); if (lookahead != 0 && lookahead != '\r' && - lookahead != '\\') ADVANCE(487); - if (lookahead == '\r') ADVANCE(487); - if (lookahead == '\\') ADVANCE(488); + lookahead != '\\') ADVANCE(486); + if (lookahead == '\r') ADVANCE(486); + if (lookahead == '\\') ADVANCE(487); END_STATE(); - case 489: + case 488: ACCEPT_TOKEN(aux_sym_string_token2); END_STATE(); - case 490: + case 489: ACCEPT_TOKEN(anon_sym_DOLLARBB_ENV_PASSTHROUGH); - if (lookahead == '_') ADVANCE(99); + if (lookahead == '_') ADVANCE(98); END_STATE(); - case 491: + case 490: ACCEPT_TOKEN(anon_sym_DOLLARBB_ENV_PASSTHROUGH_ADDITIONS); END_STATE(); - case 492: + case 491: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == 'B') ADVANCE(101); - if (lookahead == '{') ADVANCE(502); + if (lookahead == 'B') ADVANCE(100); + if (lookahead == '{') ADVANCE(501); END_STATE(); - case 493: + case 492: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 494: + case 493: ACCEPT_TOKEN(aux_sym_string_token3); - if (lookahead == '\n') ADVANCE(498); - if (lookahead == '\r') ADVANCE(494); - if (lookahead == '\\') ADVANCE(966); + if (lookahead == '\n') ADVANCE(497); + if (lookahead == '\r') ADVANCE(493); + if (lookahead == '\\') ADVANCE(970); if (lookahead != 0 && lookahead != '$' && - lookahead != '\'') ADVANCE(494); + lookahead != '\'') ADVANCE(493); END_STATE(); - case 495: + case 494: ACCEPT_TOKEN(aux_sym_string_token3); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(495); - if (lookahead == '\r') ADVANCE(495); - if (lookahead == '"') ADVANCE(497); - if (lookahead == '#') ADVANCE(494); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(494); + if (lookahead == '\r') ADVANCE(494); + if (lookahead == '"') ADVANCE(496); + if (lookahead == '#') ADVANCE(493); if (lookahead == '\\') ADVANCE(6); if (lookahead != 0 && lookahead != '$' && - lookahead != '\'') ADVANCE(498); + lookahead != '\'') ADVANCE(497); END_STATE(); - case 496: + case 495: ACCEPT_TOKEN(aux_sym_string_token3); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(498); - if (lookahead == '\r') ADVANCE(498); - if (lookahead == '"') ADVANCE(498); - if (lookahead == '\\') ADVANCE(12); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(497); + if (lookahead == '\r') ADVANCE(497); + if (lookahead == '"') ADVANCE(497); + if (lookahead == '\\') ADVANCE(15); if (lookahead != 0 && lookahead != '$' && - lookahead != '\'') ADVANCE(496); + lookahead != '\'') ADVANCE(495); END_STATE(); - case 497: + case 496: ACCEPT_TOKEN(aux_sym_string_token3); - if (('\t' <= lookahead && lookahead <= '\f') || + if (lookahead == '\t' || + lookahead == '\n' || lookahead == ' ' || - lookahead == '"') ADVANCE(498); - if (lookahead == '\r') ADVANCE(498); - if (lookahead == '\\') ADVANCE(12); + lookahead == '"') ADVANCE(497); + if (lookahead == '\r') ADVANCE(497); + if (lookahead == '\\') ADVANCE(15); if (lookahead != 0 && lookahead != '$' && - lookahead != '\'') ADVANCE(496); + lookahead != '\'') ADVANCE(495); END_STATE(); - case 498: + case 497: ACCEPT_TOKEN(aux_sym_string_token3); if (lookahead != 0 && lookahead != '\r' && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(498); - if (lookahead == '\r') ADVANCE(498); - if (lookahead == '\\') ADVANCE(12); + lookahead != '\\') ADVANCE(497); + if (lookahead == '\r') ADVANCE(497); + if (lookahead == '\\') ADVANCE(15); END_STATE(); - case 499: + case 498: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE_AT); END_STATE(); - case 500: + case 499: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE_AT); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(244); + lookahead != ' ') ADVANCE(243); + END_STATE(); + case 500: + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); case 501: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + if (lookahead == '@') ADVANCE(498); END_STATE(); case 502: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); if (lookahead == '@') ADVANCE(499); - END_STATE(); - case 503: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); - if (lookahead == '@') ADVANCE(500); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(244); + lookahead != ' ') ADVANCE(243); END_STATE(); - case 504: + case 503: ACCEPT_TOKEN(anon_sym_def); END_STATE(); - case 505: + case 504: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 506: + case 505: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == '.') ADVANCE(965); + if (lookahead == '.') ADVANCE(969); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); - case 507: + case 506: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 508: + case 507: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 509: + case 508: ACCEPT_TOKEN(anon_sym_import); END_STATE(); - case 510: + case 509: ACCEPT_TOKEN(anon_sym_import); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 511: + case 510: ACCEPT_TOKEN(anon_sym_import); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); - case 512: + case 511: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 513: + case 512: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(250); - if (lookahead == '=') ADVANCE(213); + if (lookahead == '.') ADVANCE(249); + if (lookahead == '=') ADVANCE(211); END_STATE(); - case 514: + case 513: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(69); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(668); END_STATE(); - case 515: + case 514: ACCEPT_TOKEN(anon_sym_from); END_STATE(); - case 516: + case 515: ACCEPT_TOKEN(anon_sym_from); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 517: + case 516: ACCEPT_TOKEN(anon_sym___future__); END_STATE(); - case 518: + case 517: ACCEPT_TOKEN(anon_sym___future__); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); - case 519: + case 518: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 520: + case 519: ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 521: + case 520: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'y') ADVANCE(757); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'y') ADVANCE(756); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); + END_STATE(); + case 521: + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 'y') ADVANCE(148); END_STATE(); case 522: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'y') ADVANCE(149); + if (lookahead == 'y') ADVANCE(381); END_STATE(); case 523: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'y') ADVANCE(382); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); case 524: - ACCEPT_TOKEN(anon_sym_as); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 525: ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(601); + if (lookahead == '=') ADVANCE(626); END_STATE(); case 526: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '=') ADVANCE(627); + if (lookahead == '*') ADVANCE(600); END_STATE(); case 527: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(601); - END_STATE(); - case 528: ACCEPT_TOKEN(anon_sym_STAR); if (lookahead == '*') ADVANCE(88); - if (lookahead == '=') ADVANCE(627); + if (lookahead == '=') ADVANCE(626); END_STATE(); - case 529: + case 528: ACCEPT_TOKEN(anon_sym_print); END_STATE(); - case 530: + case 529: ACCEPT_TOKEN(anon_sym_print); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 531: + case 530: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 532: + case 531: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(633); + if (lookahead == '=') ADVANCE(632); END_STATE(); - case 533: + case 532: ACCEPT_TOKEN(anon_sym_assert); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 534: + case 533: ACCEPT_TOKEN(anon_sym_return); END_STATE(); - case 535: + case 534: ACCEPT_TOKEN(anon_sym_return); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 536: + case 535: ACCEPT_TOKEN(anon_sym_del); END_STATE(); - case 537: + case 536: ACCEPT_TOKEN(anon_sym_del); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 538: + case 537: ACCEPT_TOKEN(anon_sym_raise); END_STATE(); - case 539: + case 538: ACCEPT_TOKEN(anon_sym_raise); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 540: + case 539: ACCEPT_TOKEN(anon_sym_pass); END_STATE(); - case 541: + case 540: ACCEPT_TOKEN(anon_sym_pass); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 542: + case 541: ACCEPT_TOKEN(anon_sym_break); END_STATE(); - case 543: + case 542: ACCEPT_TOKEN(anon_sym_break); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 544: + case 543: ACCEPT_TOKEN(anon_sym_continue); END_STATE(); - case 545: + case 544: ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 546: + case 545: ACCEPT_TOKEN(anon_sym_global); END_STATE(); - case 547: + case 546: ACCEPT_TOKEN(anon_sym_global); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 548: + case 547: ACCEPT_TOKEN(anon_sym_nonlocal); END_STATE(); - case 549: + case 548: ACCEPT_TOKEN(anon_sym_nonlocal); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 550: + case 549: ACCEPT_TOKEN(anon_sym_exec); END_STATE(); - case 551: + case 550: ACCEPT_TOKEN(anon_sym_exec); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 552: + case 551: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 553: + case 552: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 554: + case 553: ACCEPT_TOKEN(anon_sym_in); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); - case 555: + case 554: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 556: + case 555: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 557: + case 556: ACCEPT_TOKEN(anon_sym_if); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); - case 558: + case 557: ACCEPT_TOKEN(anon_sym_elif); END_STATE(); - case 559: + case 558: ACCEPT_TOKEN(anon_sym_elif); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 560: + case 559: ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 561: + case 560: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 562: + case 561: ACCEPT_TOKEN(anon_sym_async); END_STATE(); - case 563: + case 562: ACCEPT_TOKEN(anon_sym_async); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 564: + case 563: ACCEPT_TOKEN(anon_sym_for); END_STATE(); - case 565: + case 564: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 566: + case 565: ACCEPT_TOKEN(anon_sym_while); END_STATE(); - case 567: + case 566: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 568: + case 567: ACCEPT_TOKEN(anon_sym_try); END_STATE(); - case 569: + case 568: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 570: + case 569: ACCEPT_TOKEN(anon_sym_except); - if (lookahead == '*') ADVANCE(572); + if (lookahead == '*') ADVANCE(571); END_STATE(); - case 571: + case 570: ACCEPT_TOKEN(anon_sym_except); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 572: + case 571: ACCEPT_TOKEN(anon_sym_except_STAR); END_STATE(); - case 573: + case 572: ACCEPT_TOKEN(anon_sym_finally); END_STATE(); - case 574: + case 573: ACCEPT_TOKEN(anon_sym_finally); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 575: + case 574: ACCEPT_TOKEN(anon_sym_with); END_STATE(); - case 576: + case 575: ACCEPT_TOKEN(anon_sym_with); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 577: + case 576: ACCEPT_TOKEN(anon_sym_not); END_STATE(); - case 578: + case 577: ACCEPT_TOKEN(anon_sym_not); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 579: + case 578: ACCEPT_TOKEN(anon_sym_not); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); - case 580: + case 579: ACCEPT_TOKEN(anon_sym_and); END_STATE(); - case 581: + case 580: ACCEPT_TOKEN(anon_sym_and); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 582: + case 581: ACCEPT_TOKEN(anon_sym_and); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); - case 583: + case 582: ACCEPT_TOKEN(anon_sym_or); END_STATE(); - case 584: + case 583: ACCEPT_TOKEN(anon_sym_or); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 585: + case 584: ACCEPT_TOKEN(anon_sym_or); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); + END_STATE(); + case 585: + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 586: ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(209); END_STATE(); case 587: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(211); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 588: ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(625); END_STATE(); case 589: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(626); - END_STATE(); - case 590: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(626); + if (lookahead == '=') ADVANCE(625); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); - case 591: + case 590: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); + END_STATE(); + case 591: + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 592: ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == '=') ADVANCE(628); END_STATE(); case 593: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '=') ADVANCE(629); + ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); case 594: ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(599); + if (lookahead == '=') ADVANCE(627); END_STATE(); case 595: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(600); - if (lookahead == '=') ADVANCE(628); + if (lookahead == '/') ADVANCE(598); END_STATE(); case 596: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(599); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 597: ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(630); END_STATE(); case 598: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(631); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 599: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead == '=') ADVANCE(629); END_STATE(); case 600: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '=') ADVANCE(630); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 601: ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(631); END_STATE(); case 602: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(632); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 603: ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(636); END_STATE(); case 604: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(637); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 605: ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '=') ADVANCE(634); END_STATE(); case 606: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '=') ADVANCE(635); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 607: ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(635); END_STATE(); case 608: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(636); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 609: ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(633); END_STATE(); case 610: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(634); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 611: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(609); + if (lookahead == '=') ADVANCE(613); + if (lookahead == '>') ADVANCE(619); END_STATE(); case 612: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '=') ADVANCE(614); - if (lookahead == '>') ADVANCE(620); + if (lookahead == '<') ADVANCE(608); + if (lookahead == '=') ADVANCE(613); + if (lookahead == '>') ADVANCE(619); END_STATE(); case 613: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(614); - if (lookahead == '>') ADVANCE(620); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 614: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 615: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 616: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 617: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(616); + if (lookahead == '>') ADVANCE(531); END_STATE(); case 618: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(617); - if (lookahead == '>') ADVANCE(532); + if (lookahead == '=') ADVANCE(616); + if (lookahead == '>') ADVANCE(530); END_STATE(); case 619: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(617); - if (lookahead == '>') ADVANCE(531); - END_STATE(); - case 620: ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); - case 621: + case 620: ACCEPT_TOKEN(anon_sym_is); END_STATE(); - case 622: + case 621: ACCEPT_TOKEN(anon_sym_is); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 623: + case 622: ACCEPT_TOKEN(anon_sym_is); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); - case 624: + case 623: ACCEPT_TOKEN(anon_sym_lambda); END_STATE(); - case 625: + case 624: ACCEPT_TOKEN(anon_sym_lambda); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 626: + case 625: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 627: + case 626: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 628: + case 627: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 629: + case 628: ACCEPT_TOKEN(anon_sym_AT_EQ); END_STATE(); - case 630: + case 629: ACCEPT_TOKEN(anon_sym_SLASH_SLASH_EQ); END_STATE(); - case 631: + case 630: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 632: + case 631: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); - case 633: + case 632: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 634: + case 633: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 635: + case 634: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 636: + case 635: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 637: + case 636: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 638: + case 637: ACCEPT_TOKEN(anon_sym_yield); END_STATE(); - case 639: + case 638: ACCEPT_TOKEN(anon_sym_yield); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 640: + case 639: ACCEPT_TOKEN(sym_ellipsis); END_STATE(); - case 641: + case 640: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 642: + case 641: ACCEPT_TOKEN(sym__not_escape_sequence); - if (!eof && lookahead == 0) ADVANCE(838); - if (lookahead == '\n') ADVANCE(838); - if (lookahead == '\r') ADVANCE(10); + if (lookahead == 0) ADVANCE(837); + if (lookahead == '\n') ADVANCE(837); + if (lookahead == '\r') ADVANCE(13); END_STATE(); - case 643: + case 642: ACCEPT_TOKEN(sym__not_escape_sequence); - if (!eof && lookahead == 0) ADVANCE(838); - if (lookahead == '\n') ADVANCE(641); - if (lookahead == '\r') ADVANCE(13); - if (lookahead == 'N') ADVANCE(172); - if (lookahead == 'U') ADVANCE(189); - if (lookahead == 'u') ADVANCE(185); - if (lookahead == 'x') ADVANCE(183); + if (lookahead == 0) ADVANCE(837); + if (lookahead == '\n') ADVANCE(640); + if (lookahead == '\r') ADVANCE(16); + if (lookahead == 'N') ADVANCE(171); + if (lookahead == 'U') ADVANCE(187); + if (lookahead == 'u') ADVANCE(183); + if (lookahead == 'x') ADVANCE(181); if (lookahead == '"' || lookahead == '\'' || lookahead == '\\' || @@ -17656,3100 +18201,3150 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'f' || lookahead == 'n' || lookahead == 'r' || - ('t' <= lookahead && lookahead <= 'v')) ADVANCE(641); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(181); + ('t' <= lookahead && lookahead <= 'v')) ADVANCE(640); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(179); END_STATE(); - case 644: + case 643: ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (!eof && lookahead == 0) ADVANCE(646); - if (lookahead == '\r') ADVANCE(646); + if (lookahead == 0) ADVANCE(645); + if (lookahead == '\r') ADVANCE(645); if (lookahead != 0 && lookahead != '\n' && lookahead != '{' && - lookahead != '}') ADVANCE(646); + lookahead != '}') ADVANCE(645); END_STATE(); - case 645: + case 644: ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (lookahead == '#') ADVANCE(646); - if (lookahead == '\\') ADVANCE(644); + if (lookahead == '#') ADVANCE(645); + if (lookahead == '\\') ADVANCE(643); if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(645); + lookahead == '\r' || + lookahead == ' ') ADVANCE(644); if (lookahead != 0 && lookahead != '\n' && lookahead != '{' && - lookahead != '}') ADVANCE(646); + lookahead != '}') ADVANCE(645); END_STATE(); - case 646: + case 645: ACCEPT_TOKEN(aux_sym_format_specifier_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '{' && - lookahead != '}') ADVANCE(646); + lookahead != '}') ADVANCE(645); END_STATE(); - case 647: + case 646: ACCEPT_TOKEN(sym_type_conversion); END_STATE(); - case 648: + case 647: ACCEPT_TOKEN(anon_sym_await); END_STATE(); - case 649: + case 648: ACCEPT_TOKEN(anon_sym_await); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 650: + case 649: ACCEPT_TOKEN(anon_sym_match); END_STATE(); - case 651: + case 650: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 652: + case 651: ACCEPT_TOKEN(anon_sym_type); END_STATE(); - case 653: + case 652: ACCEPT_TOKEN(anon_sym_type); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 654: + case 653: ACCEPT_TOKEN(sym_integer); END_STATE(); - case 655: + case 654: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(672); - if (lookahead == '_') ADVANCE(657); + if (lookahead == '.') ADVANCE(671); + if (lookahead == '_') ADVANCE(656); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(839); + lookahead == 'e') ADVANCE(838); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(655); + lookahead == 'l') ADVANCE(666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(654); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); - case 656: + case 655: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(672); + if (lookahead == '.') ADVANCE(671); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(935); + lookahead == 'b') ADVANCE(939); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(936); + lookahead == 'o') ADVANCE(940); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(937); - if (lookahead == '_') ADVANCE(657); + lookahead == 'x') ADVANCE(941); + if (lookahead == '_') ADVANCE(656); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(839); + lookahead == 'e') ADVANCE(838); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(655); + lookahead == 'l') ADVANCE(666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(654); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); - case 657: + case 656: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(672); + if (lookahead == '.') ADVANCE(671); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(839); + lookahead == 'e') ADVANCE(838); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(655); + lookahead == 'l') ADVANCE(666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(654); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); - case 658: + case 657: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(666); + if (lookahead == '_') ADVANCE(665); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(654); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(658); + lookahead == 'l') ADVANCE(653); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(657); END_STATE(); - case 659: + case 658: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(451); + if (lookahead == '_') ADVANCE(450); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(654); + lookahead == 'l') ADVANCE(653); if (lookahead == '0' || - lookahead == '1') ADVANCE(659); + lookahead == '1') ADVANCE(658); END_STATE(); - case 660: + case 659: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(452); + if (lookahead == '_') ADVANCE(451); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(654); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(660); + lookahead == 'l') ADVANCE(653); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(659); END_STATE(); - case 661: + case 660: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(453); + if (lookahead == '_') ADVANCE(452); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(654); + lookahead == 'l') ADVANCE(653); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(661); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(660); END_STATE(); - case 662: + case 661: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(959); + if (lookahead == '_') ADVANCE(963); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(667); + lookahead == 'l') ADVANCE(666); if (lookahead == '0' || - lookahead == '1') ADVANCE(662); + lookahead == '1') ADVANCE(661); if (lookahead == '-' || ('2' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); - case 663: + case 662: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(960); + if (lookahead == '_') ADVANCE(964); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(667); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(663); + lookahead == 'l') ADVANCE(666); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(662); if (lookahead == '-' || lookahead == '8' || lookahead == '9' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); - case 664: + case 663: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(962); + if (lookahead == '_') ADVANCE(966); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(667); + lookahead == 'l') ADVANCE(666); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(664); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(663); if (lookahead == '-' || ('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); - case 665: + case 664: ACCEPT_TOKEN(sym_integer); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(283); + lookahead == 'b') ADVANCE(282); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(284); + lookahead == 'o') ADVANCE(283); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(285); - if (lookahead == '_') ADVANCE(666); + lookahead == 'x') ADVANCE(284); + if (lookahead == '_') ADVANCE(665); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(654); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(658); + lookahead == 'l') ADVANCE(653); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(657); END_STATE(); - case 666: + case 665: ACCEPT_TOKEN(sym_integer); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(654); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(658); + lookahead == 'l') ADVANCE(653); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(657); END_STATE(); - case 667: + case 666: ACCEPT_TOKEN(sym_integer); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); - case 668: + case 667: ACCEPT_TOKEN(sym_float); END_STATE(); - case 669: + case 668: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(672); + if (lookahead == '_') ADVANCE(671); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(176); + lookahead == 'e') ADVANCE(174); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(669); + lookahead == 'l') ADVANCE(667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(668); END_STATE(); - case 670: + case 669: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(674); + if (lookahead == '_') ADVANCE(673); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(675); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(670); + lookahead == 'l') ADVANCE(674); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); - case 671: + case 670: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(673); + if (lookahead == '_') ADVANCE(672); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(671); + lookahead == 'l') ADVANCE(667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(670); END_STATE(); - case 672: + case 671: ACCEPT_TOKEN(sym_float); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(176); + lookahead == 'e') ADVANCE(174); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(669); + lookahead == 'l') ADVANCE(667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(668); END_STATE(); - case 673: + case 672: ACCEPT_TOKEN(sym_float); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(671); + lookahead == 'l') ADVANCE(667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(670); END_STATE(); - case 674: + case 673: ACCEPT_TOKEN(sym_float); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(675); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(670); + lookahead == 'l') ADVANCE(674); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); - case 675: + case 674: ACCEPT_TOKEN(sym_float); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); - case 676: + case 675: ACCEPT_TOKEN(sym_true); END_STATE(); - case 677: + case 676: ACCEPT_TOKEN(sym_true); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); - case 678: + case 677: ACCEPT_TOKEN(sym_false); END_STATE(); - case 679: + case 678: ACCEPT_TOKEN(sym_false); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); + END_STATE(); + case 679: + ACCEPT_TOKEN(sym_none); END_STATE(); case 680: ACCEPT_TOKEN(sym_none); + if (lookahead == '-') ADVANCE(967); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 681: - ACCEPT_TOKEN(sym_none); - if (lookahead == '-') ADVANCE(963); + ACCEPT_TOKEN(sym_python_identifier); + if (lookahead == '*') ADVANCE(571); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 682: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '*') ADVANCE(572); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'a') ADVANCE(753); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 683: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'a') ADVANCE(754); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'a') ADVANCE(805); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 684: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'a') ADVANCE(806); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'a') ADVANCE(790); + if (lookahead == 'r') ADVANCE(734); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 685: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'a') ADVANCE(791); - if (lookahead == 'r') ADVANCE(735); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'a') ADVANCE(736); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 686: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'a') ADVANCE(737); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'a') ADVANCE(624); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 687: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'a') ADVANCE(625); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'a') ADVANCE(741); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 688: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'a') ADVANCE(742); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'a') ADVANCE(735); + if (lookahead == 'e') ADVANCE(804); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 689: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'a') ADVANCE(736); - if (lookahead == 'e') ADVANCE(805); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'a') ADVANCE(738); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 690: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'a') ADVANCE(739); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'a') ADVANCE(732); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 691: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'a') ADVANCE(733); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'a') ADVANCE(739); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 692: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'a') ADVANCE(740); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'a') ADVANCE(746); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 693: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'a') ADVANCE(747); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'b') ADVANCE(703); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 694: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'b') ADVANCE(704); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'b') ADVANCE(689); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 695: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'b') ADVANCE(690); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'c') ADVANCE(550); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 696: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'c') ADVANCE(551); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'c') ADVANCE(562); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 697: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'c') ADVANCE(563); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'c') ADVANCE(726); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 698: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'c') ADVANCE(727); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'c') ADVANCE(714); + if (lookahead == 'e') ADVANCE(695); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 699: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'c') ADVANCE(715); - if (lookahead == 'e') ADVANCE(696); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'c') ADVANCE(719); + if (lookahead == 'e') ADVANCE(695); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 700: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'c') ADVANCE(720); - if (lookahead == 'e') ADVANCE(696); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'c') ADVANCE(691); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 701: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'c') ADVANCE(692); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'd') ADVANCE(638); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 702: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'd') ADVANCE(639); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'd') ADVANCE(580); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 703: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'd') ADVANCE(581); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'd') ADVANCE(686); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 704: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'd') ADVANCE(687); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'e') ADVANCE(723); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 705: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'e') ADVANCE(724); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'e') ADVANCE(695); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 706: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'e') ADVANCE(696); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'e') ADVANCE(680); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 707: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'e') ADVANCE(681); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'e') ADVANCE(676); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 708: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'e') ADVANCE(677); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'e') ADVANCE(652); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 709: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'e') ADVANCE(653); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'e') ADVANCE(678); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 710: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'e') ADVANCE(679); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'e') ADVANCE(538); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 711: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'e') ADVANCE(539); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'e') ADVANCE(566); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 712: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'e') ADVANCE(567); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'e') ADVANCE(544); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 713: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'e') ADVANCE(545); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'e') ADVANCE(560); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 714: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'e') ADVANCE(561); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'e') ADVANCE(776); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 715: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'e') ADVANCE(777); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'e') ADVANCE(786); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 716: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'e') ADVANCE(787); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'e') ADVANCE(742); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 717: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'e') ADVANCE(743); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'e') ADVANCE(685); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 718: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'e') ADVANCE(686); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'e') ADVANCE(737); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 719: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'e') ADVANCE(738); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'e') ADVANCE(777); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 720: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'e') ADVANCE(778); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'f') ADVANCE(555); + if (lookahead == 'm') ADVANCE(774); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 721: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'f') ADVANCE(556); - if (lookahead == 'm') ADVANCE(775); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'f') ADVANCE(555); + if (lookahead == 'n') ADVANCE(552); + if (lookahead == 's') ADVANCE(621); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 722: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'f') ADVANCE(556); - if (lookahead == 'n') ADVANCE(553); - if (lookahead == 's') ADVANCE(622); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'f') ADVANCE(555); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 723: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'f') ADVANCE(556); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'f') ADVANCE(504); + if (lookahead == 'l') ADVANCE(536); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 724: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'f') ADVANCE(505); - if (lookahead == 'l') ADVANCE(537); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'f') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 725: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'f') ADVANCE(559); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'h') ADVANCE(575); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 726: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'h') ADVANCE(576); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'h') ADVANCE(650); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 727: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'h') ADVANCE(651); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'h') ADVANCE(729); + if (lookahead == 'i') ADVANCE(797); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 728: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'h') ADVANCE(730); - if (lookahead == 'i') ADVANCE(798); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'i') ADVANCE(724); + if (lookahead == 's') ADVANCE(713); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 729: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'i') ADVANCE(725); - if (lookahead == 's') ADVANCE(714); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'i') ADVANCE(747); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 730: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'i') ADVANCE(748); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'i') ADVANCE(716); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 731: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'i') ADVANCE(717); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'i') ADVANCE(762); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 732: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'i') ADVANCE(763); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'i') ADVANCE(798); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 733: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'i') ADVANCE(799); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'i') ADVANCE(763); + if (lookahead == 'o') ADVANCE(780); + if (lookahead == 'r') ADVANCE(768); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 734: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'i') ADVANCE(764); - if (lookahead == 'o') ADVANCE(781); - if (lookahead == 'r') ADVANCE(769); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'i') ADVANCE(760); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 735: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'i') ADVANCE(761); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'i') ADVANCE(794); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 736: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'i') ADVANCE(795); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'k') ADVANCE(542); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 737: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'k') ADVANCE(543); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'l') ADVANCE(536); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 738: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'l') ADVANCE(537); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'l') ADVANCE(546); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 739: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'l') ADVANCE(547); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'l') ADVANCE(548); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 740: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'l') ADVANCE(549); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'l') ADVANCE(728); + if (lookahead == 'x') ADVANCE(705); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 741: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'l') ADVANCE(729); - if (lookahead == 'x') ADVANCE(706); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'l') ADVANCE(793); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 742: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'l') ADVANCE(794); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'l') ADVANCE(701); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 743: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'l') ADVANCE(702); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'l') ADVANCE(766); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 744: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'l') ADVANCE(767); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'l') ADVANCE(812); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 745: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'l') ADVANCE(813); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'l') ADVANCE(771); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 746: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'l') ADVANCE(772); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'l') ADVANCE(744); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 747: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'l') ADVANCE(745); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'l') ADVANCE(711); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 748: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'l') ADVANCE(712); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'l') ADVANCE(795); + if (lookahead == 'x') ADVANCE(698); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 749: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'l') ADVANCE(796); - if (lookahead == 'x') ADVANCE(699); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'l') ADVANCE(795); + if (lookahead == 'x') ADVANCE(705); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 750: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'l') ADVANCE(796); - if (lookahead == 'x') ADVANCE(706); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'l') ADVANCE(795); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 751: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'l') ADVANCE(796); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'm') ADVANCE(774); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 752: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'm') ADVANCE(775); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'm') ADVANCE(515); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 753: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'm') ADVANCE(516); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'm') ADVANCE(693); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 754: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'm') ADVANCE(694); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'n') ADVANCE(534); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 755: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'n') ADVANCE(535); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'n') ADVANCE(552); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 756: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'n') ADVANCE(553); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'n') ADVANCE(696); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 757: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'n') ADVANCE(697); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'n') ADVANCE(702); + if (lookahead == 's') ADVANCE(520); + if (lookahead == 'w') ADVANCE(690); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 758: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'n') ADVANCE(703); - if (lookahead == 's') ADVANCE(521); - if (lookahead == 'w') ADVANCE(691); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'n') ADVANCE(806); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 759: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'n') ADVANCE(807); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'n') ADVANCE(706); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 760: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'n') ADVANCE(707); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'n') ADVANCE(799); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 761: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'n') ADVANCE(800); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'n') ADVANCE(745); + if (lookahead == 't') ADVANCE(577); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 762: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'n') ADVANCE(746); - if (lookahead == 't') ADVANCE(578); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'n') ADVANCE(809); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 763: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'n') ADVANCE(810); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'n') ADVANCE(692); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 764: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'n') ADVANCE(693); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'o') ADVANCE(759); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 765: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'o') ADVANCE(760); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'o') ADVANCE(761); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 766: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'o') ADVANCE(762); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'o') ADVANCE(694); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 767: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'o') ADVANCE(695); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'o') ADVANCE(758); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 768: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'o') ADVANCE(759); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'o') ADVANCE(752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 769: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'o') ADVANCE(753); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'o') ADVANCE(780); + if (lookahead == 'r') ADVANCE(768); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 770: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'o') ADVANCE(781); - if (lookahead == 'r') ADVANCE(769); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'o') ADVANCE(780); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 771: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'o') ADVANCE(781); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'o') ADVANCE(700); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 772: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'o') ADVANCE(701); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'o') ADVANCE(796); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 773: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'o') ADVANCE(797); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'o') ADVANCE(787); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 774: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'o') ADVANCE(788); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'p') ADVANCE(773); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 775: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'p') ADVANCE(774); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'p') ADVANCE(708); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 776: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'p') ADVANCE(709); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'p') ADVANCE(802); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 777: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (lookahead == 'p') ADVANCE(803); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 778: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'p') ADVANCE(804); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'r') ADVANCE(808); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 779: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'r') ADVANCE(809); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'r') ADVANCE(811); + if (lookahead == 'y') ADVANCE(775); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 780: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'r') ADVANCE(812); - if (lookahead == 'y') ADVANCE(776); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'r') ADVANCE(564); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 781: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'r') ADVANCE(565); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'r') ADVANCE(583); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 782: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'r') ADVANCE(584); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'r') ADVANCE(717); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 783: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'r') ADVANCE(718); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'r') ADVANCE(734); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 784: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'r') ADVANCE(735); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'r') ADVANCE(768); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 785: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'r') ADVANCE(769); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'r') ADVANCE(754); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 786: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'r') ADVANCE(755); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'r') ADVANCE(800); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 787: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (lookahead == 'r') ADVANCE(801); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 788: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'r') ADVANCE(802); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 's') ADVANCE(792); + if (lookahead == 'w') ADVANCE(690); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 789: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 's') ADVANCE(793); - if (lookahead == 'w') ADVANCE(691); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 's') ADVANCE(540); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 790: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 's') ADVANCE(541); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 's') ADVANCE(789); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 791: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 's') ADVANCE(790); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 's') ADVANCE(814); + if (lookahead == 'w') ADVANCE(690); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 792: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 's') ADVANCE(815); - if (lookahead == 'w') ADVANCE(691); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 's') ADVANCE(715); + if (lookahead == 'y') ADVANCE(756); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 793: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 's') ADVANCE(716); - if (lookahead == 'y') ADVANCE(757); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 's') ADVANCE(709); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 794: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); + if (lookahead == '-') ADVANCE(967); if (lookahead == 's') ADVANCE(710); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 795: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 's') ADVANCE(711); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 's') ADVANCE(713); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 796: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 's') ADVANCE(714); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 't') ADVANCE(577); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 797: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 't') ADVANCE(578); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 't') ADVANCE(725); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 798: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 't') ADVANCE(726); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 't') ADVANCE(648); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 799: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 't') ADVANCE(649); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 't') ADVANCE(529); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 800: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 't') ADVANCE(530); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 't') ADVANCE(532); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 801: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 't') ADVANCE(533); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 't') ADVANCE(509); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 802: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 't') ADVANCE(510); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 't') ADVANCE(570); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 803: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 't') ADVANCE(682); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 't') ADVANCE(681); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 804: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 't') ADVANCE(571); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 't') ADVANCE(807); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 805: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 't') ADVANCE(808); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 't') ADVANCE(697); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 806: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 't') ADVANCE(698); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 't') ADVANCE(731); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 807: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 't') ADVANCE(732); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'u') ADVANCE(785); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 808: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'u') ADVANCE(786); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'u') ADVANCE(707); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 809: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'u') ADVANCE(708); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'u') ADVANCE(712); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 810: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'u') ADVANCE(713); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'x') ADVANCE(705); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 811: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'x') ADVANCE(706); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'y') ADVANCE(568); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 812: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'y') ADVANCE(569); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'y') ADVANCE(573); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 813: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'y') ADVANCE(574); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'y') ADVANCE(775); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 814: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'y') ADVANCE(776); + if (lookahead == '-') ADVANCE(967); + if (lookahead == 'y') ADVANCE(756); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 815: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (lookahead == 'y') ADVANCE(757); + if (lookahead == '-') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(836); END_STATE(); case 816: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '-') ADVANCE(963); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); - if (sym_python_identifier_character_set_5(lookahead)) ADVANCE(837); + if (lookahead == '_') ADVANCE(822); + if (sym_python_identifier_character_set_7(lookahead)) ADVANCE(836); END_STATE(); case 817: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '_') ADVANCE(823); - if (sym_python_identifier_character_set_7(lookahead)) ADVANCE(837); + if (lookahead == '_') ADVANCE(517); + if (sym_python_identifier_character_set_7(lookahead)) ADVANCE(836); END_STATE(); case 818: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '_') ADVANCE(518); - if (sym_python_identifier_character_set_7(lookahead)) ADVANCE(837); + if (lookahead == '_') ADVANCE(817); + if (sym_python_identifier_character_set_7(lookahead)) ADVANCE(836); END_STATE(); case 819: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == '_') ADVANCE(818); - if (sym_python_identifier_character_set_7(lookahead)) ADVANCE(837); + if (lookahead == 'd') ADVANCE(581); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); case 820: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == 'd') ADVANCE(582); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (lookahead == 'e') ADVANCE(818); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); case 821: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == 'e') ADVANCE(819); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (lookahead == 'f') ADVANCE(556); + if (lookahead == 'n') ADVANCE(553); + if (lookahead == 's') ADVANCE(622); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); case 822: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == 'f') ADVANCE(557); - if (lookahead == 'n') ADVANCE(554); - if (lookahead == 's') ADVANCE(623); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (lookahead == 'f') ADVANCE(835); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); case 823: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == 'f') ADVANCE(836); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (lookahead == 'm') ADVANCE(827); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); case 824: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == 'm') ADVANCE(828); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (lookahead == 'n') ADVANCE(819); + if (lookahead == 's') ADVANCE(523); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); case 825: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == 'n') ADVANCE(820); - if (lookahead == 's') ADVANCE(524); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (lookahead == 'o') ADVANCE(831); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); case 826: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == 'o') ADVANCE(832); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (lookahead == 'o') ADVANCE(830); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); case 827: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == 'o') ADVANCE(831); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (lookahead == 'p') ADVANCE(826); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); case 828: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == 'p') ADVANCE(827); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (lookahead == 'r') ADVANCE(584); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); case 829: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == 'r') ADVANCE(585); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (lookahead == 'r') ADVANCE(820); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); case 830: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == 'r') ADVANCE(821); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (lookahead == 'r') ADVANCE(832); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); case 831: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == 'r') ADVANCE(833); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (lookahead == 't') ADVANCE(578); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); case 832: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == 't') ADVANCE(579); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (lookahead == 't') ADVANCE(510); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); case 833: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == 't') ADVANCE(511); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (lookahead == 't') ADVANCE(834); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); case 834: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == 't') ADVANCE(835); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (lookahead == 'u') ADVANCE(829); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); case 835: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == 'u') ADVANCE(830); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (lookahead == 'u') ADVANCE(833); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); case 836: ACCEPT_TOKEN(sym_python_identifier); - if (lookahead == 'u') ADVANCE(834); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(836); END_STATE(); case 837: - ACCEPT_TOKEN(sym_python_identifier); - if (sym_python_identifier_character_set_6(lookahead)) ADVANCE(837); + ACCEPT_TOKEN(sym_line_continuation); END_STATE(); case 838: - ACCEPT_TOKEN(sym_line_continuation); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(177); + if (lookahead == '-') ADVANCE(965); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 839: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(179); - if (lookahead == '-') ADVANCE(961); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(670); - if (('A' <= lookahead && lookahead <= 'Z') || + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'C') ADVANCE(857); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 840: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'C') ADVANCE(858); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'D') ADVANCE(842); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 841: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'D') ADVANCE(843); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'E') ADVANCE(853); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 842: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); + if (lookahead == '.') ADVANCE(969); if (lookahead == 'E') ADVANCE(854); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 843: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'E') ADVANCE(855); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'F') ADVANCE(858); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 844: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'F') ADVANCE(859); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'I') ADVANCE(840); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 845: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'I') ADVANCE(841); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'I') ADVANCE(849); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 846: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'I') ADVANCE(850); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'N') ADVANCE(839); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 847: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'N') ADVANCE(840); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'N') ADVANCE(855); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 848: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'N') ADVANCE(856); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'O') ADVANCE(851); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 849: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'O') ADVANCE(852); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'O') ADVANCE(847); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 850: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'O') ADVANCE(848); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'P') ADVANCE(848); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 851: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'P') ADVANCE(849); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'R') ADVANCE(856); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 852: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'R') ADVANCE(857); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'R') ADVANCE(844); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 853: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'R') ADVANCE(845); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'R') ADVANCE(852); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 854: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'R') ADVANCE(853); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'S') ADVANCE(459); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 855: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'S') ADVANCE(460); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'S') ADVANCE(461); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 856: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'S') ADVANCE(462); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'T') ADVANCE(861); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 857: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'T') ADVANCE(862); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'T') ADVANCE(845); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 858: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'T') ADVANCE(846); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'U') ADVANCE(846); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 859: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'U') ADVANCE(847); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'V') ADVANCE(841); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 860: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'V') ADVANCE(842); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'X') ADVANCE(850); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 861: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'X') ADVANCE(851); + if (lookahead == '.') ADVANCE(969); + if (lookahead == '_') ADVANCE(843); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 862: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == '_') ADVANCE(844); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'a') ADVANCE(897); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 863: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'a') ADVANCE(894); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'a') ADVANCE(924); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 864: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'a') ADVANCE(920); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'a') ADVANCE(904); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 865: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'a') ADVANCE(901); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'a') ADVANCE(925); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 866: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'a') ADVANCE(921); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'c') ADVANCE(898); + if (lookahead == 'h') ADVANCE(883); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 867: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'c') ADVANCE(895); - if (lookahead == 'h') ADVANCE(882); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'd') ADVANCE(891); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 868: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'd') ADVANCE(888); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'd') ADVANCE(229); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 869: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); + if (lookahead == '.') ADVANCE(969); if (lookahead == 'd') ADVANCE(231); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 870: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'd') ADVANCE(233); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'd') ADVANCE(867); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 871: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'd') ADVANCE(868); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'd') ADVANCE(899); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 872: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'd') ADVANCE(896); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'd') ADVANCE(876); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 873: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'd') ADVANCE(876); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'd') ADVANCE(878); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 874: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'e') ADVANCE(887); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'e') ADVANCE(889); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 875: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'e') ADVANCE(913); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'e') ADVANCE(916); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 876: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'e') ADVANCE(248); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'e') ADVANCE(247); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 877: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'e') ADVANCE(456); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'e') ADVANCE(455); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 878: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'e') ADVANCE(897); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'e') ADVANCE(890); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 879: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'e') ADVANCE(235); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'e') ADVANCE(900); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 880: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'e') ADVANCE(916); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'e') ADVANCE(233); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 881: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'e') ADVANCE(924); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'e') ADVANCE(920); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 882: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'e') ADVANCE(915); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'e') ADVANCE(928); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 883: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'e') ADVANCE(914); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'e') ADVANCE(919); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 884: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'e') ADVANCE(902); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'e') ADVANCE(917); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 885: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'e') ADVANCE(903); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'e') ADVANCE(918); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 886: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'e') ADVANCE(912); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'e') ADVANCE(905); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 887: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'f') ADVANCE(506); - if (lookahead == 'l') ADVANCE(928); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'e') ADVANCE(906); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 888: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'h') ADVANCE(865); - if (lookahead == 't') ADVANCE(864); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'e') ADVANCE(915); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 889: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'h') ADVANCE(906); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'f') ADVANCE(505); + if (lookahead == 'l') ADVANCE(932); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 890: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'i') ADVANCE(918); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'f') ADVANCE(885); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 891: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'i') ADVANCE(926); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'h') ADVANCE(864); + if (lookahead == 't') ADVANCE(863); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 892: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'k') ADVANCE(464); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'h') ADVANCE(909); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 893: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'k') ADVANCE(469); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'i') ADVANCE(922); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 894: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'k') ADVANCE(880); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'i') ADVANCE(930); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 895: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'l') ADVANCE(930); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'k') ADVANCE(463); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 896: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'l') ADVANCE(883); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'k') ADVANCE(468); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 897: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'm') ADVANCE(905); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'k') ADVANCE(881); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 898: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'n') ADVANCE(867); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'l') ADVANCE(934); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 899: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'n') ADVANCE(922); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'l') ADVANCE(884); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 900: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'n') ADVANCE(476); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'm') ADVANCE(908); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 901: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'n') ADVANCE(872); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'n') ADVANCE(866); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 902: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'n') ADVANCE(869); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'n') ADVANCE(926); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 903: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'n') ADVANCE(870); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'n') ADVANCE(475); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 904: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'o') ADVANCE(917); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'n') ADVANCE(871); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 905: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'o') ADVANCE(931); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'n') ADVANCE(868); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 906: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'o') ADVANCE(900); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'n') ADVANCE(869); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 907: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'o') ADVANCE(908); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'o') ADVANCE(921); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 908: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'o') ADVANCE(927); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'o') ADVANCE(935); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 909: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'p') ADVANCE(904); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'o') ADVANCE(903); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 910: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'p') ADVANCE(911); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'o') ADVANCE(911); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 911: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'p') ADVANCE(884); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'o') ADVANCE(931); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 912: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'p') ADVANCE(885); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'p') ADVANCE(907); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 913: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'q') ADVANCE(929); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'p') ADVANCE(914); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 914: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'r') ADVANCE(471); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'p') ADVANCE(886); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 915: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'r') ADVANCE(891); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'p') ADVANCE(887); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 916: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'r') ADVANCE(907); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'q') ADVANCE(933); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 917: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'r') ADVANCE(925); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'r') ADVANCE(470); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 918: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'r') ADVANCE(877); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'r') ADVANCE(237); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 919: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'r') ADVANCE(886); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'r') ADVANCE(894); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 920: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 's') ADVANCE(892); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'r') ADVANCE(910); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 921: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 's') ADVANCE(893); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'r') ADVANCE(929); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 922: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 's') ADVANCE(881); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'r') ADVANCE(877); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 923: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 't') ADVANCE(889); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'r') ADVANCE(888); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 924: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 't') ADVANCE(237); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 's') ADVANCE(895); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 925: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 't') ADVANCE(458); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 's') ADVANCE(896); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 926: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 't') ADVANCE(238); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 's') ADVANCE(882); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 927: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 't') ADVANCE(473); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 't') ADVANCE(892); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 928: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 't') ADVANCE(866); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 't') ADVANCE(235); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 929: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'u') ADVANCE(890); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 't') ADVANCE(457); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 930: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'u') ADVANCE(873); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 't') ADVANCE(236); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 931: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'v') ADVANCE(879); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 't') ADVANCE(472); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 932: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'x') ADVANCE(909); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 't') ADVANCE(865); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 933: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); - if (lookahead == 'y') ADVANCE(923); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'u') ADVANCE(893); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 934: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(965); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'u') ADVANCE(872); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 935: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(959); - if (lookahead == '0' || - lookahead == '1') ADVANCE(662); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'v') ADVANCE(880); if (lookahead == '-' || - ('2' <= lookahead && lookahead <= '9') || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 936: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(960); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(663); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'x') ADVANCE(912); if (lookahead == '-' || - lookahead == '8' || - lookahead == '9' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 937: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(962); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(664); + if (lookahead == '.') ADVANCE(969); + if (lookahead == 'y') ADVANCE(927); if (lookahead == '-' || - ('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 938: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(946); + if (lookahead == '.') ADVANCE(969); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(938); END_STATE(); case 939: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(952); + if (lookahead == '_') ADVANCE(963); + if (lookahead == '0' || + lookahead == '1') ADVANCE(661); if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + ('2' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 940: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(468); + if (lookahead == '_') ADVANCE(964); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(662); if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + lookahead == '8' || + lookahead == '9' || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 941: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(944); + if (lookahead == '_') ADVANCE(966); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(663); if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 942: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(953); + if (lookahead == 'a') ADVANCE(950); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 943: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(955); + if (lookahead == 'e') ADVANCE(947); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 944: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(951); + if (lookahead == 'e') ADVANCE(467); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 945: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(948); + if (lookahead == 'e') ADVANCE(958); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 946: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(942); + if (lookahead == 'e') ADVANCE(956); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 947: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(477); + if (lookahead == 'f') ADVANCE(952); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 948: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(947); + if (lookahead == 'f') ADVANCE(961); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 949: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(956); + if (lookahead == 'h') ADVANCE(954); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 950: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(949); + if (lookahead == 'k') ADVANCE(945); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 951: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(954); + if (lookahead == 'n') ADVANCE(476); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 952: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(466); + if (lookahead == 'o') ADVANCE(957); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 953: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(950); + if (lookahead == 'o') ADVANCE(959); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 954: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(940); + if (lookahead == 'o') ADVANCE(951); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 955: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(939); + if (lookahead == 'o') ADVANCE(953); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 956: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(474); + if (lookahead == 'r') ADVANCE(465); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 957: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(945); + if (lookahead == 'r') ADVANCE(944); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 958: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(957); + if (lookahead == 'r') ADVANCE(955); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); case 959: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(473); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); + END_STATE(); + case 960: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(949); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); + END_STATE(); + case 961: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(946); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); + END_STATE(); + case 962: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(960); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); + END_STATE(); + case 963: ACCEPT_TOKEN(sym_identifier); if (lookahead == '0' || - lookahead == '1') ADVANCE(662); + lookahead == '1') ADVANCE(661); if (lookahead == '-' || ('2' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); - case 960: + case 964: ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(663); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(662); if (lookahead == '-' || lookahead == '8' || lookahead == '9' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); - case 961: + case 965: ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(670); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); - case 962: + case 966: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(664); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(663); if (lookahead == '-' || ('G' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); - case 963: + case 967: ACCEPT_TOKEN(sym_identifier); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(963); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(967); END_STATE(); - case 964: + case 968: ACCEPT_TOKEN(aux_sym__dotted_identifier_token1); - if (lookahead == '=') ADVANCE(213); + if (lookahead == '=') ADVANCE(211); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(965); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(969); END_STATE(); - case 965: + case 969: ACCEPT_TOKEN(aux_sym__dotted_identifier_token1); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(965); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(969); END_STATE(); - case 966: + case 970: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(498); - if (lookahead == '\r') ADVANCE(967); - if (lookahead != 0) ADVANCE(970); + if (lookahead == '\n') ADVANCE(497); + if (lookahead == '\r') ADVANCE(971); + if (lookahead != 0) ADVANCE(974); END_STATE(); - case 967: + case 971: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(498); - if (lookahead != 0) ADVANCE(970); + if (lookahead == '\n') ADVANCE(497); + if (lookahead != 0) ADVANCE(974); END_STATE(); - case 968: + case 972: ACCEPT_TOKEN(sym_comment); if (lookahead == '\r' || - lookahead == ' ') ADVANCE(970); + lookahead == ' ') ADVANCE(974); if (lookahead != 0 && - lookahead != '\n') ADVANCE(243); + lookahead != '\n') ADVANCE(242); END_STATE(); - case 969: + case 973: ACCEPT_TOKEN(sym_comment); if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r') || + lookahead == '\r' || lookahead == ' ' || lookahead == '"' || lookahead == '$' || lookahead == '{' || - lookahead == '}') ADVANCE(970); + lookahead == '}') ADVANCE(974); if (lookahead != 0 && - lookahead != '\n') ADVANCE(969); + lookahead != '\n') ADVANCE(973); END_STATE(); - case 970: + case 974: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(970); + lookahead != '\n') ADVANCE(974); END_STATE(); default: return false; @@ -20758,2593 +21353,2718 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 194, .external_lex_state = 2}, - [2] = {.lex_state = 38, .external_lex_state = 3}, - [3] = {.lex_state = 38, .external_lex_state = 3}, - [4] = {.lex_state = 38, .external_lex_state = 3}, - [5] = {.lex_state = 38, .external_lex_state = 3}, - [6] = {.lex_state = 38, .external_lex_state = 3}, - [7] = {.lex_state = 38, .external_lex_state = 3}, - [8] = {.lex_state = 38, .external_lex_state = 3}, - [9] = {.lex_state = 38, .external_lex_state = 3}, - [10] = {.lex_state = 38, .external_lex_state = 3}, - [11] = {.lex_state = 38, .external_lex_state = 3}, - [12] = {.lex_state = 38, .external_lex_state = 3}, - [13] = {.lex_state = 38, .external_lex_state = 3}, - [14] = {.lex_state = 38, .external_lex_state = 3}, - [15] = {.lex_state = 38, .external_lex_state = 3}, - [16] = {.lex_state = 38, .external_lex_state = 3}, - [17] = {.lex_state = 38, .external_lex_state = 3}, - [18] = {.lex_state = 38, .external_lex_state = 3}, - [19] = {.lex_state = 38, .external_lex_state = 3}, - [20] = {.lex_state = 38, .external_lex_state = 3}, - [21] = {.lex_state = 38, .external_lex_state = 3}, - [22] = {.lex_state = 38, .external_lex_state = 3}, - [23] = {.lex_state = 38, .external_lex_state = 3}, - [24] = {.lex_state = 38, .external_lex_state = 3}, - [25] = {.lex_state = 38, .external_lex_state = 3}, - [26] = {.lex_state = 38, .external_lex_state = 3}, - [27] = {.lex_state = 38, .external_lex_state = 3}, - [28] = {.lex_state = 38, .external_lex_state = 3}, - [29] = {.lex_state = 38, .external_lex_state = 3}, - [30] = {.lex_state = 38, .external_lex_state = 3}, - [31] = {.lex_state = 38, .external_lex_state = 3}, - [32] = {.lex_state = 38, .external_lex_state = 3}, - [33] = {.lex_state = 38, .external_lex_state = 3}, - [34] = {.lex_state = 38, .external_lex_state = 3}, - [35] = {.lex_state = 38, .external_lex_state = 3}, - [36] = {.lex_state = 60, .external_lex_state = 4}, - [37] = {.lex_state = 25, .external_lex_state = 5}, - [38] = {.lex_state = 60, .external_lex_state = 4}, - [39] = {.lex_state = 25, .external_lex_state = 5}, - [40] = {.lex_state = 55, .external_lex_state = 4}, - [41] = {.lex_state = 55, .external_lex_state = 4}, - [42] = {.lex_state = 55, .external_lex_state = 4}, - [43] = {.lex_state = 55, .external_lex_state = 4}, - [44] = {.lex_state = 55, .external_lex_state = 4}, - [45] = {.lex_state = 55, .external_lex_state = 4}, - [46] = {.lex_state = 55, .external_lex_state = 4}, - [47] = {.lex_state = 55, .external_lex_state = 4}, - [48] = {.lex_state = 55, .external_lex_state = 4}, - [49] = {.lex_state = 55, .external_lex_state = 4}, - [50] = {.lex_state = 55, .external_lex_state = 4}, - [51] = {.lex_state = 55, .external_lex_state = 4}, - [52] = {.lex_state = 55, .external_lex_state = 4}, - [53] = {.lex_state = 55, .external_lex_state = 4}, - [54] = {.lex_state = 55, .external_lex_state = 4}, - [55] = {.lex_state = 55, .external_lex_state = 4}, - [56] = {.lex_state = 55, .external_lex_state = 4}, - [57] = {.lex_state = 55, .external_lex_state = 4}, - [58] = {.lex_state = 55, .external_lex_state = 4}, - [59] = {.lex_state = 55, .external_lex_state = 4}, - [60] = {.lex_state = 55, .external_lex_state = 4}, - [61] = {.lex_state = 55, .external_lex_state = 5}, - [62] = {.lex_state = 55, .external_lex_state = 5}, - [63] = {.lex_state = 55, .external_lex_state = 5}, - [64] = {.lex_state = 55, .external_lex_state = 5}, - [65] = {.lex_state = 55, .external_lex_state = 5}, - [66] = {.lex_state = 55, .external_lex_state = 5}, - [67] = {.lex_state = 55, .external_lex_state = 5}, - [68] = {.lex_state = 55, .external_lex_state = 5}, - [69] = {.lex_state = 55, .external_lex_state = 5}, - [70] = {.lex_state = 55, .external_lex_state = 5}, - [71] = {.lex_state = 55, .external_lex_state = 5}, - [72] = {.lex_state = 55, .external_lex_state = 5}, - [73] = {.lex_state = 55, .external_lex_state = 5}, - [74] = {.lex_state = 55, .external_lex_state = 5}, - [75] = {.lex_state = 55, .external_lex_state = 5}, - [76] = {.lex_state = 55, .external_lex_state = 5}, - [77] = {.lex_state = 55, .external_lex_state = 5}, - [78] = {.lex_state = 55, .external_lex_state = 5}, - [79] = {.lex_state = 55, .external_lex_state = 6}, - [80] = {.lex_state = 26, .external_lex_state = 5}, - [81] = {.lex_state = 26, .external_lex_state = 5}, - [82] = {.lex_state = 27, .external_lex_state = 5}, - [83] = {.lex_state = 22, .external_lex_state = 5}, - [84] = {.lex_state = 22, .external_lex_state = 7}, - [85] = {.lex_state = 22, .external_lex_state = 7}, - [86] = {.lex_state = 33, .external_lex_state = 5}, - [87] = {.lex_state = 31, .external_lex_state = 7}, - [88] = {.lex_state = 23, .external_lex_state = 5}, - [89] = {.lex_state = 23, .external_lex_state = 7}, - [90] = {.lex_state = 31, .external_lex_state = 7}, - [91] = {.lex_state = 23, .external_lex_state = 7}, - [92] = {.lex_state = 31, .external_lex_state = 8}, - [93] = {.lex_state = 23, .external_lex_state = 5}, - [94] = {.lex_state = 22, .external_lex_state = 8}, - [95] = {.lex_state = 23, .external_lex_state = 8}, - [96] = {.lex_state = 31, .external_lex_state = 9}, - [97] = {.lex_state = 22, .external_lex_state = 8}, - [98] = {.lex_state = 43, .external_lex_state = 5}, - [99] = {.lex_state = 31, .external_lex_state = 9}, - [100] = {.lex_state = 22, .external_lex_state = 6}, - [101] = {.lex_state = 31, .external_lex_state = 8}, - [102] = {.lex_state = 31, .external_lex_state = 8}, - [103] = {.lex_state = 32, .external_lex_state = 7}, - [104] = {.lex_state = 31, .external_lex_state = 9}, - [105] = {.lex_state = 31, .external_lex_state = 8}, - [106] = {.lex_state = 32, .external_lex_state = 7}, - [107] = {.lex_state = 22, .external_lex_state = 9}, - [108] = {.lex_state = 33, .external_lex_state = 5}, - [109] = {.lex_state = 23, .external_lex_state = 8}, - [110] = {.lex_state = 33, .external_lex_state = 5}, - [111] = {.lex_state = 43, .external_lex_state = 5}, - [112] = {.lex_state = 31, .external_lex_state = 8}, - [113] = {.lex_state = 23, .external_lex_state = 6}, - [114] = {.lex_state = 22, .external_lex_state = 8}, - [115] = {.lex_state = 23, .external_lex_state = 9}, - [116] = {.lex_state = 31, .external_lex_state = 9}, - [117] = {.lex_state = 23, .external_lex_state = 6}, - [118] = {.lex_state = 22, .external_lex_state = 9}, - [119] = {.lex_state = 31, .external_lex_state = 8}, - [120] = {.lex_state = 23, .external_lex_state = 9}, - [121] = {.lex_state = 31, .external_lex_state = 9}, - [122] = {.lex_state = 22, .external_lex_state = 7}, - [123] = {.lex_state = 43, .external_lex_state = 6}, - [124] = {.lex_state = 43, .external_lex_state = 6}, - [125] = {.lex_state = 34, .external_lex_state = 6}, - [126] = {.lex_state = 34, .external_lex_state = 6}, - [127] = {.lex_state = 34, .external_lex_state = 6}, - [128] = {.lex_state = 47, .external_lex_state = 8}, - [129] = {.lex_state = 47, .external_lex_state = 9}, - [130] = {.lex_state = 47, .external_lex_state = 6}, - [131] = {.lex_state = 47, .external_lex_state = 8}, - [132] = {.lex_state = 59, .external_lex_state = 7}, - [133] = {.lex_state = 59, .external_lex_state = 7}, - [134] = {.lex_state = 47, .external_lex_state = 8}, - [135] = {.lex_state = 47, .external_lex_state = 9}, - [136] = {.lex_state = 47, .external_lex_state = 8}, - [137] = {.lex_state = 47, .external_lex_state = 9}, - [138] = {.lex_state = 47, .external_lex_state = 6}, - [139] = {.lex_state = 47, .external_lex_state = 8}, - [140] = {.lex_state = 59, .external_lex_state = 7}, - [141] = {.lex_state = 47, .external_lex_state = 6}, - [142] = {.lex_state = 47, .external_lex_state = 9}, - [143] = {.lex_state = 59, .external_lex_state = 7}, - [144] = {.lex_state = 47, .external_lex_state = 9}, - [145] = {.lex_state = 47, .external_lex_state = 9}, - [146] = {.lex_state = 47, .external_lex_state = 8}, - [147] = {.lex_state = 59, .external_lex_state = 7}, - [148] = {.lex_state = 59, .external_lex_state = 7}, - [149] = {.lex_state = 47, .external_lex_state = 9}, - [150] = {.lex_state = 47, .external_lex_state = 8}, - [151] = {.lex_state = 47, .external_lex_state = 9}, - [152] = {.lex_state = 47, .external_lex_state = 8}, - [153] = {.lex_state = 47, .external_lex_state = 8}, - [154] = {.lex_state = 47, .external_lex_state = 8}, - [155] = {.lex_state = 47, .external_lex_state = 9}, - [156] = {.lex_state = 59, .external_lex_state = 7}, - [157] = {.lex_state = 47, .external_lex_state = 8}, - [158] = {.lex_state = 47, .external_lex_state = 9}, - [159] = {.lex_state = 59, .external_lex_state = 7}, - [160] = {.lex_state = 47, .external_lex_state = 9}, - [161] = {.lex_state = 45, .external_lex_state = 5}, - [162] = {.lex_state = 45, .external_lex_state = 5}, - [163] = {.lex_state = 47, .external_lex_state = 6}, - [164] = {.lex_state = 47, .external_lex_state = 6}, - [165] = {.lex_state = 48, .external_lex_state = 6}, - [166] = {.lex_state = 48, .external_lex_state = 8}, - [167] = {.lex_state = 48, .external_lex_state = 6}, - [168] = {.lex_state = 48, .external_lex_state = 6}, - [169] = {.lex_state = 48, .external_lex_state = 6}, - [170] = {.lex_state = 16, .external_lex_state = 7}, - [171] = {.lex_state = 48, .external_lex_state = 8}, - [172] = {.lex_state = 45, .external_lex_state = 6}, - [173] = {.lex_state = 48, .external_lex_state = 6}, - [174] = {.lex_state = 48, .external_lex_state = 6}, - [175] = {.lex_state = 48, .external_lex_state = 6}, - [176] = {.lex_state = 48, .external_lex_state = 8}, - [177] = {.lex_state = 48, .external_lex_state = 8}, - [178] = {.lex_state = 48, .external_lex_state = 6}, - [179] = {.lex_state = 48, .external_lex_state = 8}, - [180] = {.lex_state = 48, .external_lex_state = 6}, - [181] = {.lex_state = 48, .external_lex_state = 6}, - [182] = {.lex_state = 48, .external_lex_state = 6}, - [183] = {.lex_state = 48, .external_lex_state = 6}, - [184] = {.lex_state = 48, .external_lex_state = 8}, - [185] = {.lex_state = 48, .external_lex_state = 8}, - [186] = {.lex_state = 48, .external_lex_state = 6}, - [187] = {.lex_state = 48, .external_lex_state = 6}, - [188] = {.lex_state = 48, .external_lex_state = 6}, - [189] = {.lex_state = 48, .external_lex_state = 6}, - [190] = {.lex_state = 48, .external_lex_state = 6}, - [191] = {.lex_state = 47, .external_lex_state = 8}, - [192] = {.lex_state = 48, .external_lex_state = 6}, - [193] = {.lex_state = 48, .external_lex_state = 8}, - [194] = {.lex_state = 45, .external_lex_state = 6}, - [195] = {.lex_state = 48, .external_lex_state = 8}, - [196] = {.lex_state = 48, .external_lex_state = 8}, - [197] = {.lex_state = 48, .external_lex_state = 8}, - [198] = {.lex_state = 48, .external_lex_state = 8}, - [199] = {.lex_state = 47, .external_lex_state = 9}, - [200] = {.lex_state = 48, .external_lex_state = 8}, - [201] = {.lex_state = 47, .external_lex_state = 8}, - [202] = {.lex_state = 48, .external_lex_state = 8}, - [203] = {.lex_state = 48, .external_lex_state = 8}, - [204] = {.lex_state = 48, .external_lex_state = 8}, - [205] = {.lex_state = 48, .external_lex_state = 8}, - [206] = {.lex_state = 48, .external_lex_state = 8}, - [207] = {.lex_state = 48, .external_lex_state = 8}, - [208] = {.lex_state = 47, .external_lex_state = 8}, - [209] = {.lex_state = 47, .external_lex_state = 8}, - [210] = {.lex_state = 48, .external_lex_state = 8}, - [211] = {.lex_state = 47, .external_lex_state = 8}, - [212] = {.lex_state = 48, .external_lex_state = 8}, - [213] = {.lex_state = 48, .external_lex_state = 8}, - [214] = {.lex_state = 48, .external_lex_state = 8}, - [215] = {.lex_state = 48, .external_lex_state = 8}, - [216] = {.lex_state = 48, .external_lex_state = 8}, - [217] = {.lex_state = 47, .external_lex_state = 9}, - [218] = {.lex_state = 47, .external_lex_state = 9}, - [219] = {.lex_state = 47, .external_lex_state = 8}, - [220] = {.lex_state = 48, .external_lex_state = 8}, - [221] = {.lex_state = 47, .external_lex_state = 9}, - [222] = {.lex_state = 47, .external_lex_state = 8}, - [223] = {.lex_state = 47, .external_lex_state = 8}, - [224] = {.lex_state = 48, .external_lex_state = 8}, - [225] = {.lex_state = 48, .external_lex_state = 8}, - [226] = {.lex_state = 48, .external_lex_state = 8}, - [227] = {.lex_state = 48, .external_lex_state = 8}, - [228] = {.lex_state = 48, .external_lex_state = 8}, - [229] = {.lex_state = 47, .external_lex_state = 8}, - [230] = {.lex_state = 47, .external_lex_state = 8}, - [231] = {.lex_state = 47, .external_lex_state = 9}, - [232] = {.lex_state = 48, .external_lex_state = 8}, - [233] = {.lex_state = 48, .external_lex_state = 8}, - [234] = {.lex_state = 48, .external_lex_state = 8}, - [235] = {.lex_state = 48, .external_lex_state = 8}, - [236] = {.lex_state = 47, .external_lex_state = 8}, - [237] = {.lex_state = 48, .external_lex_state = 8}, - [238] = {.lex_state = 48, .external_lex_state = 8}, - [239] = {.lex_state = 47, .external_lex_state = 8}, - [240] = {.lex_state = 47, .external_lex_state = 8}, - [241] = {.lex_state = 47, .external_lex_state = 9}, - [242] = {.lex_state = 47, .external_lex_state = 8}, - [243] = {.lex_state = 48, .external_lex_state = 8}, - [244] = {.lex_state = 48, .external_lex_state = 8}, - [245] = {.lex_state = 48, .external_lex_state = 8}, - [246] = {.lex_state = 47, .external_lex_state = 8}, - [247] = {.lex_state = 47, .external_lex_state = 9}, - [248] = {.lex_state = 47, .external_lex_state = 9}, - [249] = {.lex_state = 15, .external_lex_state = 7}, - [250] = {.lex_state = 46, .external_lex_state = 8}, - [251] = {.lex_state = 48, .external_lex_state = 6}, - [252] = {.lex_state = 46, .external_lex_state = 7}, - [253] = {.lex_state = 46, .external_lex_state = 8}, - [254] = {.lex_state = 46, .external_lex_state = 8}, - [255] = {.lex_state = 46, .external_lex_state = 8}, - [256] = {.lex_state = 47, .external_lex_state = 8}, - [257] = {.lex_state = 47, .external_lex_state = 9}, - [258] = {.lex_state = 47, .external_lex_state = 8}, - [259] = {.lex_state = 47, .external_lex_state = 7}, - [260] = {.lex_state = 47, .external_lex_state = 9}, - [261] = {.lex_state = 46, .external_lex_state = 7}, - [262] = {.lex_state = 17, .external_lex_state = 7}, - [263] = {.lex_state = 47, .external_lex_state = 7}, - [264] = {.lex_state = 17, .external_lex_state = 7}, - [265] = {.lex_state = 46, .external_lex_state = 9}, - [266] = {.lex_state = 15, .external_lex_state = 7}, - [267] = {.lex_state = 46, .external_lex_state = 9}, - [268] = {.lex_state = 46, .external_lex_state = 9}, - [269] = {.lex_state = 46, .external_lex_state = 7}, - [270] = {.lex_state = 46, .external_lex_state = 7}, - [271] = {.lex_state = 46, .external_lex_state = 9}, - [272] = {.lex_state = 48, .external_lex_state = 7}, - [273] = {.lex_state = 48, .external_lex_state = 7}, - [274] = {.lex_state = 48, .external_lex_state = 7}, - [275] = {.lex_state = 48, .external_lex_state = 7}, - [276] = {.lex_state = 47, .external_lex_state = 6}, - [277] = {.lex_state = 48, .external_lex_state = 7}, - [278] = {.lex_state = 48, .external_lex_state = 7}, - [279] = {.lex_state = 48, .external_lex_state = 7}, - [280] = {.lex_state = 48, .external_lex_state = 7}, - [281] = {.lex_state = 48, .external_lex_state = 7}, - [282] = {.lex_state = 48, .external_lex_state = 7}, - [283] = {.lex_state = 47, .external_lex_state = 6}, - [284] = {.lex_state = 48, .external_lex_state = 7}, - [285] = {.lex_state = 48, .external_lex_state = 7}, - [286] = {.lex_state = 48, .external_lex_state = 7}, - [287] = {.lex_state = 16, .external_lex_state = 5}, - [288] = {.lex_state = 16, .external_lex_state = 8}, - [289] = {.lex_state = 48, .external_lex_state = 7}, - [290] = {.lex_state = 48, .external_lex_state = 7}, - [291] = {.lex_state = 16, .external_lex_state = 5}, - [292] = {.lex_state = 16, .external_lex_state = 9}, - [293] = {.lex_state = 47, .external_lex_state = 6}, - [294] = {.lex_state = 48, .external_lex_state = 7}, - [295] = {.lex_state = 17, .external_lex_state = 9}, - [296] = {.lex_state = 17, .external_lex_state = 9}, - [297] = {.lex_state = 17, .external_lex_state = 9}, - [298] = {.lex_state = 15, .external_lex_state = 8}, - [299] = {.lex_state = 17, .external_lex_state = 9}, - [300] = {.lex_state = 17, .external_lex_state = 9}, - [301] = {.lex_state = 17, .external_lex_state = 9}, - [302] = {.lex_state = 48, .external_lex_state = 6}, - [303] = {.lex_state = 17, .external_lex_state = 5}, - [304] = {.lex_state = 17, .external_lex_state = 9}, - [305] = {.lex_state = 17, .external_lex_state = 9}, - [306] = {.lex_state = 17, .external_lex_state = 9}, - [307] = {.lex_state = 17, .external_lex_state = 9}, - [308] = {.lex_state = 17, .external_lex_state = 9}, - [309] = {.lex_state = 17, .external_lex_state = 9}, - [310] = {.lex_state = 17, .external_lex_state = 9}, - [311] = {.lex_state = 16, .external_lex_state = 5}, - [312] = {.lex_state = 17, .external_lex_state = 9}, - [313] = {.lex_state = 17, .external_lex_state = 9}, - [314] = {.lex_state = 17, .external_lex_state = 9}, - [315] = {.lex_state = 16, .external_lex_state = 5}, - [316] = {.lex_state = 17, .external_lex_state = 9}, - [317] = {.lex_state = 17, .external_lex_state = 9}, - [318] = {.lex_state = 17, .external_lex_state = 9}, - [319] = {.lex_state = 17, .external_lex_state = 9}, - [320] = {.lex_state = 15, .external_lex_state = 8}, - [321] = {.lex_state = 17, .external_lex_state = 9}, - [322] = {.lex_state = 17, .external_lex_state = 9}, - [323] = {.lex_state = 17, .external_lex_state = 9}, - [324] = {.lex_state = 17, .external_lex_state = 9}, - [325] = {.lex_state = 17, .external_lex_state = 9}, - [326] = {.lex_state = 17, .external_lex_state = 9}, - [327] = {.lex_state = 17, .external_lex_state = 9}, - [328] = {.lex_state = 17, .external_lex_state = 9}, - [329] = {.lex_state = 17, .external_lex_state = 9}, - [330] = {.lex_state = 17, .external_lex_state = 9}, - [331] = {.lex_state = 17, .external_lex_state = 9}, - [332] = {.lex_state = 17, .external_lex_state = 9}, - [333] = {.lex_state = 17, .external_lex_state = 5}, - [334] = {.lex_state = 17, .external_lex_state = 6}, - [335] = {.lex_state = 17, .external_lex_state = 6}, - [336] = {.lex_state = 17, .external_lex_state = 5}, - [337] = {.lex_state = 17, .external_lex_state = 6}, - [338] = {.lex_state = 17, .external_lex_state = 9}, - [339] = {.lex_state = 17, .external_lex_state = 5}, - [340] = {.lex_state = 17, .external_lex_state = 6}, - [341] = {.lex_state = 17, .external_lex_state = 5}, - [342] = {.lex_state = 17, .external_lex_state = 6}, - [343] = {.lex_state = 17, .external_lex_state = 6}, - [344] = {.lex_state = 17, .external_lex_state = 6}, - [345] = {.lex_state = 17, .external_lex_state = 6}, - [346] = {.lex_state = 17, .external_lex_state = 5}, - [347] = {.lex_state = 17, .external_lex_state = 6}, - [348] = {.lex_state = 17, .external_lex_state = 8}, - [349] = {.lex_state = 17, .external_lex_state = 6}, - [350] = {.lex_state = 17, .external_lex_state = 5}, - [351] = {.lex_state = 17, .external_lex_state = 6}, - [352] = {.lex_state = 15, .external_lex_state = 9}, - [353] = {.lex_state = 15, .external_lex_state = 8}, - [354] = {.lex_state = 17, .external_lex_state = 6}, - [355] = {.lex_state = 17, .external_lex_state = 6}, - [356] = {.lex_state = 15, .external_lex_state = 8}, - [357] = {.lex_state = 15, .external_lex_state = 9}, - [358] = {.lex_state = 17, .external_lex_state = 6}, - [359] = {.lex_state = 15, .external_lex_state = 6}, - [360] = {.lex_state = 44, .external_lex_state = 6}, - [361] = {.lex_state = 17, .external_lex_state = 6}, - [362] = {.lex_state = 17, .external_lex_state = 6}, - [363] = {.lex_state = 17, .external_lex_state = 8}, - [364] = {.lex_state = 17, .external_lex_state = 6}, - [365] = {.lex_state = 17, .external_lex_state = 6}, - [366] = {.lex_state = 17, .external_lex_state = 9}, - [367] = {.lex_state = 17, .external_lex_state = 9}, - [368] = {.lex_state = 17, .external_lex_state = 6}, - [369] = {.lex_state = 15, .external_lex_state = 6}, - [370] = {.lex_state = 17, .external_lex_state = 6}, - [371] = {.lex_state = 17, .external_lex_state = 6}, - [372] = {.lex_state = 17, .external_lex_state = 6}, - [373] = {.lex_state = 17, .external_lex_state = 9}, - [374] = {.lex_state = 17, .external_lex_state = 6}, - [375] = {.lex_state = 17, .external_lex_state = 6}, - [376] = {.lex_state = 17, .external_lex_state = 5}, - [377] = {.lex_state = 44, .external_lex_state = 6}, - [378] = {.lex_state = 17, .external_lex_state = 5}, - [379] = {.lex_state = 17, .external_lex_state = 6}, - [380] = {.lex_state = 17, .external_lex_state = 6}, - [381] = {.lex_state = 17, .external_lex_state = 9}, - [382] = {.lex_state = 17, .external_lex_state = 6}, - [383] = {.lex_state = 17, .external_lex_state = 6}, - [384] = {.lex_state = 17, .external_lex_state = 8}, - [385] = {.lex_state = 17, .external_lex_state = 6}, - [386] = {.lex_state = 17, .external_lex_state = 8}, - [387] = {.lex_state = 17, .external_lex_state = 6}, - [388] = {.lex_state = 17, .external_lex_state = 6}, - [389] = {.lex_state = 17, .external_lex_state = 6}, - [390] = {.lex_state = 17, .external_lex_state = 6}, - [391] = {.lex_state = 17, .external_lex_state = 6}, - [392] = {.lex_state = 17, .external_lex_state = 6}, - [393] = {.lex_state = 17, .external_lex_state = 6}, - [394] = {.lex_state = 17, .external_lex_state = 6}, - [395] = {.lex_state = 17, .external_lex_state = 6}, - [396] = {.lex_state = 17, .external_lex_state = 6}, - [397] = {.lex_state = 17, .external_lex_state = 6}, - [398] = {.lex_state = 17, .external_lex_state = 6}, - [399] = {.lex_state = 17, .external_lex_state = 6}, - [400] = {.lex_state = 17, .external_lex_state = 6}, - [401] = {.lex_state = 17, .external_lex_state = 6}, - [402] = {.lex_state = 17, .external_lex_state = 6}, - [403] = {.lex_state = 17, .external_lex_state = 6}, - [404] = {.lex_state = 17, .external_lex_state = 6}, - [405] = {.lex_state = 17, .external_lex_state = 6}, - [406] = {.lex_state = 17, .external_lex_state = 6}, - [407] = {.lex_state = 17, .external_lex_state = 6}, - [408] = {.lex_state = 17, .external_lex_state = 6}, - [409] = {.lex_state = 17, .external_lex_state = 6}, - [410] = {.lex_state = 17, .external_lex_state = 6}, - [411] = {.lex_state = 17, .external_lex_state = 6}, - [412] = {.lex_state = 17, .external_lex_state = 6}, - [413] = {.lex_state = 17, .external_lex_state = 6}, - [414] = {.lex_state = 17, .external_lex_state = 6}, - [415] = {.lex_state = 17, .external_lex_state = 6}, - [416] = {.lex_state = 17, .external_lex_state = 6}, - [417] = {.lex_state = 17, .external_lex_state = 6}, - [418] = {.lex_state = 17, .external_lex_state = 6}, - [419] = {.lex_state = 17, .external_lex_state = 6}, - [420] = {.lex_state = 17, .external_lex_state = 6}, - [421] = {.lex_state = 17, .external_lex_state = 6}, - [422] = {.lex_state = 17, .external_lex_state = 6}, - [423] = {.lex_state = 17, .external_lex_state = 6}, - [424] = {.lex_state = 17, .external_lex_state = 6}, - [425] = {.lex_state = 17, .external_lex_state = 6}, - [426] = {.lex_state = 17, .external_lex_state = 6}, - [427] = {.lex_state = 17, .external_lex_state = 6}, - [428] = {.lex_state = 17, .external_lex_state = 6}, - [429] = {.lex_state = 17, .external_lex_state = 6}, - [430] = {.lex_state = 17, .external_lex_state = 6}, - [431] = {.lex_state = 17, .external_lex_state = 6}, - [432] = {.lex_state = 17, .external_lex_state = 6}, - [433] = {.lex_state = 17, .external_lex_state = 6}, - [434] = {.lex_state = 17, .external_lex_state = 6}, - [435] = {.lex_state = 17, .external_lex_state = 6}, - [436] = {.lex_state = 17, .external_lex_state = 6}, - [437] = {.lex_state = 17, .external_lex_state = 6}, - [438] = {.lex_state = 17, .external_lex_state = 6}, - [439] = {.lex_state = 17, .external_lex_state = 6}, - [440] = {.lex_state = 17, .external_lex_state = 6}, - [441] = {.lex_state = 17, .external_lex_state = 6}, - [442] = {.lex_state = 17, .external_lex_state = 6}, - [443] = {.lex_state = 17, .external_lex_state = 6}, - [444] = {.lex_state = 17, .external_lex_state = 6}, - [445] = {.lex_state = 17, .external_lex_state = 6}, - [446] = {.lex_state = 17, .external_lex_state = 6}, - [447] = {.lex_state = 17, .external_lex_state = 6}, - [448] = {.lex_state = 17, .external_lex_state = 6}, - [449] = {.lex_state = 17, .external_lex_state = 6}, - [450] = {.lex_state = 17, .external_lex_state = 6}, - [451] = {.lex_state = 17, .external_lex_state = 6}, - [452] = {.lex_state = 17, .external_lex_state = 6}, - [453] = {.lex_state = 17, .external_lex_state = 6}, - [454] = {.lex_state = 17, .external_lex_state = 6}, - [455] = {.lex_state = 17, .external_lex_state = 6}, - [456] = {.lex_state = 17, .external_lex_state = 6}, - [457] = {.lex_state = 17, .external_lex_state = 6}, - [458] = {.lex_state = 17, .external_lex_state = 6}, - [459] = {.lex_state = 17, .external_lex_state = 6}, - [460] = {.lex_state = 17, .external_lex_state = 6}, - [461] = {.lex_state = 17, .external_lex_state = 6}, - [462] = {.lex_state = 17, .external_lex_state = 6}, - [463] = {.lex_state = 17, .external_lex_state = 6}, - [464] = {.lex_state = 17, .external_lex_state = 6}, - [465] = {.lex_state = 17, .external_lex_state = 6}, - [466] = {.lex_state = 17, .external_lex_state = 6}, - [467] = {.lex_state = 17, .external_lex_state = 6}, - [468] = {.lex_state = 17, .external_lex_state = 6}, - [469] = {.lex_state = 17, .external_lex_state = 6}, - [470] = {.lex_state = 17, .external_lex_state = 6}, - [471] = {.lex_state = 17, .external_lex_state = 6}, - [472] = {.lex_state = 17, .external_lex_state = 6}, - [473] = {.lex_state = 17, .external_lex_state = 6}, - [474] = {.lex_state = 28, .external_lex_state = 5}, - [475] = {.lex_state = 17, .external_lex_state = 6}, - [476] = {.lex_state = 17, .external_lex_state = 6}, - [477] = {.lex_state = 17, .external_lex_state = 6}, - [478] = {.lex_state = 17, .external_lex_state = 6}, - [479] = {.lex_state = 17, .external_lex_state = 6}, - [480] = {.lex_state = 17, .external_lex_state = 6}, - [481] = {.lex_state = 17, .external_lex_state = 6}, - [482] = {.lex_state = 17, .external_lex_state = 6}, - [483] = {.lex_state = 17, .external_lex_state = 6}, - [484] = {.lex_state = 17, .external_lex_state = 6}, - [485] = {.lex_state = 17, .external_lex_state = 6}, - [486] = {.lex_state = 17, .external_lex_state = 6}, - [487] = {.lex_state = 17, .external_lex_state = 6}, - [488] = {.lex_state = 17, .external_lex_state = 6}, - [489] = {.lex_state = 17, .external_lex_state = 6}, - [490] = {.lex_state = 17, .external_lex_state = 6}, - [491] = {.lex_state = 17, .external_lex_state = 6}, - [492] = {.lex_state = 17, .external_lex_state = 6}, - [493] = {.lex_state = 17, .external_lex_state = 6}, - [494] = {.lex_state = 17, .external_lex_state = 6}, - [495] = {.lex_state = 28, .external_lex_state = 5}, - [496] = {.lex_state = 17, .external_lex_state = 6}, - [497] = {.lex_state = 17, .external_lex_state = 6}, - [498] = {.lex_state = 17, .external_lex_state = 6}, - [499] = {.lex_state = 17, .external_lex_state = 6}, - [500] = {.lex_state = 17, .external_lex_state = 6}, - [501] = {.lex_state = 17, .external_lex_state = 6}, - [502] = {.lex_state = 17, .external_lex_state = 6}, - [503] = {.lex_state = 15, .external_lex_state = 6}, - [504] = {.lex_state = 17, .external_lex_state = 6}, - [505] = {.lex_state = 15, .external_lex_state = 6}, - [506] = {.lex_state = 17, .external_lex_state = 6}, - [507] = {.lex_state = 17, .external_lex_state = 6}, - [508] = {.lex_state = 17, .external_lex_state = 6}, - [509] = {.lex_state = 17, .external_lex_state = 6}, - [510] = {.lex_state = 17, .external_lex_state = 6}, - [511] = {.lex_state = 17, .external_lex_state = 6}, - [512] = {.lex_state = 17, .external_lex_state = 6}, - [513] = {.lex_state = 17, .external_lex_state = 6}, - [514] = {.lex_state = 17, .external_lex_state = 6}, - [515] = {.lex_state = 17, .external_lex_state = 6}, - [516] = {.lex_state = 17, .external_lex_state = 6}, - [517] = {.lex_state = 17, .external_lex_state = 6}, - [518] = {.lex_state = 17, .external_lex_state = 6}, - [519] = {.lex_state = 17, .external_lex_state = 6}, - [520] = {.lex_state = 17, .external_lex_state = 6}, - [521] = {.lex_state = 17, .external_lex_state = 6}, - [522] = {.lex_state = 17, .external_lex_state = 6}, - [523] = {.lex_state = 17, .external_lex_state = 6}, - [524] = {.lex_state = 17, .external_lex_state = 6}, - [525] = {.lex_state = 17, .external_lex_state = 6}, - [526] = {.lex_state = 17, .external_lex_state = 6}, - [527] = {.lex_state = 17, .external_lex_state = 6}, - [528] = {.lex_state = 17, .external_lex_state = 6}, - [529] = {.lex_state = 17, .external_lex_state = 6}, - [530] = {.lex_state = 17, .external_lex_state = 6}, - [531] = {.lex_state = 17, .external_lex_state = 6}, - [532] = {.lex_state = 17, .external_lex_state = 6}, - [533] = {.lex_state = 17, .external_lex_state = 6}, - [534] = {.lex_state = 17, .external_lex_state = 6}, - [535] = {.lex_state = 17, .external_lex_state = 6}, - [536] = {.lex_state = 24, .external_lex_state = 10}, - [537] = {.lex_state = 52, .external_lex_state = 3}, - [538] = {.lex_state = 54, .external_lex_state = 3}, - [539] = {.lex_state = 52, .external_lex_state = 3}, - [540] = {.lex_state = 54, .external_lex_state = 3}, - [541] = {.lex_state = 24, .external_lex_state = 10}, - [542] = {.lex_state = 24, .external_lex_state = 10}, - [543] = {.lex_state = 24, .external_lex_state = 10}, - [544] = {.lex_state = 24, .external_lex_state = 10}, - [545] = {.lex_state = 24, .external_lex_state = 10}, - [546] = {.lex_state = 24, .external_lex_state = 10}, - [547] = {.lex_state = 18, .external_lex_state = 7}, - [548] = {.lex_state = 19, .external_lex_state = 10}, - [549] = {.lex_state = 19, .external_lex_state = 10}, - [550] = {.lex_state = 19, .external_lex_state = 10}, - [551] = {.lex_state = 19, .external_lex_state = 10}, - [552] = {.lex_state = 19, .external_lex_state = 10}, - [553] = {.lex_state = 19, .external_lex_state = 10}, - [554] = {.lex_state = 18, .external_lex_state = 7}, - [555] = {.lex_state = 53, .external_lex_state = 3}, - [556] = {.lex_state = 53, .external_lex_state = 3}, - [557] = {.lex_state = 19, .external_lex_state = 10}, - [558] = {.lex_state = 19, .external_lex_state = 10}, - [559] = {.lex_state = 52, .external_lex_state = 3}, - [560] = {.lex_state = 54, .external_lex_state = 3}, - [561] = {.lex_state = 19, .external_lex_state = 10}, - [562] = {.lex_state = 19, .external_lex_state = 10}, - [563] = {.lex_state = 19, .external_lex_state = 10}, - [564] = {.lex_state = 19, .external_lex_state = 10}, - [565] = {.lex_state = 19, .external_lex_state = 10}, - [566] = {.lex_state = 19, .external_lex_state = 10}, - [567] = {.lex_state = 19, .external_lex_state = 10}, - [568] = {.lex_state = 19, .external_lex_state = 10}, - [569] = {.lex_state = 19, .external_lex_state = 10}, - [570] = {.lex_state = 19, .external_lex_state = 10}, - [571] = {.lex_state = 19, .external_lex_state = 10}, - [572] = {.lex_state = 53, .external_lex_state = 3}, - [573] = {.lex_state = 53, .external_lex_state = 3}, - [574] = {.lex_state = 53, .external_lex_state = 3}, - [575] = {.lex_state = 54, .external_lex_state = 3}, - [576] = {.lex_state = 52, .external_lex_state = 3}, - [577] = {.lex_state = 54, .external_lex_state = 3}, - [578] = {.lex_state = 52, .external_lex_state = 3}, - [579] = {.lex_state = 52, .external_lex_state = 3}, - [580] = {.lex_state = 52, .external_lex_state = 3}, - [581] = {.lex_state = 54, .external_lex_state = 3}, - [582] = {.lex_state = 54, .external_lex_state = 3}, - [583] = {.lex_state = 54, .external_lex_state = 3}, - [584] = {.lex_state = 52, .external_lex_state = 3}, - [585] = {.lex_state = 18, .external_lex_state = 8}, - [586] = {.lex_state = 54, .external_lex_state = 3}, - [587] = {.lex_state = 54, .external_lex_state = 3}, - [588] = {.lex_state = 54, .external_lex_state = 3}, - [589] = {.lex_state = 54, .external_lex_state = 3}, - [590] = {.lex_state = 52, .external_lex_state = 3}, - [591] = {.lex_state = 54, .external_lex_state = 3}, - [592] = {.lex_state = 18, .external_lex_state = 8}, - [593] = {.lex_state = 52, .external_lex_state = 3}, - [594] = {.lex_state = 52, .external_lex_state = 3}, - [595] = {.lex_state = 52, .external_lex_state = 3}, - [596] = {.lex_state = 54, .external_lex_state = 3}, - [597] = {.lex_state = 53, .external_lex_state = 3}, - [598] = {.lex_state = 51, .external_lex_state = 3}, - [599] = {.lex_state = 51, .external_lex_state = 3}, - [600] = {.lex_state = 53, .external_lex_state = 3}, - [601] = {.lex_state = 53, .external_lex_state = 3}, - [602] = {.lex_state = 51, .external_lex_state = 3}, - [603] = {.lex_state = 53, .external_lex_state = 3}, - [604] = {.lex_state = 18, .external_lex_state = 6}, - [605] = {.lex_state = 53, .external_lex_state = 3}, + [1] = {.lex_state = 192, .external_lex_state = 2}, + [2] = {.lex_state = 41, .external_lex_state = 3}, + [3] = {.lex_state = 41, .external_lex_state = 3}, + [4] = {.lex_state = 41, .external_lex_state = 3}, + [5] = {.lex_state = 41, .external_lex_state = 3}, + [6] = {.lex_state = 41, .external_lex_state = 3}, + [7] = {.lex_state = 41, .external_lex_state = 3}, + [8] = {.lex_state = 41, .external_lex_state = 3}, + [9] = {.lex_state = 41, .external_lex_state = 3}, + [10] = {.lex_state = 41, .external_lex_state = 3}, + [11] = {.lex_state = 41, .external_lex_state = 3}, + [12] = {.lex_state = 41, .external_lex_state = 3}, + [13] = {.lex_state = 41, .external_lex_state = 3}, + [14] = {.lex_state = 41, .external_lex_state = 3}, + [15] = {.lex_state = 41, .external_lex_state = 3}, + [16] = {.lex_state = 41, .external_lex_state = 3}, + [17] = {.lex_state = 41, .external_lex_state = 3}, + [18] = {.lex_state = 41, .external_lex_state = 3}, + [19] = {.lex_state = 41, .external_lex_state = 3}, + [20] = {.lex_state = 41, .external_lex_state = 3}, + [21] = {.lex_state = 41, .external_lex_state = 3}, + [22] = {.lex_state = 41, .external_lex_state = 3}, + [23] = {.lex_state = 41, .external_lex_state = 3}, + [24] = {.lex_state = 41, .external_lex_state = 3}, + [25] = {.lex_state = 41, .external_lex_state = 3}, + [26] = {.lex_state = 41, .external_lex_state = 3}, + [27] = {.lex_state = 41, .external_lex_state = 3}, + [28] = {.lex_state = 41, .external_lex_state = 3}, + [29] = {.lex_state = 41, .external_lex_state = 3}, + [30] = {.lex_state = 41, .external_lex_state = 3}, + [31] = {.lex_state = 41, .external_lex_state = 3}, + [32] = {.lex_state = 41, .external_lex_state = 3}, + [33] = {.lex_state = 41, .external_lex_state = 3}, + [34] = {.lex_state = 41, .external_lex_state = 3}, + [35] = {.lex_state = 41, .external_lex_state = 3}, + [36] = {.lex_state = 63, .external_lex_state = 4}, + [37] = {.lex_state = 28, .external_lex_state = 5}, + [38] = {.lex_state = 28, .external_lex_state = 5}, + [39] = {.lex_state = 63, .external_lex_state = 4}, + [40] = {.lex_state = 58, .external_lex_state = 4}, + [41] = {.lex_state = 58, .external_lex_state = 4}, + [42] = {.lex_state = 58, .external_lex_state = 4}, + [43] = {.lex_state = 58, .external_lex_state = 4}, + [44] = {.lex_state = 58, .external_lex_state = 4}, + [45] = {.lex_state = 58, .external_lex_state = 4}, + [46] = {.lex_state = 58, .external_lex_state = 4}, + [47] = {.lex_state = 58, .external_lex_state = 4}, + [48] = {.lex_state = 58, .external_lex_state = 4}, + [49] = {.lex_state = 58, .external_lex_state = 4}, + [50] = {.lex_state = 58, .external_lex_state = 4}, + [51] = {.lex_state = 58, .external_lex_state = 4}, + [52] = {.lex_state = 58, .external_lex_state = 4}, + [53] = {.lex_state = 58, .external_lex_state = 4}, + [54] = {.lex_state = 58, .external_lex_state = 4}, + [55] = {.lex_state = 58, .external_lex_state = 4}, + [56] = {.lex_state = 58, .external_lex_state = 4}, + [57] = {.lex_state = 58, .external_lex_state = 4}, + [58] = {.lex_state = 58, .external_lex_state = 4}, + [59] = {.lex_state = 58, .external_lex_state = 4}, + [60] = {.lex_state = 58, .external_lex_state = 4}, + [61] = {.lex_state = 58, .external_lex_state = 5}, + [62] = {.lex_state = 58, .external_lex_state = 5}, + [63] = {.lex_state = 58, .external_lex_state = 5}, + [64] = {.lex_state = 58, .external_lex_state = 5}, + [65] = {.lex_state = 58, .external_lex_state = 5}, + [66] = {.lex_state = 58, .external_lex_state = 5}, + [67] = {.lex_state = 58, .external_lex_state = 5}, + [68] = {.lex_state = 58, .external_lex_state = 5}, + [69] = {.lex_state = 58, .external_lex_state = 5}, + [70] = {.lex_state = 58, .external_lex_state = 5}, + [71] = {.lex_state = 58, .external_lex_state = 5}, + [72] = {.lex_state = 58, .external_lex_state = 5}, + [73] = {.lex_state = 58, .external_lex_state = 5}, + [74] = {.lex_state = 58, .external_lex_state = 5}, + [75] = {.lex_state = 58, .external_lex_state = 5}, + [76] = {.lex_state = 58, .external_lex_state = 5}, + [77] = {.lex_state = 58, .external_lex_state = 5}, + [78] = {.lex_state = 58, .external_lex_state = 5}, + [79] = {.lex_state = 58, .external_lex_state = 6}, + [80] = {.lex_state = 29, .external_lex_state = 5}, + [81] = {.lex_state = 29, .external_lex_state = 5}, + [82] = {.lex_state = 30, .external_lex_state = 5}, + [83] = {.lex_state = 25, .external_lex_state = 7}, + [84] = {.lex_state = 25, .external_lex_state = 5}, + [85] = {.lex_state = 25, .external_lex_state = 7}, + [86] = {.lex_state = 26, .external_lex_state = 7}, + [87] = {.lex_state = 25, .external_lex_state = 8}, + [88] = {.lex_state = 34, .external_lex_state = 7}, + [89] = {.lex_state = 26, .external_lex_state = 5}, + [90] = {.lex_state = 26, .external_lex_state = 5}, + [91] = {.lex_state = 34, .external_lex_state = 8}, + [92] = {.lex_state = 36, .external_lex_state = 5}, + [93] = {.lex_state = 34, .external_lex_state = 7}, + [94] = {.lex_state = 26, .external_lex_state = 7}, + [95] = {.lex_state = 36, .external_lex_state = 5}, + [96] = {.lex_state = 26, .external_lex_state = 8}, + [97] = {.lex_state = 34, .external_lex_state = 9}, + [98] = {.lex_state = 25, .external_lex_state = 8}, + [99] = {.lex_state = 34, .external_lex_state = 8}, + [100] = {.lex_state = 35, .external_lex_state = 7}, + [101] = {.lex_state = 46, .external_lex_state = 5}, + [102] = {.lex_state = 34, .external_lex_state = 8}, + [103] = {.lex_state = 46, .external_lex_state = 5}, + [104] = {.lex_state = 35, .external_lex_state = 7}, + [105] = {.lex_state = 34, .external_lex_state = 9}, + [106] = {.lex_state = 34, .external_lex_state = 8}, + [107] = {.lex_state = 36, .external_lex_state = 5}, + [108] = {.lex_state = 34, .external_lex_state = 9}, + [109] = {.lex_state = 25, .external_lex_state = 6}, + [110] = {.lex_state = 26, .external_lex_state = 8}, + [111] = {.lex_state = 25, .external_lex_state = 9}, + [112] = {.lex_state = 26, .external_lex_state = 9}, + [113] = {.lex_state = 34, .external_lex_state = 9}, + [114] = {.lex_state = 26, .external_lex_state = 6}, + [115] = {.lex_state = 34, .external_lex_state = 8}, + [116] = {.lex_state = 26, .external_lex_state = 6}, + [117] = {.lex_state = 34, .external_lex_state = 9}, + [118] = {.lex_state = 34, .external_lex_state = 8}, + [119] = {.lex_state = 25, .external_lex_state = 7}, + [120] = {.lex_state = 25, .external_lex_state = 9}, + [121] = {.lex_state = 26, .external_lex_state = 9}, + [122] = {.lex_state = 25, .external_lex_state = 8}, + [123] = {.lex_state = 37, .external_lex_state = 6}, + [124] = {.lex_state = 46, .external_lex_state = 6}, + [125] = {.lex_state = 46, .external_lex_state = 6}, + [126] = {.lex_state = 37, .external_lex_state = 6}, + [127] = {.lex_state = 37, .external_lex_state = 6}, + [128] = {.lex_state = 50, .external_lex_state = 9}, + [129] = {.lex_state = 50, .external_lex_state = 6}, + [130] = {.lex_state = 50, .external_lex_state = 9}, + [131] = {.lex_state = 62, .external_lex_state = 7}, + [132] = {.lex_state = 50, .external_lex_state = 6}, + [133] = {.lex_state = 62, .external_lex_state = 7}, + [134] = {.lex_state = 50, .external_lex_state = 8}, + [135] = {.lex_state = 50, .external_lex_state = 6}, + [136] = {.lex_state = 50, .external_lex_state = 8}, + [137] = {.lex_state = 62, .external_lex_state = 7}, + [138] = {.lex_state = 50, .external_lex_state = 8}, + [139] = {.lex_state = 50, .external_lex_state = 9}, + [140] = {.lex_state = 50, .external_lex_state = 8}, + [141] = {.lex_state = 50, .external_lex_state = 9}, + [142] = {.lex_state = 50, .external_lex_state = 8}, + [143] = {.lex_state = 50, .external_lex_state = 8}, + [144] = {.lex_state = 62, .external_lex_state = 7}, + [145] = {.lex_state = 50, .external_lex_state = 9}, + [146] = {.lex_state = 62, .external_lex_state = 7}, + [147] = {.lex_state = 50, .external_lex_state = 9}, + [148] = {.lex_state = 50, .external_lex_state = 9}, + [149] = {.lex_state = 50, .external_lex_state = 8}, + [150] = {.lex_state = 50, .external_lex_state = 8}, + [151] = {.lex_state = 50, .external_lex_state = 9}, + [152] = {.lex_state = 50, .external_lex_state = 8}, + [153] = {.lex_state = 50, .external_lex_state = 9}, + [154] = {.lex_state = 50, .external_lex_state = 9}, + [155] = {.lex_state = 50, .external_lex_state = 8}, + [156] = {.lex_state = 62, .external_lex_state = 7}, + [157] = {.lex_state = 62, .external_lex_state = 7}, + [158] = {.lex_state = 62, .external_lex_state = 7}, + [159] = {.lex_state = 50, .external_lex_state = 9}, + [160] = {.lex_state = 50, .external_lex_state = 8}, + [161] = {.lex_state = 48, .external_lex_state = 5}, + [162] = {.lex_state = 48, .external_lex_state = 5}, + [163] = {.lex_state = 50, .external_lex_state = 6}, + [164] = {.lex_state = 50, .external_lex_state = 6}, + [165] = {.lex_state = 51, .external_lex_state = 6}, + [166] = {.lex_state = 51, .external_lex_state = 8}, + [167] = {.lex_state = 51, .external_lex_state = 6}, + [168] = {.lex_state = 51, .external_lex_state = 8}, + [169] = {.lex_state = 51, .external_lex_state = 8}, + [170] = {.lex_state = 51, .external_lex_state = 6}, + [171] = {.lex_state = 51, .external_lex_state = 6}, + [172] = {.lex_state = 51, .external_lex_state = 8}, + [173] = {.lex_state = 51, .external_lex_state = 6}, + [174] = {.lex_state = 51, .external_lex_state = 6}, + [175] = {.lex_state = 51, .external_lex_state = 8}, + [176] = {.lex_state = 51, .external_lex_state = 6}, + [177] = {.lex_state = 19, .external_lex_state = 7}, + [178] = {.lex_state = 51, .external_lex_state = 8}, + [179] = {.lex_state = 48, .external_lex_state = 6}, + [180] = {.lex_state = 51, .external_lex_state = 6}, + [181] = {.lex_state = 51, .external_lex_state = 6}, + [182] = {.lex_state = 51, .external_lex_state = 6}, + [183] = {.lex_state = 51, .external_lex_state = 6}, + [184] = {.lex_state = 51, .external_lex_state = 6}, + [185] = {.lex_state = 51, .external_lex_state = 8}, + [186] = {.lex_state = 51, .external_lex_state = 6}, + [187] = {.lex_state = 51, .external_lex_state = 6}, + [188] = {.lex_state = 51, .external_lex_state = 6}, + [189] = {.lex_state = 51, .external_lex_state = 6}, + [190] = {.lex_state = 50, .external_lex_state = 8}, + [191] = {.lex_state = 48, .external_lex_state = 6}, + [192] = {.lex_state = 51, .external_lex_state = 6}, + [193] = {.lex_state = 51, .external_lex_state = 8}, + [194] = {.lex_state = 51, .external_lex_state = 6}, + [195] = {.lex_state = 50, .external_lex_state = 8}, + [196] = {.lex_state = 50, .external_lex_state = 8}, + [197] = {.lex_state = 50, .external_lex_state = 8}, + [198] = {.lex_state = 50, .external_lex_state = 8}, + [199] = {.lex_state = 50, .external_lex_state = 8}, + [200] = {.lex_state = 50, .external_lex_state = 9}, + [201] = {.lex_state = 50, .external_lex_state = 9}, + [202] = {.lex_state = 50, .external_lex_state = 8}, + [203] = {.lex_state = 50, .external_lex_state = 8}, + [204] = {.lex_state = 51, .external_lex_state = 8}, + [205] = {.lex_state = 51, .external_lex_state = 8}, + [206] = {.lex_state = 51, .external_lex_state = 8}, + [207] = {.lex_state = 51, .external_lex_state = 8}, + [208] = {.lex_state = 51, .external_lex_state = 8}, + [209] = {.lex_state = 51, .external_lex_state = 8}, + [210] = {.lex_state = 51, .external_lex_state = 8}, + [211] = {.lex_state = 51, .external_lex_state = 8}, + [212] = {.lex_state = 50, .external_lex_state = 8}, + [213] = {.lex_state = 51, .external_lex_state = 8}, + [214] = {.lex_state = 51, .external_lex_state = 8}, + [215] = {.lex_state = 51, .external_lex_state = 8}, + [216] = {.lex_state = 50, .external_lex_state = 9}, + [217] = {.lex_state = 51, .external_lex_state = 8}, + [218] = {.lex_state = 51, .external_lex_state = 8}, + [219] = {.lex_state = 51, .external_lex_state = 8}, + [220] = {.lex_state = 51, .external_lex_state = 8}, + [221] = {.lex_state = 51, .external_lex_state = 8}, + [222] = {.lex_state = 51, .external_lex_state = 8}, + [223] = {.lex_state = 50, .external_lex_state = 8}, + [224] = {.lex_state = 51, .external_lex_state = 8}, + [225] = {.lex_state = 51, .external_lex_state = 8}, + [226] = {.lex_state = 50, .external_lex_state = 9}, + [227] = {.lex_state = 50, .external_lex_state = 9}, + [228] = {.lex_state = 51, .external_lex_state = 8}, + [229] = {.lex_state = 50, .external_lex_state = 8}, + [230] = {.lex_state = 51, .external_lex_state = 8}, + [231] = {.lex_state = 51, .external_lex_state = 8}, + [232] = {.lex_state = 50, .external_lex_state = 9}, + [233] = {.lex_state = 50, .external_lex_state = 8}, + [234] = {.lex_state = 50, .external_lex_state = 8}, + [235] = {.lex_state = 50, .external_lex_state = 9}, + [236] = {.lex_state = 51, .external_lex_state = 8}, + [237] = {.lex_state = 51, .external_lex_state = 8}, + [238] = {.lex_state = 51, .external_lex_state = 8}, + [239] = {.lex_state = 50, .external_lex_state = 8}, + [240] = {.lex_state = 51, .external_lex_state = 8}, + [241] = {.lex_state = 51, .external_lex_state = 8}, + [242] = {.lex_state = 51, .external_lex_state = 8}, + [243] = {.lex_state = 51, .external_lex_state = 8}, + [244] = {.lex_state = 51, .external_lex_state = 8}, + [245] = {.lex_state = 51, .external_lex_state = 8}, + [246] = {.lex_state = 51, .external_lex_state = 8}, + [247] = {.lex_state = 50, .external_lex_state = 9}, + [248] = {.lex_state = 50, .external_lex_state = 8}, + [249] = {.lex_state = 49, .external_lex_state = 7}, + [250] = {.lex_state = 49, .external_lex_state = 9}, + [251] = {.lex_state = 49, .external_lex_state = 8}, + [252] = {.lex_state = 51, .external_lex_state = 6}, + [253] = {.lex_state = 20, .external_lex_state = 7}, + [254] = {.lex_state = 50, .external_lex_state = 8}, + [255] = {.lex_state = 49, .external_lex_state = 9}, + [256] = {.lex_state = 50, .external_lex_state = 9}, + [257] = {.lex_state = 49, .external_lex_state = 7}, + [258] = {.lex_state = 18, .external_lex_state = 7}, + [259] = {.lex_state = 49, .external_lex_state = 7}, + [260] = {.lex_state = 49, .external_lex_state = 8}, + [261] = {.lex_state = 49, .external_lex_state = 9}, + [262] = {.lex_state = 49, .external_lex_state = 7}, + [263] = {.lex_state = 20, .external_lex_state = 7}, + [264] = {.lex_state = 50, .external_lex_state = 7}, + [265] = {.lex_state = 49, .external_lex_state = 8}, + [266] = {.lex_state = 50, .external_lex_state = 9}, + [267] = {.lex_state = 49, .external_lex_state = 8}, + [268] = {.lex_state = 50, .external_lex_state = 8}, + [269] = {.lex_state = 50, .external_lex_state = 7}, + [270] = {.lex_state = 49, .external_lex_state = 9}, + [271] = {.lex_state = 18, .external_lex_state = 7}, + [272] = {.lex_state = 51, .external_lex_state = 7}, + [273] = {.lex_state = 51, .external_lex_state = 7}, + [274] = {.lex_state = 19, .external_lex_state = 8}, + [275] = {.lex_state = 19, .external_lex_state = 9}, + [276] = {.lex_state = 51, .external_lex_state = 7}, + [277] = {.lex_state = 51, .external_lex_state = 7}, + [278] = {.lex_state = 51, .external_lex_state = 7}, + [279] = {.lex_state = 51, .external_lex_state = 7}, + [280] = {.lex_state = 51, .external_lex_state = 7}, + [281] = {.lex_state = 19, .external_lex_state = 5}, + [282] = {.lex_state = 51, .external_lex_state = 7}, + [283] = {.lex_state = 50, .external_lex_state = 6}, + [284] = {.lex_state = 51, .external_lex_state = 7}, + [285] = {.lex_state = 51, .external_lex_state = 7}, + [286] = {.lex_state = 51, .external_lex_state = 7}, + [287] = {.lex_state = 51, .external_lex_state = 7}, + [288] = {.lex_state = 51, .external_lex_state = 7}, + [289] = {.lex_state = 19, .external_lex_state = 5}, + [290] = {.lex_state = 51, .external_lex_state = 7}, + [291] = {.lex_state = 50, .external_lex_state = 6}, + [292] = {.lex_state = 50, .external_lex_state = 6}, + [293] = {.lex_state = 51, .external_lex_state = 7}, + [294] = {.lex_state = 51, .external_lex_state = 7}, + [295] = {.lex_state = 20, .external_lex_state = 9}, + [296] = {.lex_state = 20, .external_lex_state = 9}, + [297] = {.lex_state = 20, .external_lex_state = 5}, + [298] = {.lex_state = 20, .external_lex_state = 9}, + [299] = {.lex_state = 20, .external_lex_state = 9}, + [300] = {.lex_state = 20, .external_lex_state = 9}, + [301] = {.lex_state = 20, .external_lex_state = 9}, + [302] = {.lex_state = 20, .external_lex_state = 9}, + [303] = {.lex_state = 20, .external_lex_state = 9}, + [304] = {.lex_state = 20, .external_lex_state = 9}, + [305] = {.lex_state = 20, .external_lex_state = 9}, + [306] = {.lex_state = 20, .external_lex_state = 9}, + [307] = {.lex_state = 20, .external_lex_state = 9}, + [308] = {.lex_state = 19, .external_lex_state = 5}, + [309] = {.lex_state = 20, .external_lex_state = 9}, + [310] = {.lex_state = 20, .external_lex_state = 9}, + [311] = {.lex_state = 20, .external_lex_state = 9}, + [312] = {.lex_state = 20, .external_lex_state = 9}, + [313] = {.lex_state = 20, .external_lex_state = 9}, + [314] = {.lex_state = 20, .external_lex_state = 9}, + [315] = {.lex_state = 20, .external_lex_state = 9}, + [316] = {.lex_state = 20, .external_lex_state = 9}, + [317] = {.lex_state = 20, .external_lex_state = 9}, + [318] = {.lex_state = 19, .external_lex_state = 5}, + [319] = {.lex_state = 20, .external_lex_state = 9}, + [320] = {.lex_state = 20, .external_lex_state = 9}, + [321] = {.lex_state = 20, .external_lex_state = 9}, + [322] = {.lex_state = 51, .external_lex_state = 6}, + [323] = {.lex_state = 18, .external_lex_state = 8}, + [324] = {.lex_state = 20, .external_lex_state = 9}, + [325] = {.lex_state = 20, .external_lex_state = 9}, + [326] = {.lex_state = 18, .external_lex_state = 8}, + [327] = {.lex_state = 20, .external_lex_state = 9}, + [328] = {.lex_state = 20, .external_lex_state = 9}, + [329] = {.lex_state = 20, .external_lex_state = 9}, + [330] = {.lex_state = 20, .external_lex_state = 9}, + [331] = {.lex_state = 20, .external_lex_state = 9}, + [332] = {.lex_state = 20, .external_lex_state = 9}, + [333] = {.lex_state = 20, .external_lex_state = 9}, + [334] = {.lex_state = 20, .external_lex_state = 6}, + [335] = {.lex_state = 20, .external_lex_state = 5}, + [336] = {.lex_state = 20, .external_lex_state = 5}, + [337] = {.lex_state = 20, .external_lex_state = 5}, + [338] = {.lex_state = 47, .external_lex_state = 6}, + [339] = {.lex_state = 20, .external_lex_state = 6}, + [340] = {.lex_state = 20, .external_lex_state = 6}, + [341] = {.lex_state = 20, .external_lex_state = 5}, + [342] = {.lex_state = 20, .external_lex_state = 6}, + [343] = {.lex_state = 20, .external_lex_state = 8}, + [344] = {.lex_state = 20, .external_lex_state = 6}, + [345] = {.lex_state = 20, .external_lex_state = 6}, + [346] = {.lex_state = 20, .external_lex_state = 6}, + [347] = {.lex_state = 20, .external_lex_state = 6}, + [348] = {.lex_state = 20, .external_lex_state = 6}, + [349] = {.lex_state = 18, .external_lex_state = 9}, + [350] = {.lex_state = 20, .external_lex_state = 5}, + [351] = {.lex_state = 20, .external_lex_state = 6}, + [352] = {.lex_state = 20, .external_lex_state = 6}, + [353] = {.lex_state = 18, .external_lex_state = 6}, + [354] = {.lex_state = 20, .external_lex_state = 6}, + [355] = {.lex_state = 20, .external_lex_state = 6}, + [356] = {.lex_state = 20, .external_lex_state = 6}, + [357] = {.lex_state = 20, .external_lex_state = 5}, + [358] = {.lex_state = 20, .external_lex_state = 6}, + [359] = {.lex_state = 20, .external_lex_state = 6}, + [360] = {.lex_state = 20, .external_lex_state = 6}, + [361] = {.lex_state = 20, .external_lex_state = 6}, + [362] = {.lex_state = 20, .external_lex_state = 6}, + [363] = {.lex_state = 18, .external_lex_state = 9}, + [364] = {.lex_state = 20, .external_lex_state = 8}, + [365] = {.lex_state = 20, .external_lex_state = 8}, + [366] = {.lex_state = 20, .external_lex_state = 9}, + [367] = {.lex_state = 20, .external_lex_state = 6}, + [368] = {.lex_state = 20, .external_lex_state = 6}, + [369] = {.lex_state = 20, .external_lex_state = 6}, + [370] = {.lex_state = 20, .external_lex_state = 6}, + [371] = {.lex_state = 18, .external_lex_state = 6}, + [372] = {.lex_state = 20, .external_lex_state = 5}, + [373] = {.lex_state = 20, .external_lex_state = 5}, + [374] = {.lex_state = 47, .external_lex_state = 6}, + [375] = {.lex_state = 20, .external_lex_state = 9}, + [376] = {.lex_state = 20, .external_lex_state = 6}, + [377] = {.lex_state = 18, .external_lex_state = 8}, + [378] = {.lex_state = 20, .external_lex_state = 9}, + [379] = {.lex_state = 20, .external_lex_state = 6}, + [380] = {.lex_state = 20, .external_lex_state = 9}, + [381] = {.lex_state = 20, .external_lex_state = 6}, + [382] = {.lex_state = 20, .external_lex_state = 6}, + [383] = {.lex_state = 20, .external_lex_state = 6}, + [384] = {.lex_state = 20, .external_lex_state = 8}, + [385] = {.lex_state = 20, .external_lex_state = 6}, + [386] = {.lex_state = 20, .external_lex_state = 6}, + [387] = {.lex_state = 18, .external_lex_state = 8}, + [388] = {.lex_state = 20, .external_lex_state = 6}, + [389] = {.lex_state = 20, .external_lex_state = 6}, + [390] = {.lex_state = 20, .external_lex_state = 6}, + [391] = {.lex_state = 20, .external_lex_state = 6}, + [392] = {.lex_state = 20, .external_lex_state = 6}, + [393] = {.lex_state = 20, .external_lex_state = 6}, + [394] = {.lex_state = 20, .external_lex_state = 6}, + [395] = {.lex_state = 20, .external_lex_state = 6}, + [396] = {.lex_state = 20, .external_lex_state = 6}, + [397] = {.lex_state = 20, .external_lex_state = 6}, + [398] = {.lex_state = 20, .external_lex_state = 6}, + [399] = {.lex_state = 20, .external_lex_state = 6}, + [400] = {.lex_state = 20, .external_lex_state = 6}, + [401] = {.lex_state = 20, .external_lex_state = 6}, + [402] = {.lex_state = 20, .external_lex_state = 6}, + [403] = {.lex_state = 20, .external_lex_state = 6}, + [404] = {.lex_state = 20, .external_lex_state = 6}, + [405] = {.lex_state = 20, .external_lex_state = 6}, + [406] = {.lex_state = 20, .external_lex_state = 6}, + [407] = {.lex_state = 20, .external_lex_state = 6}, + [408] = {.lex_state = 20, .external_lex_state = 6}, + [409] = {.lex_state = 20, .external_lex_state = 6}, + [410] = {.lex_state = 20, .external_lex_state = 6}, + [411] = {.lex_state = 20, .external_lex_state = 6}, + [412] = {.lex_state = 20, .external_lex_state = 6}, + [413] = {.lex_state = 20, .external_lex_state = 6}, + [414] = {.lex_state = 20, .external_lex_state = 6}, + [415] = {.lex_state = 20, .external_lex_state = 6}, + [416] = {.lex_state = 20, .external_lex_state = 6}, + [417] = {.lex_state = 20, .external_lex_state = 6}, + [418] = {.lex_state = 20, .external_lex_state = 6}, + [419] = {.lex_state = 20, .external_lex_state = 6}, + [420] = {.lex_state = 20, .external_lex_state = 6}, + [421] = {.lex_state = 20, .external_lex_state = 6}, + [422] = {.lex_state = 20, .external_lex_state = 6}, + [423] = {.lex_state = 20, .external_lex_state = 6}, + [424] = {.lex_state = 20, .external_lex_state = 6}, + [425] = {.lex_state = 20, .external_lex_state = 6}, + [426] = {.lex_state = 20, .external_lex_state = 6}, + [427] = {.lex_state = 20, .external_lex_state = 6}, + [428] = {.lex_state = 20, .external_lex_state = 6}, + [429] = {.lex_state = 20, .external_lex_state = 6}, + [430] = {.lex_state = 20, .external_lex_state = 6}, + [431] = {.lex_state = 31, .external_lex_state = 5}, + [432] = {.lex_state = 20, .external_lex_state = 6}, + [433] = {.lex_state = 20, .external_lex_state = 6}, + [434] = {.lex_state = 20, .external_lex_state = 6}, + [435] = {.lex_state = 20, .external_lex_state = 6}, + [436] = {.lex_state = 20, .external_lex_state = 6}, + [437] = {.lex_state = 20, .external_lex_state = 6}, + [438] = {.lex_state = 20, .external_lex_state = 6}, + [439] = {.lex_state = 20, .external_lex_state = 6}, + [440] = {.lex_state = 20, .external_lex_state = 6}, + [441] = {.lex_state = 20, .external_lex_state = 6}, + [442] = {.lex_state = 20, .external_lex_state = 6}, + [443] = {.lex_state = 20, .external_lex_state = 6}, + [444] = {.lex_state = 20, .external_lex_state = 6}, + [445] = {.lex_state = 20, .external_lex_state = 6}, + [446] = {.lex_state = 20, .external_lex_state = 6}, + [447] = {.lex_state = 20, .external_lex_state = 6}, + [448] = {.lex_state = 20, .external_lex_state = 6}, + [449] = {.lex_state = 20, .external_lex_state = 6}, + [450] = {.lex_state = 20, .external_lex_state = 6}, + [451] = {.lex_state = 20, .external_lex_state = 6}, + [452] = {.lex_state = 20, .external_lex_state = 6}, + [453] = {.lex_state = 20, .external_lex_state = 6}, + [454] = {.lex_state = 20, .external_lex_state = 6}, + [455] = {.lex_state = 20, .external_lex_state = 6}, + [456] = {.lex_state = 20, .external_lex_state = 6}, + [457] = {.lex_state = 20, .external_lex_state = 6}, + [458] = {.lex_state = 20, .external_lex_state = 6}, + [459] = {.lex_state = 20, .external_lex_state = 6}, + [460] = {.lex_state = 20, .external_lex_state = 6}, + [461] = {.lex_state = 20, .external_lex_state = 6}, + [462] = {.lex_state = 20, .external_lex_state = 6}, + [463] = {.lex_state = 20, .external_lex_state = 6}, + [464] = {.lex_state = 20, .external_lex_state = 6}, + [465] = {.lex_state = 18, .external_lex_state = 6}, + [466] = {.lex_state = 20, .external_lex_state = 6}, + [467] = {.lex_state = 20, .external_lex_state = 6}, + [468] = {.lex_state = 20, .external_lex_state = 6}, + [469] = {.lex_state = 31, .external_lex_state = 5}, + [470] = {.lex_state = 20, .external_lex_state = 6}, + [471] = {.lex_state = 20, .external_lex_state = 6}, + [472] = {.lex_state = 20, .external_lex_state = 6}, + [473] = {.lex_state = 20, .external_lex_state = 6}, + [474] = {.lex_state = 20, .external_lex_state = 6}, + [475] = {.lex_state = 20, .external_lex_state = 6}, + [476] = {.lex_state = 20, .external_lex_state = 6}, + [477] = {.lex_state = 20, .external_lex_state = 6}, + [478] = {.lex_state = 20, .external_lex_state = 6}, + [479] = {.lex_state = 20, .external_lex_state = 6}, + [480] = {.lex_state = 20, .external_lex_state = 6}, + [481] = {.lex_state = 20, .external_lex_state = 6}, + [482] = {.lex_state = 20, .external_lex_state = 6}, + [483] = {.lex_state = 20, .external_lex_state = 6}, + [484] = {.lex_state = 20, .external_lex_state = 6}, + [485] = {.lex_state = 20, .external_lex_state = 6}, + [486] = {.lex_state = 18, .external_lex_state = 6}, + [487] = {.lex_state = 20, .external_lex_state = 6}, + [488] = {.lex_state = 20, .external_lex_state = 6}, + [489] = {.lex_state = 20, .external_lex_state = 6}, + [490] = {.lex_state = 20, .external_lex_state = 6}, + [491] = {.lex_state = 20, .external_lex_state = 6}, + [492] = {.lex_state = 20, .external_lex_state = 6}, + [493] = {.lex_state = 20, .external_lex_state = 6}, + [494] = {.lex_state = 20, .external_lex_state = 6}, + [495] = {.lex_state = 20, .external_lex_state = 6}, + [496] = {.lex_state = 20, .external_lex_state = 6}, + [497] = {.lex_state = 20, .external_lex_state = 6}, + [498] = {.lex_state = 20, .external_lex_state = 6}, + [499] = {.lex_state = 20, .external_lex_state = 6}, + [500] = {.lex_state = 20, .external_lex_state = 6}, + [501] = {.lex_state = 20, .external_lex_state = 6}, + [502] = {.lex_state = 20, .external_lex_state = 6}, + [503] = {.lex_state = 20, .external_lex_state = 6}, + [504] = {.lex_state = 20, .external_lex_state = 6}, + [505] = {.lex_state = 20, .external_lex_state = 6}, + [506] = {.lex_state = 20, .external_lex_state = 6}, + [507] = {.lex_state = 20, .external_lex_state = 6}, + [508] = {.lex_state = 20, .external_lex_state = 6}, + [509] = {.lex_state = 20, .external_lex_state = 6}, + [510] = {.lex_state = 20, .external_lex_state = 6}, + [511] = {.lex_state = 20, .external_lex_state = 6}, + [512] = {.lex_state = 20, .external_lex_state = 6}, + [513] = {.lex_state = 20, .external_lex_state = 6}, + [514] = {.lex_state = 20, .external_lex_state = 6}, + [515] = {.lex_state = 20, .external_lex_state = 6}, + [516] = {.lex_state = 20, .external_lex_state = 6}, + [517] = {.lex_state = 20, .external_lex_state = 6}, + [518] = {.lex_state = 20, .external_lex_state = 6}, + [519] = {.lex_state = 20, .external_lex_state = 6}, + [520] = {.lex_state = 20, .external_lex_state = 6}, + [521] = {.lex_state = 20, .external_lex_state = 6}, + [522] = {.lex_state = 20, .external_lex_state = 6}, + [523] = {.lex_state = 20, .external_lex_state = 6}, + [524] = {.lex_state = 20, .external_lex_state = 6}, + [525] = {.lex_state = 20, .external_lex_state = 6}, + [526] = {.lex_state = 20, .external_lex_state = 6}, + [527] = {.lex_state = 20, .external_lex_state = 6}, + [528] = {.lex_state = 20, .external_lex_state = 6}, + [529] = {.lex_state = 20, .external_lex_state = 6}, + [530] = {.lex_state = 20, .external_lex_state = 6}, + [531] = {.lex_state = 20, .external_lex_state = 6}, + [532] = {.lex_state = 20, .external_lex_state = 6}, + [533] = {.lex_state = 20, .external_lex_state = 6}, + [534] = {.lex_state = 20, .external_lex_state = 6}, + [535] = {.lex_state = 20, .external_lex_state = 6}, + [536] = {.lex_state = 27, .external_lex_state = 10}, + [537] = {.lex_state = 55, .external_lex_state = 3}, + [538] = {.lex_state = 57, .external_lex_state = 3}, + [539] = {.lex_state = 27, .external_lex_state = 10}, + [540] = {.lex_state = 55, .external_lex_state = 3}, + [541] = {.lex_state = 57, .external_lex_state = 3}, + [542] = {.lex_state = 27, .external_lex_state = 10}, + [543] = {.lex_state = 27, .external_lex_state = 10}, + [544] = {.lex_state = 27, .external_lex_state = 10}, + [545] = {.lex_state = 27, .external_lex_state = 10}, + [546] = {.lex_state = 27, .external_lex_state = 10}, + [547] = {.lex_state = 22, .external_lex_state = 10}, + [548] = {.lex_state = 22, .external_lex_state = 10}, + [549] = {.lex_state = 22, .external_lex_state = 10}, + [550] = {.lex_state = 57, .external_lex_state = 3}, + [551] = {.lex_state = 22, .external_lex_state = 10}, + [552] = {.lex_state = 22, .external_lex_state = 10}, + [553] = {.lex_state = 55, .external_lex_state = 3}, + [554] = {.lex_state = 22, .external_lex_state = 10}, + [555] = {.lex_state = 22, .external_lex_state = 10}, + [556] = {.lex_state = 56, .external_lex_state = 3}, + [557] = {.lex_state = 22, .external_lex_state = 10}, + [558] = {.lex_state = 56, .external_lex_state = 3}, + [559] = {.lex_state = 22, .external_lex_state = 10}, + [560] = {.lex_state = 21, .external_lex_state = 7}, + [561] = {.lex_state = 22, .external_lex_state = 10}, + [562] = {.lex_state = 22, .external_lex_state = 10}, + [563] = {.lex_state = 56, .external_lex_state = 3}, + [564] = {.lex_state = 22, .external_lex_state = 10}, + [565] = {.lex_state = 22, .external_lex_state = 10}, + [566] = {.lex_state = 22, .external_lex_state = 10}, + [567] = {.lex_state = 21, .external_lex_state = 7}, + [568] = {.lex_state = 22, .external_lex_state = 10}, + [569] = {.lex_state = 22, .external_lex_state = 10}, + [570] = {.lex_state = 56, .external_lex_state = 3}, + [571] = {.lex_state = 22, .external_lex_state = 10}, + [572] = {.lex_state = 22, .external_lex_state = 10}, + [573] = {.lex_state = 22, .external_lex_state = 10}, + [574] = {.lex_state = 56, .external_lex_state = 3}, + [575] = {.lex_state = 57, .external_lex_state = 3}, + [576] = {.lex_state = 55, .external_lex_state = 3}, + [577] = {.lex_state = 55, .external_lex_state = 3}, + [578] = {.lex_state = 57, .external_lex_state = 3}, + [579] = {.lex_state = 21, .external_lex_state = 8}, + [580] = {.lex_state = 55, .external_lex_state = 3}, + [581] = {.lex_state = 55, .external_lex_state = 3}, + [582] = {.lex_state = 21, .external_lex_state = 8}, + [583] = {.lex_state = 55, .external_lex_state = 3}, + [584] = {.lex_state = 57, .external_lex_state = 3}, + [585] = {.lex_state = 57, .external_lex_state = 3}, + [586] = {.lex_state = 57, .external_lex_state = 3}, + [587] = {.lex_state = 55, .external_lex_state = 3}, + [588] = {.lex_state = 55, .external_lex_state = 3}, + [589] = {.lex_state = 57, .external_lex_state = 3}, + [590] = {.lex_state = 57, .external_lex_state = 3}, + [591] = {.lex_state = 55, .external_lex_state = 3}, + [592] = {.lex_state = 55, .external_lex_state = 3}, + [593] = {.lex_state = 55, .external_lex_state = 3}, + [594] = {.lex_state = 55, .external_lex_state = 3}, + [595] = {.lex_state = 57, .external_lex_state = 3}, + [596] = {.lex_state = 57, .external_lex_state = 3}, + [597] = {.lex_state = 21, .external_lex_state = 6}, + [598] = {.lex_state = 54, .external_lex_state = 3}, + [599] = {.lex_state = 56, .external_lex_state = 3}, + [600] = {.lex_state = 21, .external_lex_state = 6}, + [601] = {.lex_state = 21, .external_lex_state = 6}, + [602] = {.lex_state = 54, .external_lex_state = 3}, + [603] = {.lex_state = 56, .external_lex_state = 3}, + [604] = {.lex_state = 21, .external_lex_state = 6}, + [605] = {.lex_state = 56, .external_lex_state = 3}, [606] = {.lex_state = 53, .external_lex_state = 3}, - [607] = {.lex_state = 56, .external_lex_state = 6}, - [608] = {.lex_state = 50, .external_lex_state = 3}, - [609] = {.lex_state = 18, .external_lex_state = 6}, - [610] = {.lex_state = 18, .external_lex_state = 6}, - [611] = {.lex_state = 18, .external_lex_state = 9}, - [612] = {.lex_state = 18, .external_lex_state = 6}, - [613] = {.lex_state = 51, .external_lex_state = 3}, - [614] = {.lex_state = 18, .external_lex_state = 6}, - [615] = {.lex_state = 18, .external_lex_state = 6}, - [616] = {.lex_state = 18, .external_lex_state = 8}, - [617] = {.lex_state = 18, .external_lex_state = 6}, - [618] = {.lex_state = 53, .external_lex_state = 3}, - [619] = {.lex_state = 56, .external_lex_state = 6}, - [620] = {.lex_state = 51, .external_lex_state = 3}, - [621] = {.lex_state = 51, .external_lex_state = 3}, - [622] = {.lex_state = 18, .external_lex_state = 6}, - [623] = {.lex_state = 18, .external_lex_state = 8}, - [624] = {.lex_state = 50, .external_lex_state = 3}, - [625] = {.lex_state = 53, .external_lex_state = 3}, - [626] = {.lex_state = 18, .external_lex_state = 9}, - [627] = {.lex_state = 51, .external_lex_state = 3}, - [628] = {.lex_state = 18, .external_lex_state = 6}, - [629] = {.lex_state = 18, .external_lex_state = 6}, - [630] = {.lex_state = 50, .external_lex_state = 3}, - [631] = {.lex_state = 18, .external_lex_state = 6}, - [632] = {.lex_state = 50, .external_lex_state = 3}, - [633] = {.lex_state = 50, .external_lex_state = 3}, - [634] = {.lex_state = 50, .external_lex_state = 3}, - [635] = {.lex_state = 50, .external_lex_state = 3}, - [636] = {.lex_state = 50, .external_lex_state = 3}, - [637] = {.lex_state = 50, .external_lex_state = 3}, - [638] = {.lex_state = 18, .external_lex_state = 6}, - [639] = {.lex_state = 51, .external_lex_state = 3}, - [640] = {.lex_state = 51, .external_lex_state = 3}, - [641] = {.lex_state = 18, .external_lex_state = 6}, - [642] = {.lex_state = 51, .external_lex_state = 3}, - [643] = {.lex_state = 51, .external_lex_state = 3}, - [644] = {.lex_state = 18, .external_lex_state = 6}, - [645] = {.lex_state = 38, .external_lex_state = 3}, - [646] = {.lex_state = 38, .external_lex_state = 3}, - [647] = {.lex_state = 38, .external_lex_state = 3}, - [648] = {.lex_state = 38, .external_lex_state = 3}, - [649] = {.lex_state = 38, .external_lex_state = 3}, - [650] = {.lex_state = 38, .external_lex_state = 3}, - [651] = {.lex_state = 38, .external_lex_state = 3}, - [652] = {.lex_state = 38, .external_lex_state = 3}, - [653] = {.lex_state = 38, .external_lex_state = 3}, - [654] = {.lex_state = 38, .external_lex_state = 3}, - [655] = {.lex_state = 38, .external_lex_state = 3}, - [656] = {.lex_state = 38, .external_lex_state = 3}, - [657] = {.lex_state = 38, .external_lex_state = 3}, - [658] = {.lex_state = 38, .external_lex_state = 3}, - [659] = {.lex_state = 18, .external_lex_state = 6}, - [660] = {.lex_state = 38, .external_lex_state = 3}, - [661] = {.lex_state = 38, .external_lex_state = 3}, - [662] = {.lex_state = 38, .external_lex_state = 3}, - [663] = {.lex_state = 38, .external_lex_state = 3}, - [664] = {.lex_state = 38, .external_lex_state = 3}, - [665] = {.lex_state = 38, .external_lex_state = 3}, - [666] = {.lex_state = 38, .external_lex_state = 3}, - [667] = {.lex_state = 38, .external_lex_state = 3}, - [668] = {.lex_state = 18, .external_lex_state = 8}, - [669] = {.lex_state = 38, .external_lex_state = 3}, - [670] = {.lex_state = 38, .external_lex_state = 3}, - [671] = {.lex_state = 38, .external_lex_state = 3}, - [672] = {.lex_state = 38, .external_lex_state = 3}, - [673] = {.lex_state = 38, .external_lex_state = 3}, - [674] = {.lex_state = 38, .external_lex_state = 3}, - [675] = {.lex_state = 38, .external_lex_state = 3}, - [676] = {.lex_state = 38, .external_lex_state = 3}, - [677] = {.lex_state = 38, .external_lex_state = 3}, - [678] = {.lex_state = 38, .external_lex_state = 3}, - [679] = {.lex_state = 38, .external_lex_state = 3}, - [680] = {.lex_state = 57, .external_lex_state = 6}, - [681] = {.lex_state = 57, .external_lex_state = 6}, - [682] = {.lex_state = 57, .external_lex_state = 6}, - [683] = {.lex_state = 57, .external_lex_state = 6}, - [684] = {.lex_state = 57, .external_lex_state = 6}, - [685] = {.lex_state = 57, .external_lex_state = 6}, - [686] = {.lex_state = 57, .external_lex_state = 6}, - [687] = {.lex_state = 57, .external_lex_state = 6}, - [688] = {.lex_state = 57, .external_lex_state = 6}, - [689] = {.lex_state = 57, .external_lex_state = 6}, - [690] = {.lex_state = 18, .external_lex_state = 6}, - [691] = {.lex_state = 18, .external_lex_state = 6}, - [692] = {.lex_state = 18, .external_lex_state = 6}, - [693] = {.lex_state = 18, .external_lex_state = 6}, - [694] = {.lex_state = 18, .external_lex_state = 6}, - [695] = {.lex_state = 18, .external_lex_state = 6}, - [696] = {.lex_state = 18, .external_lex_state = 6}, - [697] = {.lex_state = 18, .external_lex_state = 6}, - [698] = {.lex_state = 18, .external_lex_state = 6}, - [699] = {.lex_state = 18, .external_lex_state = 6}, - [700] = {.lex_state = 18, .external_lex_state = 6}, - [701] = {.lex_state = 18, .external_lex_state = 6}, - [702] = {.lex_state = 18, .external_lex_state = 6}, - [703] = {.lex_state = 18, .external_lex_state = 6}, - [704] = {.lex_state = 18, .external_lex_state = 6}, - [705] = {.lex_state = 18, .external_lex_state = 6}, - [706] = {.lex_state = 18, .external_lex_state = 6}, - [707] = {.lex_state = 18, .external_lex_state = 6}, - [708] = {.lex_state = 18, .external_lex_state = 6}, - [709] = {.lex_state = 18, .external_lex_state = 6}, - [710] = {.lex_state = 18, .external_lex_state = 6}, - [711] = {.lex_state = 18, .external_lex_state = 6}, - [712] = {.lex_state = 18, .external_lex_state = 6}, - [713] = {.lex_state = 18, .external_lex_state = 6}, - [714] = {.lex_state = 18, .external_lex_state = 6}, - [715] = {.lex_state = 18, .external_lex_state = 6}, - [716] = {.lex_state = 18, .external_lex_state = 6}, - [717] = {.lex_state = 18, .external_lex_state = 6}, - [718] = {.lex_state = 18, .external_lex_state = 6}, - [719] = {.lex_state = 18, .external_lex_state = 6}, - [720] = {.lex_state = 18, .external_lex_state = 6}, - [721] = {.lex_state = 18, .external_lex_state = 6}, - [722] = {.lex_state = 18, .external_lex_state = 6}, - [723] = {.lex_state = 18, .external_lex_state = 6}, - [724] = {.lex_state = 18, .external_lex_state = 6}, - [725] = {.lex_state = 18, .external_lex_state = 6}, - [726] = {.lex_state = 18, .external_lex_state = 6}, - [727] = {.lex_state = 18, .external_lex_state = 6}, - [728] = {.lex_state = 18, .external_lex_state = 6}, - [729] = {.lex_state = 18, .external_lex_state = 6}, - [730] = {.lex_state = 18, .external_lex_state = 6}, - [731] = {.lex_state = 18, .external_lex_state = 6}, - [732] = {.lex_state = 18, .external_lex_state = 6}, - [733] = {.lex_state = 18, .external_lex_state = 6}, - [734] = {.lex_state = 18, .external_lex_state = 6}, - [735] = {.lex_state = 18, .external_lex_state = 6}, - [736] = {.lex_state = 18, .external_lex_state = 6}, - [737] = {.lex_state = 18, .external_lex_state = 6}, - [738] = {.lex_state = 18, .external_lex_state = 6}, - [739] = {.lex_state = 18, .external_lex_state = 6}, - [740] = {.lex_state = 18, .external_lex_state = 6}, - [741] = {.lex_state = 18, .external_lex_state = 6}, - [742] = {.lex_state = 18, .external_lex_state = 6}, - [743] = {.lex_state = 18, .external_lex_state = 6}, - [744] = {.lex_state = 18, .external_lex_state = 6}, - [745] = {.lex_state = 18, .external_lex_state = 6}, - [746] = {.lex_state = 18, .external_lex_state = 6}, - [747] = {.lex_state = 18, .external_lex_state = 6}, - [748] = {.lex_state = 18, .external_lex_state = 6}, - [749] = {.lex_state = 18, .external_lex_state = 6}, - [750] = {.lex_state = 18, .external_lex_state = 6}, - [751] = {.lex_state = 18, .external_lex_state = 6}, - [752] = {.lex_state = 18, .external_lex_state = 6}, - [753] = {.lex_state = 18, .external_lex_state = 6}, - [754] = {.lex_state = 18, .external_lex_state = 6}, - [755] = {.lex_state = 18, .external_lex_state = 6}, - [756] = {.lex_state = 18, .external_lex_state = 6}, - [757] = {.lex_state = 18, .external_lex_state = 6}, - [758] = {.lex_state = 18, .external_lex_state = 6}, - [759] = {.lex_state = 18, .external_lex_state = 6}, - [760] = {.lex_state = 18, .external_lex_state = 6}, - [761] = {.lex_state = 18, .external_lex_state = 6}, - [762] = {.lex_state = 18, .external_lex_state = 6}, - [763] = {.lex_state = 18, .external_lex_state = 6}, - [764] = {.lex_state = 18, .external_lex_state = 6}, - [765] = {.lex_state = 18, .external_lex_state = 6}, - [766] = {.lex_state = 18, .external_lex_state = 6}, - [767] = {.lex_state = 18, .external_lex_state = 6}, - [768] = {.lex_state = 18, .external_lex_state = 6}, - [769] = {.lex_state = 18, .external_lex_state = 6}, - [770] = {.lex_state = 18, .external_lex_state = 6}, - [771] = {.lex_state = 18, .external_lex_state = 6}, - [772] = {.lex_state = 18, .external_lex_state = 6}, - [773] = {.lex_state = 18, .external_lex_state = 6}, - [774] = {.lex_state = 18, .external_lex_state = 6}, - [775] = {.lex_state = 18, .external_lex_state = 6}, - [776] = {.lex_state = 18, .external_lex_state = 6}, - [777] = {.lex_state = 18, .external_lex_state = 6}, - [778] = {.lex_state = 18, .external_lex_state = 6}, - [779] = {.lex_state = 18, .external_lex_state = 6}, - [780] = {.lex_state = 18, .external_lex_state = 6}, - [781] = {.lex_state = 18, .external_lex_state = 6}, - [782] = {.lex_state = 18, .external_lex_state = 6}, - [783] = {.lex_state = 18, .external_lex_state = 6}, - [784] = {.lex_state = 18, .external_lex_state = 6}, - [785] = {.lex_state = 18, .external_lex_state = 6}, - [786] = {.lex_state = 18, .external_lex_state = 6}, - [787] = {.lex_state = 18, .external_lex_state = 6}, - [788] = {.lex_state = 18, .external_lex_state = 6}, - [789] = {.lex_state = 18, .external_lex_state = 6}, - [790] = {.lex_state = 18, .external_lex_state = 6}, - [791] = {.lex_state = 18, .external_lex_state = 6}, - [792] = {.lex_state = 18, .external_lex_state = 6}, - [793] = {.lex_state = 18, .external_lex_state = 6}, - [794] = {.lex_state = 18, .external_lex_state = 6}, - [795] = {.lex_state = 18, .external_lex_state = 6}, - [796] = {.lex_state = 18, .external_lex_state = 6}, - [797] = {.lex_state = 18, .external_lex_state = 6}, - [798] = {.lex_state = 18, .external_lex_state = 6}, - [799] = {.lex_state = 18, .external_lex_state = 6}, - [800] = {.lex_state = 18, .external_lex_state = 6}, - [801] = {.lex_state = 18, .external_lex_state = 6}, - [802] = {.lex_state = 18, .external_lex_state = 6}, - [803] = {.lex_state = 18, .external_lex_state = 6}, - [804] = {.lex_state = 18, .external_lex_state = 6}, - [805] = {.lex_state = 18, .external_lex_state = 6}, - [806] = {.lex_state = 18, .external_lex_state = 6}, - [807] = {.lex_state = 18, .external_lex_state = 6}, - [808] = {.lex_state = 18, .external_lex_state = 6}, - [809] = {.lex_state = 18, .external_lex_state = 6}, - [810] = {.lex_state = 18, .external_lex_state = 6}, - [811] = {.lex_state = 18, .external_lex_state = 6}, - [812] = {.lex_state = 18, .external_lex_state = 6}, - [813] = {.lex_state = 18, .external_lex_state = 6}, - [814] = {.lex_state = 18, .external_lex_state = 6}, - [815] = {.lex_state = 18, .external_lex_state = 6}, - [816] = {.lex_state = 18, .external_lex_state = 6}, - [817] = {.lex_state = 18, .external_lex_state = 6}, - [818] = {.lex_state = 18, .external_lex_state = 6}, - [819] = {.lex_state = 18, .external_lex_state = 6}, - [820] = {.lex_state = 18, .external_lex_state = 6}, - [821] = {.lex_state = 18, .external_lex_state = 6}, - [822] = {.lex_state = 18, .external_lex_state = 6}, - [823] = {.lex_state = 18, .external_lex_state = 6}, - [824] = {.lex_state = 18, .external_lex_state = 6}, - [825] = {.lex_state = 18, .external_lex_state = 6}, - [826] = {.lex_state = 18, .external_lex_state = 6}, - [827] = {.lex_state = 18, .external_lex_state = 6}, - [828] = {.lex_state = 18, .external_lex_state = 6}, - [829] = {.lex_state = 18, .external_lex_state = 6}, - [830] = {.lex_state = 18, .external_lex_state = 6}, - [831] = {.lex_state = 18, .external_lex_state = 6}, - [832] = {.lex_state = 18, .external_lex_state = 6}, - [833] = {.lex_state = 21, .external_lex_state = 5}, - [834] = {.lex_state = 21, .external_lex_state = 5}, - [835] = {.lex_state = 21, .external_lex_state = 5}, - [836] = {.lex_state = 30, .external_lex_state = 7}, - [837] = {.lex_state = 21, .external_lex_state = 7}, - [838] = {.lex_state = 30, .external_lex_state = 7}, - [839] = {.lex_state = 30, .external_lex_state = 11}, - [840] = {.lex_state = 21, .external_lex_state = 10}, - [841] = {.lex_state = 21, .external_lex_state = 7}, - [842] = {.lex_state = 30, .external_lex_state = 7}, - [843] = {.lex_state = 21, .external_lex_state = 7}, - [844] = {.lex_state = 21, .external_lex_state = 11}, - [845] = {.lex_state = 21, .external_lex_state = 10}, - [846] = {.lex_state = 21, .external_lex_state = 10}, - [847] = {.lex_state = 30, .external_lex_state = 11}, - [848] = {.lex_state = 20, .external_lex_state = 10}, - [849] = {.lex_state = 30, .external_lex_state = 11}, - [850] = {.lex_state = 21, .external_lex_state = 8}, - [851] = {.lex_state = 30, .external_lex_state = 8}, - [852] = {.lex_state = 30, .external_lex_state = 11}, - [853] = {.lex_state = 30, .external_lex_state = 8}, - [854] = {.lex_state = 30, .external_lex_state = 11}, - [855] = {.lex_state = 30, .external_lex_state = 11}, - [856] = {.lex_state = 20, .external_lex_state = 10}, - [857] = {.lex_state = 30, .external_lex_state = 9}, - [858] = {.lex_state = 30, .external_lex_state = 12}, - [859] = {.lex_state = 21, .external_lex_state = 10}, - [860] = {.lex_state = 21, .external_lex_state = 10}, - [861] = {.lex_state = 30, .external_lex_state = 11}, - [862] = {.lex_state = 21, .external_lex_state = 5}, - [863] = {.lex_state = 21, .external_lex_state = 8}, - [864] = {.lex_state = 21, .external_lex_state = 6}, - [865] = {.lex_state = 30, .external_lex_state = 11}, - [866] = {.lex_state = 21, .external_lex_state = 5}, - [867] = {.lex_state = 30, .external_lex_state = 11}, - [868] = {.lex_state = 21, .external_lex_state = 6}, - [869] = {.lex_state = 30, .external_lex_state = 11}, - [870] = {.lex_state = 30, .external_lex_state = 8}, - [871] = {.lex_state = 21, .external_lex_state = 10}, - [872] = {.lex_state = 21, .external_lex_state = 11}, - [873] = {.lex_state = 21, .external_lex_state = 11}, - [874] = {.lex_state = 30, .external_lex_state = 13}, - [875] = {.lex_state = 21, .external_lex_state = 11}, - [876] = {.lex_state = 21, .external_lex_state = 11}, - [877] = {.lex_state = 21, .external_lex_state = 10}, - [878] = {.lex_state = 21, .external_lex_state = 11}, - [879] = {.lex_state = 21, .external_lex_state = 10}, - [880] = {.lex_state = 21, .external_lex_state = 10}, - [881] = {.lex_state = 21, .external_lex_state = 10}, - [882] = {.lex_state = 21, .external_lex_state = 10}, - [883] = {.lex_state = 21, .external_lex_state = 13}, - [884] = {.lex_state = 21, .external_lex_state = 6}, - [885] = {.lex_state = 21, .external_lex_state = 8}, - [886] = {.lex_state = 21, .external_lex_state = 10}, - [887] = {.lex_state = 20, .external_lex_state = 10}, - [888] = {.lex_state = 21, .external_lex_state = 10}, - [889] = {.lex_state = 30, .external_lex_state = 11}, - [890] = {.lex_state = 21, .external_lex_state = 10}, - [891] = {.lex_state = 21, .external_lex_state = 11}, - [892] = {.lex_state = 30, .external_lex_state = 9}, - [893] = {.lex_state = 21, .external_lex_state = 11}, - [894] = {.lex_state = 21, .external_lex_state = 11}, - [895] = {.lex_state = 21, .external_lex_state = 11}, - [896] = {.lex_state = 21, .external_lex_state = 11}, - [897] = {.lex_state = 21, .external_lex_state = 11}, - [898] = {.lex_state = 30, .external_lex_state = 11}, - [899] = {.lex_state = 30, .external_lex_state = 9}, - [900] = {.lex_state = 21, .external_lex_state = 11}, - [901] = {.lex_state = 30, .external_lex_state = 11}, - [902] = {.lex_state = 21, .external_lex_state = 10}, - [903] = {.lex_state = 20, .external_lex_state = 11}, - [904] = {.lex_state = 20, .external_lex_state = 13}, - [905] = {.lex_state = 30, .external_lex_state = 12}, - [906] = {.lex_state = 21, .external_lex_state = 10}, - [907] = {.lex_state = 21, .external_lex_state = 10}, - [908] = {.lex_state = 21, .external_lex_state = 10}, - [909] = {.lex_state = 30, .external_lex_state = 12}, - [910] = {.lex_state = 30, .external_lex_state = 12}, - [911] = {.lex_state = 21, .external_lex_state = 10}, - [912] = {.lex_state = 30, .external_lex_state = 12}, - [913] = {.lex_state = 30, .external_lex_state = 12}, - [914] = {.lex_state = 30, .external_lex_state = 12}, - [915] = {.lex_state = 21, .external_lex_state = 13}, - [916] = {.lex_state = 30, .external_lex_state = 13}, - [917] = {.lex_state = 30, .external_lex_state = 7}, - [918] = {.lex_state = 21, .external_lex_state = 13}, - [919] = {.lex_state = 21, .external_lex_state = 13}, - [920] = {.lex_state = 30, .external_lex_state = 12}, - [921] = {.lex_state = 30, .external_lex_state = 12}, - [922] = {.lex_state = 21, .external_lex_state = 2}, - [923] = {.lex_state = 29, .external_lex_state = 11}, - [924] = {.lex_state = 29, .external_lex_state = 13}, - [925] = {.lex_state = 21, .external_lex_state = 13}, - [926] = {.lex_state = 21, .external_lex_state = 10}, - [927] = {.lex_state = 21, .external_lex_state = 10}, - [928] = {.lex_state = 21, .external_lex_state = 13}, - [929] = {.lex_state = 30, .external_lex_state = 13}, - [930] = {.lex_state = 21, .external_lex_state = 13}, - [931] = {.lex_state = 21, .external_lex_state = 10}, - [932] = {.lex_state = 21, .external_lex_state = 9}, - [933] = {.lex_state = 29, .external_lex_state = 13}, - [934] = {.lex_state = 29, .external_lex_state = 13}, - [935] = {.lex_state = 21, .external_lex_state = 13}, - [936] = {.lex_state = 21, .external_lex_state = 13}, - [937] = {.lex_state = 21, .external_lex_state = 13}, - [938] = {.lex_state = 29, .external_lex_state = 11}, - [939] = {.lex_state = 29, .external_lex_state = 11}, - [940] = {.lex_state = 21, .external_lex_state = 13}, - [941] = {.lex_state = 29, .external_lex_state = 11}, - [942] = {.lex_state = 21, .external_lex_state = 10}, - [943] = {.lex_state = 29, .external_lex_state = 11}, - [944] = {.lex_state = 21, .external_lex_state = 10}, - [945] = {.lex_state = 21, .external_lex_state = 10}, - [946] = {.lex_state = 21, .external_lex_state = 10}, - [947] = {.lex_state = 21, .external_lex_state = 10}, - [948] = {.lex_state = 30, .external_lex_state = 12}, - [949] = {.lex_state = 30, .external_lex_state = 12}, - [950] = {.lex_state = 21, .external_lex_state = 9}, - [951] = {.lex_state = 21, .external_lex_state = 10}, - [952] = {.lex_state = 29, .external_lex_state = 11}, - [953] = {.lex_state = 21, .external_lex_state = 10}, - [954] = {.lex_state = 21, .external_lex_state = 10}, - [955] = {.lex_state = 30, .external_lex_state = 12}, - [956] = {.lex_state = 30, .external_lex_state = 13}, - [957] = {.lex_state = 30, .external_lex_state = 13}, - [958] = {.lex_state = 30, .external_lex_state = 12}, - [959] = {.lex_state = 30, .external_lex_state = 13}, - [960] = {.lex_state = 30, .external_lex_state = 13}, - [961] = {.lex_state = 21, .external_lex_state = 10}, - [962] = {.lex_state = 30, .external_lex_state = 13}, - [963] = {.lex_state = 30, .external_lex_state = 13}, - [964] = {.lex_state = 21, .external_lex_state = 13}, - [965] = {.lex_state = 30, .external_lex_state = 13}, - [966] = {.lex_state = 30, .external_lex_state = 13}, - [967] = {.lex_state = 20, .external_lex_state = 11}, - [968] = {.lex_state = 20, .external_lex_state = 10}, - [969] = {.lex_state = 21, .external_lex_state = 10}, - [970] = {.lex_state = 21, .external_lex_state = 10}, - [971] = {.lex_state = 21, .external_lex_state = 10}, - [972] = {.lex_state = 21, .external_lex_state = 7}, - [973] = {.lex_state = 21, .external_lex_state = 10}, - [974] = {.lex_state = 20, .external_lex_state = 11}, - [975] = {.lex_state = 21, .external_lex_state = 10}, - [976] = {.lex_state = 21, .external_lex_state = 10}, - [977] = {.lex_state = 21, .external_lex_state = 13}, - [978] = {.lex_state = 20, .external_lex_state = 11}, - [979] = {.lex_state = 20, .external_lex_state = 11}, - [980] = {.lex_state = 21, .external_lex_state = 10}, - [981] = {.lex_state = 21, .external_lex_state = 10}, - [982] = {.lex_state = 30, .external_lex_state = 7}, - [983] = {.lex_state = 20, .external_lex_state = 11}, - [984] = {.lex_state = 21, .external_lex_state = 10}, - [985] = {.lex_state = 21, .external_lex_state = 10}, - [986] = {.lex_state = 21, .external_lex_state = 10}, - [987] = {.lex_state = 21, .external_lex_state = 10}, - [988] = {.lex_state = 30, .external_lex_state = 13}, - [989] = {.lex_state = 21, .external_lex_state = 10}, - [990] = {.lex_state = 21, .external_lex_state = 12}, - [991] = {.lex_state = 21, .external_lex_state = 10}, - [992] = {.lex_state = 21, .external_lex_state = 7}, - [993] = {.lex_state = 21, .external_lex_state = 10}, - [994] = {.lex_state = 21, .external_lex_state = 10}, - [995] = {.lex_state = 21, .external_lex_state = 10}, - [996] = {.lex_state = 21, .external_lex_state = 10}, - [997] = {.lex_state = 21, .external_lex_state = 10}, - [998] = {.lex_state = 21, .external_lex_state = 10}, - [999] = {.lex_state = 21, .external_lex_state = 10}, - [1000] = {.lex_state = 21, .external_lex_state = 10}, - [1001] = {.lex_state = 21, .external_lex_state = 10}, - [1002] = {.lex_state = 21, .external_lex_state = 10}, - [1003] = {.lex_state = 21, .external_lex_state = 9}, - [1004] = {.lex_state = 21, .external_lex_state = 10}, - [1005] = {.lex_state = 21, .external_lex_state = 10}, - [1006] = {.lex_state = 21, .external_lex_state = 10}, - [1007] = {.lex_state = 21, .external_lex_state = 10}, - [1008] = {.lex_state = 21, .external_lex_state = 10}, - [1009] = {.lex_state = 21, .external_lex_state = 10}, - [1010] = {.lex_state = 30, .external_lex_state = 13}, - [1011] = {.lex_state = 21, .external_lex_state = 10}, - [1012] = {.lex_state = 21, .external_lex_state = 10}, - [1013] = {.lex_state = 21, .external_lex_state = 2}, - [1014] = {.lex_state = 21, .external_lex_state = 2}, - [1015] = {.lex_state = 21, .external_lex_state = 8}, - [1016] = {.lex_state = 20, .external_lex_state = 2}, - [1017] = {.lex_state = 20, .external_lex_state = 2}, - [1018] = {.lex_state = 20, .external_lex_state = 2}, - [1019] = {.lex_state = 21, .external_lex_state = 12}, - [1020] = {.lex_state = 21, .external_lex_state = 12}, - [1021] = {.lex_state = 21, .external_lex_state = 12}, - [1022] = {.lex_state = 21, .external_lex_state = 12}, - [1023] = {.lex_state = 21, .external_lex_state = 12}, - [1024] = {.lex_state = 21, .external_lex_state = 12}, - [1025] = {.lex_state = 21, .external_lex_state = 12}, - [1026] = {.lex_state = 21, .external_lex_state = 11}, - [1027] = {.lex_state = 21, .external_lex_state = 11}, - [1028] = {.lex_state = 21, .external_lex_state = 11}, - [1029] = {.lex_state = 21, .external_lex_state = 12}, - [1030] = {.lex_state = 21, .external_lex_state = 12}, - [1031] = {.lex_state = 21, .external_lex_state = 13}, - [1032] = {.lex_state = 20, .external_lex_state = 13}, - [1033] = {.lex_state = 20, .external_lex_state = 13}, - [1034] = {.lex_state = 21, .external_lex_state = 11}, - [1035] = {.lex_state = 20, .external_lex_state = 13}, - [1036] = {.lex_state = 21, .external_lex_state = 11}, - [1037] = {.lex_state = 21, .external_lex_state = 11}, - [1038] = {.lex_state = 21, .external_lex_state = 11}, - [1039] = {.lex_state = 21, .external_lex_state = 12}, - [1040] = {.lex_state = 21, .external_lex_state = 12}, - [1041] = {.lex_state = 21, .external_lex_state = 11}, - [1042] = {.lex_state = 29, .external_lex_state = 13}, - [1043] = {.lex_state = 21, .external_lex_state = 11}, - [1044] = {.lex_state = 21, .external_lex_state = 11}, - [1045] = {.lex_state = 30, .external_lex_state = 11}, - [1046] = {.lex_state = 29, .external_lex_state = 13}, - [1047] = {.lex_state = 29, .external_lex_state = 13}, - [1048] = {.lex_state = 21, .external_lex_state = 11}, - [1049] = {.lex_state = 30, .external_lex_state = 11}, - [1050] = {.lex_state = 21, .external_lex_state = 11}, - [1051] = {.lex_state = 21, .external_lex_state = 12}, - [1052] = {.lex_state = 21, .external_lex_state = 6}, - [1053] = {.lex_state = 21, .external_lex_state = 11}, - [1054] = {.lex_state = 21, .external_lex_state = 11}, - [1055] = {.lex_state = 30, .external_lex_state = 8}, - [1056] = {.lex_state = 29, .external_lex_state = 12}, - [1057] = {.lex_state = 29, .external_lex_state = 12}, - [1058] = {.lex_state = 29, .external_lex_state = 12}, - [1059] = {.lex_state = 21, .external_lex_state = 11}, - [1060] = {.lex_state = 21, .external_lex_state = 11}, - [1061] = {.lex_state = 21, .external_lex_state = 11}, - [1062] = {.lex_state = 21, .external_lex_state = 11}, - [1063] = {.lex_state = 21, .external_lex_state = 11}, - [1064] = {.lex_state = 21, .external_lex_state = 6}, - [1065] = {.lex_state = 21, .external_lex_state = 12}, - [1066] = {.lex_state = 21, .external_lex_state = 8}, - [1067] = {.lex_state = 30, .external_lex_state = 11}, - [1068] = {.lex_state = 30, .external_lex_state = 11}, - [1069] = {.lex_state = 30, .external_lex_state = 11}, - [1070] = {.lex_state = 30, .external_lex_state = 11}, - [1071] = {.lex_state = 30, .external_lex_state = 11}, - [1072] = {.lex_state = 30, .external_lex_state = 11}, - [1073] = {.lex_state = 30, .external_lex_state = 11}, - [1074] = {.lex_state = 30, .external_lex_state = 11}, - [1075] = {.lex_state = 30, .external_lex_state = 11}, - [1076] = {.lex_state = 30, .external_lex_state = 11}, - [1077] = {.lex_state = 21, .external_lex_state = 11}, - [1078] = {.lex_state = 21, .external_lex_state = 11}, - [1079] = {.lex_state = 20, .external_lex_state = 2}, - [1080] = {.lex_state = 30, .external_lex_state = 11}, - [1081] = {.lex_state = 30, .external_lex_state = 11}, - [1082] = {.lex_state = 30, .external_lex_state = 11}, - [1083] = {.lex_state = 30, .external_lex_state = 11}, - [1084] = {.lex_state = 30, .external_lex_state = 11}, - [1085] = {.lex_state = 30, .external_lex_state = 11}, - [1086] = {.lex_state = 30, .external_lex_state = 11}, - [1087] = {.lex_state = 30, .external_lex_state = 11}, - [1088] = {.lex_state = 20, .external_lex_state = 12}, - [1089] = {.lex_state = 29, .external_lex_state = 12}, - [1090] = {.lex_state = 21, .external_lex_state = 11}, - [1091] = {.lex_state = 29, .external_lex_state = 12}, - [1092] = {.lex_state = 29, .external_lex_state = 12}, - [1093] = {.lex_state = 21, .external_lex_state = 11}, - [1094] = {.lex_state = 21, .external_lex_state = 11}, - [1095] = {.lex_state = 21, .external_lex_state = 11}, - [1096] = {.lex_state = 30, .external_lex_state = 8}, - [1097] = {.lex_state = 30, .external_lex_state = 11}, - [1098] = {.lex_state = 30, .external_lex_state = 11}, - [1099] = {.lex_state = 21, .external_lex_state = 11}, - [1100] = {.lex_state = 21, .external_lex_state = 11}, - [1101] = {.lex_state = 29, .external_lex_state = 13}, - [1102] = {.lex_state = 29, .external_lex_state = 13}, - [1103] = {.lex_state = 21, .external_lex_state = 11}, - [1104] = {.lex_state = 29, .external_lex_state = 13}, - [1105] = {.lex_state = 30, .external_lex_state = 9}, - [1106] = {.lex_state = 30, .external_lex_state = 11}, - [1107] = {.lex_state = 30, .external_lex_state = 11}, - [1108] = {.lex_state = 30, .external_lex_state = 11}, - [1109] = {.lex_state = 30, .external_lex_state = 11}, - [1110] = {.lex_state = 30, .external_lex_state = 11}, - [1111] = {.lex_state = 29, .external_lex_state = 13}, - [1112] = {.lex_state = 29, .external_lex_state = 13}, - [1113] = {.lex_state = 29, .external_lex_state = 13}, - [1114] = {.lex_state = 30, .external_lex_state = 11}, - [1115] = {.lex_state = 21, .external_lex_state = 11}, - [1116] = {.lex_state = 21, .external_lex_state = 11}, - [1117] = {.lex_state = 21, .external_lex_state = 11}, - [1118] = {.lex_state = 21, .external_lex_state = 2}, - [1119] = {.lex_state = 21, .external_lex_state = 2}, - [1120] = {.lex_state = 21, .external_lex_state = 2}, - [1121] = {.lex_state = 21, .external_lex_state = 11}, - [1122] = {.lex_state = 30, .external_lex_state = 13}, - [1123] = {.lex_state = 21, .external_lex_state = 2}, - [1124] = {.lex_state = 21, .external_lex_state = 2}, - [1125] = {.lex_state = 21, .external_lex_state = 2}, - [1126] = {.lex_state = 30, .external_lex_state = 11}, - [1127] = {.lex_state = 30, .external_lex_state = 11}, - [1128] = {.lex_state = 21, .external_lex_state = 11}, - [1129] = {.lex_state = 30, .external_lex_state = 11}, - [1130] = {.lex_state = 30, .external_lex_state = 11}, - [1131] = {.lex_state = 30, .external_lex_state = 11}, - [1132] = {.lex_state = 21, .external_lex_state = 2}, - [1133] = {.lex_state = 21, .external_lex_state = 11}, - [1134] = {.lex_state = 21, .external_lex_state = 11}, - [1135] = {.lex_state = 30, .external_lex_state = 9}, - [1136] = {.lex_state = 30, .external_lex_state = 11}, - [1137] = {.lex_state = 21, .external_lex_state = 2}, - [1138] = {.lex_state = 30, .external_lex_state = 11}, - [1139] = {.lex_state = 21, .external_lex_state = 11}, - [1140] = {.lex_state = 30, .external_lex_state = 11}, - [1141] = {.lex_state = 21, .external_lex_state = 11}, - [1142] = {.lex_state = 21, .external_lex_state = 2}, - [1143] = {.lex_state = 29, .external_lex_state = 12}, - [1144] = {.lex_state = 29, .external_lex_state = 12}, - [1145] = {.lex_state = 30, .external_lex_state = 13}, - [1146] = {.lex_state = 29, .external_lex_state = 12}, - [1147] = {.lex_state = 30, .external_lex_state = 11}, - [1148] = {.lex_state = 21, .external_lex_state = 2}, - [1149] = {.lex_state = 30, .external_lex_state = 13}, - [1150] = {.lex_state = 30, .external_lex_state = 13}, - [1151] = {.lex_state = 30, .external_lex_state = 13}, - [1152] = {.lex_state = 21, .external_lex_state = 11}, - [1153] = {.lex_state = 21, .external_lex_state = 11}, - [1154] = {.lex_state = 21, .external_lex_state = 11}, - [1155] = {.lex_state = 21, .external_lex_state = 11}, - [1156] = {.lex_state = 30, .external_lex_state = 13}, - [1157] = {.lex_state = 30, .external_lex_state = 13}, - [1158] = {.lex_state = 19, .external_lex_state = 10}, - [1159] = {.lex_state = 30, .external_lex_state = 12}, - [1160] = {.lex_state = 30, .external_lex_state = 12}, - [1161] = {.lex_state = 30, .external_lex_state = 13}, - [1162] = {.lex_state = 30, .external_lex_state = 13}, - [1163] = {.lex_state = 30, .external_lex_state = 12}, - [1164] = {.lex_state = 30, .external_lex_state = 13}, - [1165] = {.lex_state = 21, .external_lex_state = 13}, - [1166] = {.lex_state = 30, .external_lex_state = 13}, - [1167] = {.lex_state = 19, .external_lex_state = 10}, - [1168] = {.lex_state = 21, .external_lex_state = 10}, - [1169] = {.lex_state = 19, .external_lex_state = 10}, - [1170] = {.lex_state = 19, .external_lex_state = 10}, - [1171] = {.lex_state = 21, .external_lex_state = 2}, - [1172] = {.lex_state = 30, .external_lex_state = 13}, - [1173] = {.lex_state = 21, .external_lex_state = 13}, - [1174] = {.lex_state = 30, .external_lex_state = 13}, - [1175] = {.lex_state = 21, .external_lex_state = 13}, - [1176] = {.lex_state = 30, .external_lex_state = 13}, - [1177] = {.lex_state = 30, .external_lex_state = 13}, - [1178] = {.lex_state = 30, .external_lex_state = 12}, - [1179] = {.lex_state = 21, .external_lex_state = 2}, - [1180] = {.lex_state = 21, .external_lex_state = 13}, - [1181] = {.lex_state = 21, .external_lex_state = 13}, - [1182] = {.lex_state = 30, .external_lex_state = 13}, - [1183] = {.lex_state = 21, .external_lex_state = 13}, - [1184] = {.lex_state = 21, .external_lex_state = 13}, - [1185] = {.lex_state = 21, .external_lex_state = 2}, - [1186] = {.lex_state = 21, .external_lex_state = 2}, - [1187] = {.lex_state = 30, .external_lex_state = 13}, - [1188] = {.lex_state = 30, .external_lex_state = 13}, - [1189] = {.lex_state = 30, .external_lex_state = 13}, - [1190] = {.lex_state = 21, .external_lex_state = 13}, - [1191] = {.lex_state = 21, .external_lex_state = 2}, - [1192] = {.lex_state = 21, .external_lex_state = 2}, - [1193] = {.lex_state = 21, .external_lex_state = 13}, - [1194] = {.lex_state = 21, .external_lex_state = 13}, - [1195] = {.lex_state = 30, .external_lex_state = 13}, - [1196] = {.lex_state = 30, .external_lex_state = 13}, - [1197] = {.lex_state = 30, .external_lex_state = 13}, - [1198] = {.lex_state = 30, .external_lex_state = 13}, - [1199] = {.lex_state = 21, .external_lex_state = 2}, - [1200] = {.lex_state = 30, .external_lex_state = 13}, - [1201] = {.lex_state = 30, .external_lex_state = 13}, - [1202] = {.lex_state = 21, .external_lex_state = 2}, - [1203] = {.lex_state = 21, .external_lex_state = 13}, - [1204] = {.lex_state = 21, .external_lex_state = 2}, - [1205] = {.lex_state = 21, .external_lex_state = 13}, - [1206] = {.lex_state = 21, .external_lex_state = 2}, - [1207] = {.lex_state = 21, .external_lex_state = 2}, - [1208] = {.lex_state = 21, .external_lex_state = 2}, - [1209] = {.lex_state = 21, .external_lex_state = 2}, - [1210] = {.lex_state = 194, .external_lex_state = 2}, - [1211] = {.lex_state = 30, .external_lex_state = 12}, - [1212] = {.lex_state = 21, .external_lex_state = 13}, - [1213] = {.lex_state = 21, .external_lex_state = 13}, - [1214] = {.lex_state = 21, .external_lex_state = 2}, - [1215] = {.lex_state = 30, .external_lex_state = 13}, - [1216] = {.lex_state = 21, .external_lex_state = 2}, - [1217] = {.lex_state = 30, .external_lex_state = 13}, - [1218] = {.lex_state = 21, .external_lex_state = 2}, - [1219] = {.lex_state = 21, .external_lex_state = 13}, - [1220] = {.lex_state = 21, .external_lex_state = 2}, - [1221] = {.lex_state = 30, .external_lex_state = 13}, - [1222] = {.lex_state = 21, .external_lex_state = 13}, - [1223] = {.lex_state = 30, .external_lex_state = 13}, - [1224] = {.lex_state = 30, .external_lex_state = 12}, - [1225] = {.lex_state = 30, .external_lex_state = 12}, - [1226] = {.lex_state = 21, .external_lex_state = 2}, - [1227] = {.lex_state = 21, .external_lex_state = 13}, - [1228] = {.lex_state = 21, .external_lex_state = 13}, - [1229] = {.lex_state = 21, .external_lex_state = 2}, - [1230] = {.lex_state = 30, .external_lex_state = 13}, - [1231] = {.lex_state = 30, .external_lex_state = 12}, - [1232] = {.lex_state = 21, .external_lex_state = 2}, - [1233] = {.lex_state = 21, .external_lex_state = 13}, - [1234] = {.lex_state = 30, .external_lex_state = 12}, - [1235] = {.lex_state = 21, .external_lex_state = 13}, - [1236] = {.lex_state = 30, .external_lex_state = 12}, - [1237] = {.lex_state = 30, .external_lex_state = 12}, - [1238] = {.lex_state = 30, .external_lex_state = 12}, - [1239] = {.lex_state = 21, .external_lex_state = 2}, - [1240] = {.lex_state = 30, .external_lex_state = 13}, - [1241] = {.lex_state = 21, .external_lex_state = 2}, - [1242] = {.lex_state = 30, .external_lex_state = 13}, - [1243] = {.lex_state = 30, .external_lex_state = 12}, - [1244] = {.lex_state = 21, .external_lex_state = 13}, - [1245] = {.lex_state = 30, .external_lex_state = 12}, - [1246] = {.lex_state = 30, .external_lex_state = 13}, - [1247] = {.lex_state = 21, .external_lex_state = 2}, - [1248] = {.lex_state = 30, .external_lex_state = 12}, - [1249] = {.lex_state = 21, .external_lex_state = 13}, - [1250] = {.lex_state = 21, .external_lex_state = 2}, - [1251] = {.lex_state = 21, .external_lex_state = 2}, - [1252] = {.lex_state = 21, .external_lex_state = 2}, - [1253] = {.lex_state = 21, .external_lex_state = 13}, - [1254] = {.lex_state = 30, .external_lex_state = 13}, - [1255] = {.lex_state = 21, .external_lex_state = 2}, - [1256] = {.lex_state = 21, .external_lex_state = 2}, - [1257] = {.lex_state = 21, .external_lex_state = 2}, - [1258] = {.lex_state = 21, .external_lex_state = 2}, - [1259] = {.lex_state = 30, .external_lex_state = 13}, - [1260] = {.lex_state = 21, .external_lex_state = 2}, - [1261] = {.lex_state = 30, .external_lex_state = 12}, - [1262] = {.lex_state = 21, .external_lex_state = 2}, - [1263] = {.lex_state = 20, .external_lex_state = 12}, - [1264] = {.lex_state = 20, .external_lex_state = 12}, - [1265] = {.lex_state = 21, .external_lex_state = 2}, - [1266] = {.lex_state = 21, .external_lex_state = 2}, - [1267] = {.lex_state = 21, .external_lex_state = 2}, - [1268] = {.lex_state = 30, .external_lex_state = 12}, - [1269] = {.lex_state = 30, .external_lex_state = 12}, - [1270] = {.lex_state = 21, .external_lex_state = 13}, - [1271] = {.lex_state = 30, .external_lex_state = 12}, - [1272] = {.lex_state = 30, .external_lex_state = 12}, - [1273] = {.lex_state = 20, .external_lex_state = 12}, - [1274] = {.lex_state = 30, .external_lex_state = 12}, - [1275] = {.lex_state = 21, .external_lex_state = 13}, - [1276] = {.lex_state = 21, .external_lex_state = 13}, - [1277] = {.lex_state = 21, .external_lex_state = 2}, - [1278] = {.lex_state = 21, .external_lex_state = 13}, - [1279] = {.lex_state = 30, .external_lex_state = 13}, - [1280] = {.lex_state = 30, .external_lex_state = 13}, - [1281] = {.lex_state = 30, .external_lex_state = 13}, - [1282] = {.lex_state = 30, .external_lex_state = 13}, - [1283] = {.lex_state = 30, .external_lex_state = 12}, - [1284] = {.lex_state = 21, .external_lex_state = 13}, - [1285] = {.lex_state = 30, .external_lex_state = 12}, - [1286] = {.lex_state = 30, .external_lex_state = 13}, - [1287] = {.lex_state = 30, .external_lex_state = 12}, - [1288] = {.lex_state = 21, .external_lex_state = 13}, - [1289] = {.lex_state = 21, .external_lex_state = 13}, - [1290] = {.lex_state = 30, .external_lex_state = 12}, - [1291] = {.lex_state = 21, .external_lex_state = 13}, - [1292] = {.lex_state = 21, .external_lex_state = 13}, - [1293] = {.lex_state = 21, .external_lex_state = 13}, - [1294] = {.lex_state = 30, .external_lex_state = 12}, - [1295] = {.lex_state = 30, .external_lex_state = 12}, - [1296] = {.lex_state = 30, .external_lex_state = 12}, - [1297] = {.lex_state = 30, .external_lex_state = 12}, - [1298] = {.lex_state = 21, .external_lex_state = 13}, - [1299] = {.lex_state = 19, .external_lex_state = 10}, - [1300] = {.lex_state = 30, .external_lex_state = 12}, - [1301] = {.lex_state = 19, .external_lex_state = 10}, - [1302] = {.lex_state = 21, .external_lex_state = 13}, - [1303] = {.lex_state = 30, .external_lex_state = 12}, - [1304] = {.lex_state = 30, .external_lex_state = 12}, - [1305] = {.lex_state = 21, .external_lex_state = 9}, - [1306] = {.lex_state = 21, .external_lex_state = 13}, - [1307] = {.lex_state = 30, .external_lex_state = 12}, - [1308] = {.lex_state = 21, .external_lex_state = 13}, - [1309] = {.lex_state = 21, .external_lex_state = 2}, - [1310] = {.lex_state = 30, .external_lex_state = 12}, - [1311] = {.lex_state = 30, .external_lex_state = 12}, - [1312] = {.lex_state = 20, .external_lex_state = 13}, - [1313] = {.lex_state = 20, .external_lex_state = 13}, - [1314] = {.lex_state = 30, .external_lex_state = 12}, - [1315] = {.lex_state = 194, .external_lex_state = 2}, - [1316] = {.lex_state = 30, .external_lex_state = 12}, - [1317] = {.lex_state = 30, .external_lex_state = 12}, - [1318] = {.lex_state = 30, .external_lex_state = 12}, - [1319] = {.lex_state = 30, .external_lex_state = 13}, - [1320] = {.lex_state = 20, .external_lex_state = 13}, - [1321] = {.lex_state = 21, .external_lex_state = 9}, - [1322] = {.lex_state = 30, .external_lex_state = 12}, - [1323] = {.lex_state = 30, .external_lex_state = 12}, - [1324] = {.lex_state = 21, .external_lex_state = 12}, - [1325] = {.lex_state = 21, .external_lex_state = 2}, - [1326] = {.lex_state = 21, .external_lex_state = 12}, - [1327] = {.lex_state = 21, .external_lex_state = 12}, - [1328] = {.lex_state = 21, .external_lex_state = 2}, - [1329] = {.lex_state = 21, .external_lex_state = 2}, - [1330] = {.lex_state = 21, .external_lex_state = 2}, - [1331] = {.lex_state = 21, .external_lex_state = 12}, - [1332] = {.lex_state = 20, .external_lex_state = 13}, - [1333] = {.lex_state = 21, .external_lex_state = 12}, - [1334] = {.lex_state = 20, .external_lex_state = 11}, - [1335] = {.lex_state = 20, .external_lex_state = 13}, - [1336] = {.lex_state = 21, .external_lex_state = 2}, - [1337] = {.lex_state = 20, .external_lex_state = 11}, - [1338] = {.lex_state = 21, .external_lex_state = 12}, - [1339] = {.lex_state = 21, .external_lex_state = 12}, - [1340] = {.lex_state = 20, .external_lex_state = 11}, - [1341] = {.lex_state = 21, .external_lex_state = 2}, - [1342] = {.lex_state = 21, .external_lex_state = 12}, - [1343] = {.lex_state = 21, .external_lex_state = 12}, - [1344] = {.lex_state = 21, .external_lex_state = 12}, - [1345] = {.lex_state = 20, .external_lex_state = 13}, - [1346] = {.lex_state = 21, .external_lex_state = 2}, - [1347] = {.lex_state = 21, .external_lex_state = 12}, - [1348] = {.lex_state = 21, .external_lex_state = 12}, - [1349] = {.lex_state = 21, .external_lex_state = 12}, - [1350] = {.lex_state = 21, .external_lex_state = 12}, - [1351] = {.lex_state = 21, .external_lex_state = 12}, - [1352] = {.lex_state = 21, .external_lex_state = 12}, - [1353] = {.lex_state = 21, .external_lex_state = 12}, - [1354] = {.lex_state = 21, .external_lex_state = 12}, - [1355] = {.lex_state = 21, .external_lex_state = 12}, - [1356] = {.lex_state = 21, .external_lex_state = 12}, - [1357] = {.lex_state = 21, .external_lex_state = 12}, - [1358] = {.lex_state = 21, .external_lex_state = 2}, - [1359] = {.lex_state = 21, .external_lex_state = 2}, - [1360] = {.lex_state = 20, .external_lex_state = 12}, - [1361] = {.lex_state = 20, .external_lex_state = 12}, - [1362] = {.lex_state = 21, .external_lex_state = 12}, - [1363] = {.lex_state = 20, .external_lex_state = 12}, - [1364] = {.lex_state = 21, .external_lex_state = 2}, - [1365] = {.lex_state = 21, .external_lex_state = 2}, - [1366] = {.lex_state = 21, .external_lex_state = 12}, - [1367] = {.lex_state = 21, .external_lex_state = 2}, - [1368] = {.lex_state = 21, .external_lex_state = 12}, - [1369] = {.lex_state = 21, .external_lex_state = 12}, - [1370] = {.lex_state = 21, .external_lex_state = 12}, - [1371] = {.lex_state = 21, .external_lex_state = 12}, - [1372] = {.lex_state = 21, .external_lex_state = 12}, - [1373] = {.lex_state = 21, .external_lex_state = 12}, - [1374] = {.lex_state = 21, .external_lex_state = 2}, - [1375] = {.lex_state = 21, .external_lex_state = 12}, - [1376] = {.lex_state = 21, .external_lex_state = 12}, - [1377] = {.lex_state = 21, .external_lex_state = 12}, - [1378] = {.lex_state = 21, .external_lex_state = 12}, - [1379] = {.lex_state = 21, .external_lex_state = 12}, - [1380] = {.lex_state = 21, .external_lex_state = 12}, - [1381] = {.lex_state = 21, .external_lex_state = 12}, - [1382] = {.lex_state = 21, .external_lex_state = 12}, - [1383] = {.lex_state = 21, .external_lex_state = 12}, - [1384] = {.lex_state = 19, .external_lex_state = 2}, - [1385] = {.lex_state = 19, .external_lex_state = 2}, - [1386] = {.lex_state = 19, .external_lex_state = 2}, - [1387] = {.lex_state = 19, .external_lex_state = 2}, - [1388] = {.lex_state = 21, .external_lex_state = 13}, - [1389] = {.lex_state = 21, .external_lex_state = 11}, - [1390] = {.lex_state = 19, .external_lex_state = 2}, - [1391] = {.lex_state = 19, .external_lex_state = 2}, - [1392] = {.lex_state = 19, .external_lex_state = 2}, - [1393] = {.lex_state = 19, .external_lex_state = 2}, - [1394] = {.lex_state = 19, .external_lex_state = 2}, - [1395] = {.lex_state = 19, .external_lex_state = 2}, - [1396] = {.lex_state = 19, .external_lex_state = 2}, - [1397] = {.lex_state = 19, .external_lex_state = 2}, - [1398] = {.lex_state = 19, .external_lex_state = 2}, - [1399] = {.lex_state = 19, .external_lex_state = 2}, - [1400] = {.lex_state = 19, .external_lex_state = 2}, - [1401] = {.lex_state = 19, .external_lex_state = 2}, - [1402] = {.lex_state = 19, .external_lex_state = 10}, - [1403] = {.lex_state = 19, .external_lex_state = 10}, - [1404] = {.lex_state = 21, .external_lex_state = 11}, - [1405] = {.lex_state = 19, .external_lex_state = 13}, - [1406] = {.lex_state = 21, .external_lex_state = 11}, - [1407] = {.lex_state = 21, .external_lex_state = 11}, - [1408] = {.lex_state = 21, .external_lex_state = 11}, - [1409] = {.lex_state = 19, .external_lex_state = 13}, - [1410] = {.lex_state = 21, .external_lex_state = 11}, - [1411] = {.lex_state = 21, .external_lex_state = 11}, - [1412] = {.lex_state = 19, .external_lex_state = 12}, - [1413] = {.lex_state = 19, .external_lex_state = 2}, - [1414] = {.lex_state = 19, .external_lex_state = 2}, - [1415] = {.lex_state = 19, .external_lex_state = 11}, - [1416] = {.lex_state = 19, .external_lex_state = 11}, - [1417] = {.lex_state = 19, .external_lex_state = 12}, - [1418] = {.lex_state = 30, .external_lex_state = 11}, - [1419] = {.lex_state = 30, .external_lex_state = 11}, - [1420] = {.lex_state = 21, .external_lex_state = 13}, - [1421] = {.lex_state = 24, .external_lex_state = 10}, - [1422] = {.lex_state = 21, .external_lex_state = 13}, - [1423] = {.lex_state = 30, .external_lex_state = 13}, - [1424] = {.lex_state = 21, .external_lex_state = 13}, - [1425] = {.lex_state = 24, .external_lex_state = 10}, - [1426] = {.lex_state = 21, .external_lex_state = 13}, - [1427] = {.lex_state = 30, .external_lex_state = 12}, - [1428] = {.lex_state = 30, .external_lex_state = 12}, - [1429] = {.lex_state = 27, .external_lex_state = 10}, - [1430] = {.lex_state = 21, .external_lex_state = 13}, - [1431] = {.lex_state = 21, .external_lex_state = 13}, + [607] = {.lex_state = 59, .external_lex_state = 6}, + [608] = {.lex_state = 21, .external_lex_state = 8}, + [609] = {.lex_state = 21, .external_lex_state = 6}, + [610] = {.lex_state = 56, .external_lex_state = 3}, + [611] = {.lex_state = 54, .external_lex_state = 3}, + [612] = {.lex_state = 21, .external_lex_state = 6}, + [613] = {.lex_state = 21, .external_lex_state = 8}, + [614] = {.lex_state = 54, .external_lex_state = 3}, + [615] = {.lex_state = 21, .external_lex_state = 9}, + [616] = {.lex_state = 53, .external_lex_state = 3}, + [617] = {.lex_state = 54, .external_lex_state = 3}, + [618] = {.lex_state = 56, .external_lex_state = 3}, + [619] = {.lex_state = 56, .external_lex_state = 3}, + [620] = {.lex_state = 21, .external_lex_state = 6}, + [621] = {.lex_state = 59, .external_lex_state = 6}, + [622] = {.lex_state = 21, .external_lex_state = 9}, + [623] = {.lex_state = 54, .external_lex_state = 3}, + [624] = {.lex_state = 21, .external_lex_state = 6}, + [625] = {.lex_state = 56, .external_lex_state = 3}, + [626] = {.lex_state = 56, .external_lex_state = 3}, + [627] = {.lex_state = 21, .external_lex_state = 6}, + [628] = {.lex_state = 21, .external_lex_state = 6}, + [629] = {.lex_state = 53, .external_lex_state = 3}, + [630] = {.lex_state = 21, .external_lex_state = 6}, + [631] = {.lex_state = 53, .external_lex_state = 3}, + [632] = {.lex_state = 54, .external_lex_state = 3}, + [633] = {.lex_state = 21, .external_lex_state = 6}, + [634] = {.lex_state = 53, .external_lex_state = 3}, + [635] = {.lex_state = 54, .external_lex_state = 3}, + [636] = {.lex_state = 53, .external_lex_state = 3}, + [637] = {.lex_state = 21, .external_lex_state = 6}, + [638] = {.lex_state = 54, .external_lex_state = 3}, + [639] = {.lex_state = 54, .external_lex_state = 3}, + [640] = {.lex_state = 21, .external_lex_state = 6}, + [641] = {.lex_state = 53, .external_lex_state = 3}, + [642] = {.lex_state = 53, .external_lex_state = 3}, + [643] = {.lex_state = 54, .external_lex_state = 3}, + [644] = {.lex_state = 53, .external_lex_state = 3}, + [645] = {.lex_state = 41, .external_lex_state = 3}, + [646] = {.lex_state = 41, .external_lex_state = 3}, + [647] = {.lex_state = 41, .external_lex_state = 3}, + [648] = {.lex_state = 41, .external_lex_state = 3}, + [649] = {.lex_state = 41, .external_lex_state = 3}, + [650] = {.lex_state = 41, .external_lex_state = 3}, + [651] = {.lex_state = 41, .external_lex_state = 3}, + [652] = {.lex_state = 41, .external_lex_state = 3}, + [653] = {.lex_state = 41, .external_lex_state = 3}, + [654] = {.lex_state = 41, .external_lex_state = 3}, + [655] = {.lex_state = 41, .external_lex_state = 3}, + [656] = {.lex_state = 41, .external_lex_state = 3}, + [657] = {.lex_state = 41, .external_lex_state = 3}, + [658] = {.lex_state = 41, .external_lex_state = 3}, + [659] = {.lex_state = 41, .external_lex_state = 3}, + [660] = {.lex_state = 41, .external_lex_state = 3}, + [661] = {.lex_state = 41, .external_lex_state = 3}, + [662] = {.lex_state = 21, .external_lex_state = 8}, + [663] = {.lex_state = 41, .external_lex_state = 3}, + [664] = {.lex_state = 41, .external_lex_state = 3}, + [665] = {.lex_state = 41, .external_lex_state = 3}, + [666] = {.lex_state = 41, .external_lex_state = 3}, + [667] = {.lex_state = 21, .external_lex_state = 6}, + [668] = {.lex_state = 41, .external_lex_state = 3}, + [669] = {.lex_state = 41, .external_lex_state = 3}, + [670] = {.lex_state = 41, .external_lex_state = 3}, + [671] = {.lex_state = 41, .external_lex_state = 3}, + [672] = {.lex_state = 41, .external_lex_state = 3}, + [673] = {.lex_state = 41, .external_lex_state = 3}, + [674] = {.lex_state = 41, .external_lex_state = 3}, + [675] = {.lex_state = 41, .external_lex_state = 3}, + [676] = {.lex_state = 41, .external_lex_state = 3}, + [677] = {.lex_state = 41, .external_lex_state = 3}, + [678] = {.lex_state = 41, .external_lex_state = 3}, + [679] = {.lex_state = 41, .external_lex_state = 3}, + [680] = {.lex_state = 60, .external_lex_state = 6}, + [681] = {.lex_state = 60, .external_lex_state = 6}, + [682] = {.lex_state = 60, .external_lex_state = 6}, + [683] = {.lex_state = 60, .external_lex_state = 6}, + [684] = {.lex_state = 60, .external_lex_state = 6}, + [685] = {.lex_state = 60, .external_lex_state = 6}, + [686] = {.lex_state = 60, .external_lex_state = 6}, + [687] = {.lex_state = 60, .external_lex_state = 6}, + [688] = {.lex_state = 60, .external_lex_state = 6}, + [689] = {.lex_state = 60, .external_lex_state = 6}, + [690] = {.lex_state = 21, .external_lex_state = 6}, + [691] = {.lex_state = 21, .external_lex_state = 6}, + [692] = {.lex_state = 21, .external_lex_state = 6}, + [693] = {.lex_state = 21, .external_lex_state = 6}, + [694] = {.lex_state = 21, .external_lex_state = 6}, + [695] = {.lex_state = 21, .external_lex_state = 6}, + [696] = {.lex_state = 21, .external_lex_state = 6}, + [697] = {.lex_state = 21, .external_lex_state = 6}, + [698] = {.lex_state = 21, .external_lex_state = 6}, + [699] = {.lex_state = 21, .external_lex_state = 6}, + [700] = {.lex_state = 21, .external_lex_state = 6}, + [701] = {.lex_state = 21, .external_lex_state = 6}, + [702] = {.lex_state = 21, .external_lex_state = 6}, + [703] = {.lex_state = 21, .external_lex_state = 6}, + [704] = {.lex_state = 21, .external_lex_state = 6}, + [705] = {.lex_state = 21, .external_lex_state = 6}, + [706] = {.lex_state = 21, .external_lex_state = 6}, + [707] = {.lex_state = 21, .external_lex_state = 6}, + [708] = {.lex_state = 21, .external_lex_state = 6}, + [709] = {.lex_state = 21, .external_lex_state = 6}, + [710] = {.lex_state = 21, .external_lex_state = 6}, + [711] = {.lex_state = 21, .external_lex_state = 6}, + [712] = {.lex_state = 21, .external_lex_state = 6}, + [713] = {.lex_state = 21, .external_lex_state = 6}, + [714] = {.lex_state = 21, .external_lex_state = 6}, + [715] = {.lex_state = 21, .external_lex_state = 6}, + [716] = {.lex_state = 21, .external_lex_state = 6}, + [717] = {.lex_state = 21, .external_lex_state = 6}, + [718] = {.lex_state = 21, .external_lex_state = 6}, + [719] = {.lex_state = 21, .external_lex_state = 6}, + [720] = {.lex_state = 21, .external_lex_state = 6}, + [721] = {.lex_state = 21, .external_lex_state = 6}, + [722] = {.lex_state = 21, .external_lex_state = 6}, + [723] = {.lex_state = 21, .external_lex_state = 6}, + [724] = {.lex_state = 21, .external_lex_state = 6}, + [725] = {.lex_state = 21, .external_lex_state = 6}, + [726] = {.lex_state = 21, .external_lex_state = 6}, + [727] = {.lex_state = 21, .external_lex_state = 6}, + [728] = {.lex_state = 21, .external_lex_state = 6}, + [729] = {.lex_state = 21, .external_lex_state = 6}, + [730] = {.lex_state = 21, .external_lex_state = 6}, + [731] = {.lex_state = 21, .external_lex_state = 6}, + [732] = {.lex_state = 21, .external_lex_state = 6}, + [733] = {.lex_state = 21, .external_lex_state = 6}, + [734] = {.lex_state = 21, .external_lex_state = 6}, + [735] = {.lex_state = 21, .external_lex_state = 6}, + [736] = {.lex_state = 21, .external_lex_state = 6}, + [737] = {.lex_state = 21, .external_lex_state = 6}, + [738] = {.lex_state = 21, .external_lex_state = 6}, + [739] = {.lex_state = 21, .external_lex_state = 6}, + [740] = {.lex_state = 21, .external_lex_state = 6}, + [741] = {.lex_state = 21, .external_lex_state = 6}, + [742] = {.lex_state = 21, .external_lex_state = 6}, + [743] = {.lex_state = 21, .external_lex_state = 6}, + [744] = {.lex_state = 21, .external_lex_state = 6}, + [745] = {.lex_state = 21, .external_lex_state = 6}, + [746] = {.lex_state = 21, .external_lex_state = 6}, + [747] = {.lex_state = 21, .external_lex_state = 6}, + [748] = {.lex_state = 21, .external_lex_state = 6}, + [749] = {.lex_state = 21, .external_lex_state = 6}, + [750] = {.lex_state = 21, .external_lex_state = 6}, + [751] = {.lex_state = 21, .external_lex_state = 6}, + [752] = {.lex_state = 21, .external_lex_state = 6}, + [753] = {.lex_state = 21, .external_lex_state = 6}, + [754] = {.lex_state = 21, .external_lex_state = 6}, + [755] = {.lex_state = 21, .external_lex_state = 6}, + [756] = {.lex_state = 21, .external_lex_state = 6}, + [757] = {.lex_state = 21, .external_lex_state = 6}, + [758] = {.lex_state = 21, .external_lex_state = 6}, + [759] = {.lex_state = 21, .external_lex_state = 6}, + [760] = {.lex_state = 21, .external_lex_state = 6}, + [761] = {.lex_state = 21, .external_lex_state = 6}, + [762] = {.lex_state = 21, .external_lex_state = 6}, + [763] = {.lex_state = 21, .external_lex_state = 6}, + [764] = {.lex_state = 21, .external_lex_state = 6}, + [765] = {.lex_state = 21, .external_lex_state = 6}, + [766] = {.lex_state = 21, .external_lex_state = 6}, + [767] = {.lex_state = 21, .external_lex_state = 6}, + [768] = {.lex_state = 21, .external_lex_state = 6}, + [769] = {.lex_state = 21, .external_lex_state = 6}, + [770] = {.lex_state = 21, .external_lex_state = 6}, + [771] = {.lex_state = 21, .external_lex_state = 6}, + [772] = {.lex_state = 21, .external_lex_state = 6}, + [773] = {.lex_state = 21, .external_lex_state = 6}, + [774] = {.lex_state = 21, .external_lex_state = 6}, + [775] = {.lex_state = 21, .external_lex_state = 6}, + [776] = {.lex_state = 21, .external_lex_state = 6}, + [777] = {.lex_state = 21, .external_lex_state = 6}, + [778] = {.lex_state = 21, .external_lex_state = 6}, + [779] = {.lex_state = 21, .external_lex_state = 6}, + [780] = {.lex_state = 21, .external_lex_state = 6}, + [781] = {.lex_state = 21, .external_lex_state = 6}, + [782] = {.lex_state = 21, .external_lex_state = 6}, + [783] = {.lex_state = 21, .external_lex_state = 6}, + [784] = {.lex_state = 21, .external_lex_state = 6}, + [785] = {.lex_state = 21, .external_lex_state = 6}, + [786] = {.lex_state = 21, .external_lex_state = 6}, + [787] = {.lex_state = 21, .external_lex_state = 6}, + [788] = {.lex_state = 21, .external_lex_state = 6}, + [789] = {.lex_state = 21, .external_lex_state = 6}, + [790] = {.lex_state = 21, .external_lex_state = 6}, + [791] = {.lex_state = 21, .external_lex_state = 6}, + [792] = {.lex_state = 21, .external_lex_state = 6}, + [793] = {.lex_state = 21, .external_lex_state = 6}, + [794] = {.lex_state = 21, .external_lex_state = 6}, + [795] = {.lex_state = 21, .external_lex_state = 6}, + [796] = {.lex_state = 21, .external_lex_state = 6}, + [797] = {.lex_state = 21, .external_lex_state = 6}, + [798] = {.lex_state = 21, .external_lex_state = 6}, + [799] = {.lex_state = 21, .external_lex_state = 6}, + [800] = {.lex_state = 21, .external_lex_state = 6}, + [801] = {.lex_state = 21, .external_lex_state = 6}, + [802] = {.lex_state = 21, .external_lex_state = 6}, + [803] = {.lex_state = 21, .external_lex_state = 6}, + [804] = {.lex_state = 21, .external_lex_state = 6}, + [805] = {.lex_state = 21, .external_lex_state = 6}, + [806] = {.lex_state = 21, .external_lex_state = 6}, + [807] = {.lex_state = 21, .external_lex_state = 6}, + [808] = {.lex_state = 21, .external_lex_state = 6}, + [809] = {.lex_state = 21, .external_lex_state = 6}, + [810] = {.lex_state = 21, .external_lex_state = 6}, + [811] = {.lex_state = 21, .external_lex_state = 6}, + [812] = {.lex_state = 21, .external_lex_state = 6}, + [813] = {.lex_state = 21, .external_lex_state = 6}, + [814] = {.lex_state = 21, .external_lex_state = 6}, + [815] = {.lex_state = 21, .external_lex_state = 6}, + [816] = {.lex_state = 21, .external_lex_state = 6}, + [817] = {.lex_state = 21, .external_lex_state = 6}, + [818] = {.lex_state = 21, .external_lex_state = 6}, + [819] = {.lex_state = 21, .external_lex_state = 6}, + [820] = {.lex_state = 21, .external_lex_state = 6}, + [821] = {.lex_state = 21, .external_lex_state = 6}, + [822] = {.lex_state = 21, .external_lex_state = 6}, + [823] = {.lex_state = 21, .external_lex_state = 6}, + [824] = {.lex_state = 21, .external_lex_state = 6}, + [825] = {.lex_state = 21, .external_lex_state = 6}, + [826] = {.lex_state = 21, .external_lex_state = 6}, + [827] = {.lex_state = 21, .external_lex_state = 6}, + [828] = {.lex_state = 21, .external_lex_state = 6}, + [829] = {.lex_state = 21, .external_lex_state = 6}, + [830] = {.lex_state = 21, .external_lex_state = 6}, + [831] = {.lex_state = 21, .external_lex_state = 6}, + [832] = {.lex_state = 21, .external_lex_state = 6}, + [833] = {.lex_state = 24, .external_lex_state = 5}, + [834] = {.lex_state = 24, .external_lex_state = 5}, + [835] = {.lex_state = 24, .external_lex_state = 5}, + [836] = {.lex_state = 24, .external_lex_state = 10}, + [837] = {.lex_state = 24, .external_lex_state = 11}, + [838] = {.lex_state = 33, .external_lex_state = 7}, + [839] = {.lex_state = 33, .external_lex_state = 11}, + [840] = {.lex_state = 33, .external_lex_state = 7}, + [841] = {.lex_state = 24, .external_lex_state = 7}, + [842] = {.lex_state = 33, .external_lex_state = 7}, + [843] = {.lex_state = 24, .external_lex_state = 7}, + [844] = {.lex_state = 24, .external_lex_state = 7}, + [845] = {.lex_state = 24, .external_lex_state = 11}, + [846] = {.lex_state = 33, .external_lex_state = 8}, + [847] = {.lex_state = 24, .external_lex_state = 8}, + [848] = {.lex_state = 33, .external_lex_state = 11}, + [849] = {.lex_state = 24, .external_lex_state = 11}, + [850] = {.lex_state = 24, .external_lex_state = 11}, + [851] = {.lex_state = 24, .external_lex_state = 11}, + [852] = {.lex_state = 33, .external_lex_state = 11}, + [853] = {.lex_state = 24, .external_lex_state = 6}, + [854] = {.lex_state = 24, .external_lex_state = 11}, + [855] = {.lex_state = 24, .external_lex_state = 11}, + [856] = {.lex_state = 24, .external_lex_state = 11}, + [857] = {.lex_state = 24, .external_lex_state = 11}, + [858] = {.lex_state = 24, .external_lex_state = 6}, + [859] = {.lex_state = 33, .external_lex_state = 9}, + [860] = {.lex_state = 33, .external_lex_state = 12}, + [861] = {.lex_state = 24, .external_lex_state = 10}, + [862] = {.lex_state = 24, .external_lex_state = 10}, + [863] = {.lex_state = 24, .external_lex_state = 10}, + [864] = {.lex_state = 24, .external_lex_state = 10}, + [865] = {.lex_state = 24, .external_lex_state = 10}, + [866] = {.lex_state = 24, .external_lex_state = 10}, + [867] = {.lex_state = 24, .external_lex_state = 10}, + [868] = {.lex_state = 24, .external_lex_state = 10}, + [869] = {.lex_state = 33, .external_lex_state = 11}, + [870] = {.lex_state = 24, .external_lex_state = 10}, + [871] = {.lex_state = 24, .external_lex_state = 11}, + [872] = {.lex_state = 33, .external_lex_state = 11}, + [873] = {.lex_state = 24, .external_lex_state = 11}, + [874] = {.lex_state = 33, .external_lex_state = 11}, + [875] = {.lex_state = 24, .external_lex_state = 5}, + [876] = {.lex_state = 24, .external_lex_state = 13}, + [877] = {.lex_state = 33, .external_lex_state = 8}, + [878] = {.lex_state = 33, .external_lex_state = 11}, + [879] = {.lex_state = 33, .external_lex_state = 11}, + [880] = {.lex_state = 33, .external_lex_state = 11}, + [881] = {.lex_state = 33, .external_lex_state = 11}, + [882] = {.lex_state = 24, .external_lex_state = 10}, + [883] = {.lex_state = 33, .external_lex_state = 11}, + [884] = {.lex_state = 33, .external_lex_state = 9}, + [885] = {.lex_state = 24, .external_lex_state = 6}, + [886] = {.lex_state = 23, .external_lex_state = 10}, + [887] = {.lex_state = 23, .external_lex_state = 10}, + [888] = {.lex_state = 24, .external_lex_state = 11}, + [889] = {.lex_state = 24, .external_lex_state = 8}, + [890] = {.lex_state = 24, .external_lex_state = 10}, + [891] = {.lex_state = 24, .external_lex_state = 11}, + [892] = {.lex_state = 23, .external_lex_state = 10}, + [893] = {.lex_state = 33, .external_lex_state = 13}, + [894] = {.lex_state = 33, .external_lex_state = 8}, + [895] = {.lex_state = 24, .external_lex_state = 10}, + [896] = {.lex_state = 33, .external_lex_state = 11}, + [897] = {.lex_state = 24, .external_lex_state = 5}, + [898] = {.lex_state = 33, .external_lex_state = 11}, + [899] = {.lex_state = 24, .external_lex_state = 10}, + [900] = {.lex_state = 24, .external_lex_state = 8}, + [901] = {.lex_state = 24, .external_lex_state = 10}, + [902] = {.lex_state = 33, .external_lex_state = 9}, + [903] = {.lex_state = 32, .external_lex_state = 11}, + [904] = {.lex_state = 24, .external_lex_state = 10}, + [905] = {.lex_state = 33, .external_lex_state = 12}, + [906] = {.lex_state = 23, .external_lex_state = 13}, + [907] = {.lex_state = 192, .external_lex_state = 2}, + [908] = {.lex_state = 33, .external_lex_state = 12}, + [909] = {.lex_state = 24, .external_lex_state = 13}, + [910] = {.lex_state = 33, .external_lex_state = 12}, + [911] = {.lex_state = 33, .external_lex_state = 12}, + [912] = {.lex_state = 33, .external_lex_state = 12}, + [913] = {.lex_state = 33, .external_lex_state = 12}, + [914] = {.lex_state = 33, .external_lex_state = 12}, + [915] = {.lex_state = 24, .external_lex_state = 13}, + [916] = {.lex_state = 33, .external_lex_state = 13}, + [917] = {.lex_state = 33, .external_lex_state = 12}, + [918] = {.lex_state = 33, .external_lex_state = 13}, + [919] = {.lex_state = 33, .external_lex_state = 12}, + [920] = {.lex_state = 24, .external_lex_state = 10}, + [921] = {.lex_state = 24, .external_lex_state = 10}, + [922] = {.lex_state = 24, .external_lex_state = 10}, + [923] = {.lex_state = 24, .external_lex_state = 10}, + [924] = {.lex_state = 24, .external_lex_state = 10}, + [925] = {.lex_state = 24, .external_lex_state = 10}, + [926] = {.lex_state = 24, .external_lex_state = 10}, + [927] = {.lex_state = 24, .external_lex_state = 13}, + [928] = {.lex_state = 24, .external_lex_state = 13}, + [929] = {.lex_state = 24, .external_lex_state = 9}, + [930] = {.lex_state = 192, .external_lex_state = 2}, + [931] = {.lex_state = 24, .external_lex_state = 10}, + [932] = {.lex_state = 24, .external_lex_state = 10}, + [933] = {.lex_state = 24, .external_lex_state = 10}, + [934] = {.lex_state = 24, .external_lex_state = 10}, + [935] = {.lex_state = 24, .external_lex_state = 10}, + [936] = {.lex_state = 24, .external_lex_state = 10}, + [937] = {.lex_state = 24, .external_lex_state = 13}, + [938] = {.lex_state = 23, .external_lex_state = 10}, + [939] = {.lex_state = 24, .external_lex_state = 2}, + [940] = {.lex_state = 23, .external_lex_state = 11}, + [941] = {.lex_state = 24, .external_lex_state = 9}, + [942] = {.lex_state = 24, .external_lex_state = 10}, + [943] = {.lex_state = 23, .external_lex_state = 11}, + [944] = {.lex_state = 23, .external_lex_state = 11}, + [945] = {.lex_state = 33, .external_lex_state = 13}, + [946] = {.lex_state = 33, .external_lex_state = 13}, + [947] = {.lex_state = 24, .external_lex_state = 12}, + [948] = {.lex_state = 33, .external_lex_state = 13}, + [949] = {.lex_state = 33, .external_lex_state = 13}, + [950] = {.lex_state = 33, .external_lex_state = 12}, + [951] = {.lex_state = 33, .external_lex_state = 12}, + [952] = {.lex_state = 24, .external_lex_state = 9}, + [953] = {.lex_state = 33, .external_lex_state = 13}, + [954] = {.lex_state = 24, .external_lex_state = 10}, + [955] = {.lex_state = 24, .external_lex_state = 10}, + [956] = {.lex_state = 33, .external_lex_state = 13}, + [957] = {.lex_state = 33, .external_lex_state = 13}, + [958] = {.lex_state = 33, .external_lex_state = 13}, + [959] = {.lex_state = 24, .external_lex_state = 10}, + [960] = {.lex_state = 24, .external_lex_state = 10}, + [961] = {.lex_state = 24, .external_lex_state = 10}, + [962] = {.lex_state = 24, .external_lex_state = 10}, + [963] = {.lex_state = 24, .external_lex_state = 10}, + [964] = {.lex_state = 24, .external_lex_state = 10}, + [965] = {.lex_state = 32, .external_lex_state = 11}, + [966] = {.lex_state = 24, .external_lex_state = 10}, + [967] = {.lex_state = 32, .external_lex_state = 11}, + [968] = {.lex_state = 24, .external_lex_state = 7}, + [969] = {.lex_state = 24, .external_lex_state = 10}, + [970] = {.lex_state = 24, .external_lex_state = 10}, + [971] = {.lex_state = 32, .external_lex_state = 11}, + [972] = {.lex_state = 32, .external_lex_state = 11}, + [973] = {.lex_state = 32, .external_lex_state = 11}, + [974] = {.lex_state = 33, .external_lex_state = 7}, + [975] = {.lex_state = 33, .external_lex_state = 12}, + [976] = {.lex_state = 24, .external_lex_state = 10}, + [977] = {.lex_state = 33, .external_lex_state = 7}, + [978] = {.lex_state = 33, .external_lex_state = 13}, + [979] = {.lex_state = 33, .external_lex_state = 13}, + [980] = {.lex_state = 32, .external_lex_state = 13}, + [981] = {.lex_state = 32, .external_lex_state = 13}, + [982] = {.lex_state = 32, .external_lex_state = 13}, + [983] = {.lex_state = 24, .external_lex_state = 10}, + [984] = {.lex_state = 24, .external_lex_state = 10}, + [985] = {.lex_state = 23, .external_lex_state = 11}, + [986] = {.lex_state = 23, .external_lex_state = 11}, + [987] = {.lex_state = 24, .external_lex_state = 10}, + [988] = {.lex_state = 23, .external_lex_state = 11}, + [989] = {.lex_state = 24, .external_lex_state = 10}, + [990] = {.lex_state = 24, .external_lex_state = 10}, + [991] = {.lex_state = 24, .external_lex_state = 10}, + [992] = {.lex_state = 24, .external_lex_state = 10}, + [993] = {.lex_state = 24, .external_lex_state = 10}, + [994] = {.lex_state = 24, .external_lex_state = 10}, + [995] = {.lex_state = 24, .external_lex_state = 10}, + [996] = {.lex_state = 24, .external_lex_state = 10}, + [997] = {.lex_state = 24, .external_lex_state = 13}, + [998] = {.lex_state = 24, .external_lex_state = 7}, + [999] = {.lex_state = 24, .external_lex_state = 13}, + [1000] = {.lex_state = 24, .external_lex_state = 13}, + [1001] = {.lex_state = 24, .external_lex_state = 10}, + [1002] = {.lex_state = 24, .external_lex_state = 10}, + [1003] = {.lex_state = 24, .external_lex_state = 13}, + [1004] = {.lex_state = 24, .external_lex_state = 10}, + [1005] = {.lex_state = 24, .external_lex_state = 10}, + [1006] = {.lex_state = 24, .external_lex_state = 10}, + [1007] = {.lex_state = 24, .external_lex_state = 10}, + [1008] = {.lex_state = 24, .external_lex_state = 10}, + [1009] = {.lex_state = 24, .external_lex_state = 13}, + [1010] = {.lex_state = 24, .external_lex_state = 13}, + [1011] = {.lex_state = 24, .external_lex_state = 10}, + [1012] = {.lex_state = 24, .external_lex_state = 10}, + [1013] = {.lex_state = 24, .external_lex_state = 13}, + [1014] = {.lex_state = 24, .external_lex_state = 10}, + [1015] = {.lex_state = 24, .external_lex_state = 11}, + [1016] = {.lex_state = 24, .external_lex_state = 11}, + [1017] = {.lex_state = 33, .external_lex_state = 11}, + [1018] = {.lex_state = 33, .external_lex_state = 9}, + [1019] = {.lex_state = 33, .external_lex_state = 11}, + [1020] = {.lex_state = 33, .external_lex_state = 11}, + [1021] = {.lex_state = 33, .external_lex_state = 11}, + [1022] = {.lex_state = 33, .external_lex_state = 11}, + [1023] = {.lex_state = 33, .external_lex_state = 11}, + [1024] = {.lex_state = 32, .external_lex_state = 12}, + [1025] = {.lex_state = 32, .external_lex_state = 12}, + [1026] = {.lex_state = 33, .external_lex_state = 11}, + [1027] = {.lex_state = 33, .external_lex_state = 11}, + [1028] = {.lex_state = 33, .external_lex_state = 11}, + [1029] = {.lex_state = 32, .external_lex_state = 12}, + [1030] = {.lex_state = 32, .external_lex_state = 12}, + [1031] = {.lex_state = 33, .external_lex_state = 11}, + [1032] = {.lex_state = 32, .external_lex_state = 12}, + [1033] = {.lex_state = 33, .external_lex_state = 13}, + [1034] = {.lex_state = 24, .external_lex_state = 11}, + [1035] = {.lex_state = 24, .external_lex_state = 11}, + [1036] = {.lex_state = 33, .external_lex_state = 11}, + [1037] = {.lex_state = 33, .external_lex_state = 11}, + [1038] = {.lex_state = 24, .external_lex_state = 8}, + [1039] = {.lex_state = 33, .external_lex_state = 11}, + [1040] = {.lex_state = 32, .external_lex_state = 12}, + [1041] = {.lex_state = 24, .external_lex_state = 6}, + [1042] = {.lex_state = 24, .external_lex_state = 11}, + [1043] = {.lex_state = 24, .external_lex_state = 11}, + [1044] = {.lex_state = 32, .external_lex_state = 13}, + [1045] = {.lex_state = 33, .external_lex_state = 11}, + [1046] = {.lex_state = 33, .external_lex_state = 11}, + [1047] = {.lex_state = 33, .external_lex_state = 11}, + [1048] = {.lex_state = 32, .external_lex_state = 13}, + [1049] = {.lex_state = 32, .external_lex_state = 13}, + [1050] = {.lex_state = 33, .external_lex_state = 11}, + [1051] = {.lex_state = 33, .external_lex_state = 11}, + [1052] = {.lex_state = 33, .external_lex_state = 11}, + [1053] = {.lex_state = 33, .external_lex_state = 11}, + [1054] = {.lex_state = 24, .external_lex_state = 11}, + [1055] = {.lex_state = 23, .external_lex_state = 12}, + [1056] = {.lex_state = 24, .external_lex_state = 11}, + [1057] = {.lex_state = 33, .external_lex_state = 8}, + [1058] = {.lex_state = 24, .external_lex_state = 11}, + [1059] = {.lex_state = 24, .external_lex_state = 11}, + [1060] = {.lex_state = 24, .external_lex_state = 11}, + [1061] = {.lex_state = 24, .external_lex_state = 6}, + [1062] = {.lex_state = 24, .external_lex_state = 11}, + [1063] = {.lex_state = 33, .external_lex_state = 11}, + [1064] = {.lex_state = 33, .external_lex_state = 11}, + [1065] = {.lex_state = 33, .external_lex_state = 11}, + [1066] = {.lex_state = 24, .external_lex_state = 11}, + [1067] = {.lex_state = 33, .external_lex_state = 11}, + [1068] = {.lex_state = 33, .external_lex_state = 11}, + [1069] = {.lex_state = 33, .external_lex_state = 11}, + [1070] = {.lex_state = 24, .external_lex_state = 11}, + [1071] = {.lex_state = 33, .external_lex_state = 11}, + [1072] = {.lex_state = 24, .external_lex_state = 11}, + [1073] = {.lex_state = 33, .external_lex_state = 11}, + [1074] = {.lex_state = 24, .external_lex_state = 11}, + [1075] = {.lex_state = 24, .external_lex_state = 12}, + [1076] = {.lex_state = 32, .external_lex_state = 13}, + [1077] = {.lex_state = 32, .external_lex_state = 13}, + [1078] = {.lex_state = 32, .external_lex_state = 13}, + [1079] = {.lex_state = 33, .external_lex_state = 11}, + [1080] = {.lex_state = 23, .external_lex_state = 2}, + [1081] = {.lex_state = 24, .external_lex_state = 11}, + [1082] = {.lex_state = 33, .external_lex_state = 11}, + [1083] = {.lex_state = 24, .external_lex_state = 11}, + [1084] = {.lex_state = 33, .external_lex_state = 11}, + [1085] = {.lex_state = 24, .external_lex_state = 11}, + [1086] = {.lex_state = 33, .external_lex_state = 11}, + [1087] = {.lex_state = 33, .external_lex_state = 11}, + [1088] = {.lex_state = 24, .external_lex_state = 12}, + [1089] = {.lex_state = 33, .external_lex_state = 11}, + [1090] = {.lex_state = 24, .external_lex_state = 11}, + [1091] = {.lex_state = 32, .external_lex_state = 12}, + [1092] = {.lex_state = 24, .external_lex_state = 11}, + [1093] = {.lex_state = 32, .external_lex_state = 12}, + [1094] = {.lex_state = 32, .external_lex_state = 12}, + [1095] = {.lex_state = 24, .external_lex_state = 11}, + [1096] = {.lex_state = 24, .external_lex_state = 11}, + [1097] = {.lex_state = 24, .external_lex_state = 11}, + [1098] = {.lex_state = 33, .external_lex_state = 8}, + [1099] = {.lex_state = 24, .external_lex_state = 11}, + [1100] = {.lex_state = 24, .external_lex_state = 11}, + [1101] = {.lex_state = 24, .external_lex_state = 11}, + [1102] = {.lex_state = 24, .external_lex_state = 12}, + [1103] = {.lex_state = 33, .external_lex_state = 11}, + [1104] = {.lex_state = 24, .external_lex_state = 12}, + [1105] = {.lex_state = 33, .external_lex_state = 11}, + [1106] = {.lex_state = 24, .external_lex_state = 11}, + [1107] = {.lex_state = 24, .external_lex_state = 2}, + [1108] = {.lex_state = 24, .external_lex_state = 2}, + [1109] = {.lex_state = 24, .external_lex_state = 2}, + [1110] = {.lex_state = 24, .external_lex_state = 8}, + [1111] = {.lex_state = 33, .external_lex_state = 11}, + [1112] = {.lex_state = 24, .external_lex_state = 11}, + [1113] = {.lex_state = 33, .external_lex_state = 9}, + [1114] = {.lex_state = 32, .external_lex_state = 13}, + [1115] = {.lex_state = 24, .external_lex_state = 11}, + [1116] = {.lex_state = 24, .external_lex_state = 11}, + [1117] = {.lex_state = 24, .external_lex_state = 11}, + [1118] = {.lex_state = 32, .external_lex_state = 13}, + [1119] = {.lex_state = 32, .external_lex_state = 13}, + [1120] = {.lex_state = 24, .external_lex_state = 2}, + [1121] = {.lex_state = 33, .external_lex_state = 13}, + [1122] = {.lex_state = 33, .external_lex_state = 13}, + [1123] = {.lex_state = 24, .external_lex_state = 2}, + [1124] = {.lex_state = 33, .external_lex_state = 13}, + [1125] = {.lex_state = 23, .external_lex_state = 13}, + [1126] = {.lex_state = 24, .external_lex_state = 2}, + [1127] = {.lex_state = 24, .external_lex_state = 2}, + [1128] = {.lex_state = 23, .external_lex_state = 13}, + [1129] = {.lex_state = 23, .external_lex_state = 13}, + [1130] = {.lex_state = 24, .external_lex_state = 13}, + [1131] = {.lex_state = 24, .external_lex_state = 12}, + [1132] = {.lex_state = 24, .external_lex_state = 12}, + [1133] = {.lex_state = 24, .external_lex_state = 11}, + [1134] = {.lex_state = 24, .external_lex_state = 11}, + [1135] = {.lex_state = 33, .external_lex_state = 13}, + [1136] = {.lex_state = 24, .external_lex_state = 11}, + [1137] = {.lex_state = 24, .external_lex_state = 12}, + [1138] = {.lex_state = 33, .external_lex_state = 13}, + [1139] = {.lex_state = 33, .external_lex_state = 13}, + [1140] = {.lex_state = 24, .external_lex_state = 2}, + [1141] = {.lex_state = 24, .external_lex_state = 12}, + [1142] = {.lex_state = 24, .external_lex_state = 2}, + [1143] = {.lex_state = 24, .external_lex_state = 2}, + [1144] = {.lex_state = 24, .external_lex_state = 2}, + [1145] = {.lex_state = 24, .external_lex_state = 2}, + [1146] = {.lex_state = 24, .external_lex_state = 12}, + [1147] = {.lex_state = 24, .external_lex_state = 12}, + [1148] = {.lex_state = 24, .external_lex_state = 12}, + [1149] = {.lex_state = 24, .external_lex_state = 12}, + [1150] = {.lex_state = 24, .external_lex_state = 12}, + [1151] = {.lex_state = 23, .external_lex_state = 2}, + [1152] = {.lex_state = 24, .external_lex_state = 11}, + [1153] = {.lex_state = 24, .external_lex_state = 11}, + [1154] = {.lex_state = 24, .external_lex_state = 11}, + [1155] = {.lex_state = 24, .external_lex_state = 11}, + [1156] = {.lex_state = 24, .external_lex_state = 11}, + [1157] = {.lex_state = 24, .external_lex_state = 11}, + [1158] = {.lex_state = 23, .external_lex_state = 2}, + [1159] = {.lex_state = 23, .external_lex_state = 2}, + [1160] = {.lex_state = 24, .external_lex_state = 2}, + [1161] = {.lex_state = 24, .external_lex_state = 13}, + [1162] = {.lex_state = 33, .external_lex_state = 12}, + [1163] = {.lex_state = 33, .external_lex_state = 13}, + [1164] = {.lex_state = 33, .external_lex_state = 13}, + [1165] = {.lex_state = 33, .external_lex_state = 12}, + [1166] = {.lex_state = 33, .external_lex_state = 12}, + [1167] = {.lex_state = 33, .external_lex_state = 13}, + [1168] = {.lex_state = 33, .external_lex_state = 12}, + [1169] = {.lex_state = 33, .external_lex_state = 13}, + [1170] = {.lex_state = 24, .external_lex_state = 10}, + [1171] = {.lex_state = 33, .external_lex_state = 13}, + [1172] = {.lex_state = 33, .external_lex_state = 13}, + [1173] = {.lex_state = 33, .external_lex_state = 12}, + [1174] = {.lex_state = 33, .external_lex_state = 12}, + [1175] = {.lex_state = 33, .external_lex_state = 12}, + [1176] = {.lex_state = 33, .external_lex_state = 13}, + [1177] = {.lex_state = 24, .external_lex_state = 9}, + [1178] = {.lex_state = 24, .external_lex_state = 13}, + [1179] = {.lex_state = 33, .external_lex_state = 12}, + [1180] = {.lex_state = 33, .external_lex_state = 12}, + [1181] = {.lex_state = 24, .external_lex_state = 13}, + [1182] = {.lex_state = 24, .external_lex_state = 9}, + [1183] = {.lex_state = 24, .external_lex_state = 2}, + [1184] = {.lex_state = 33, .external_lex_state = 13}, + [1185] = {.lex_state = 24, .external_lex_state = 2}, + [1186] = {.lex_state = 24, .external_lex_state = 2}, + [1187] = {.lex_state = 24, .external_lex_state = 2}, + [1188] = {.lex_state = 24, .external_lex_state = 2}, + [1189] = {.lex_state = 33, .external_lex_state = 12}, + [1190] = {.lex_state = 33, .external_lex_state = 13}, + [1191] = {.lex_state = 33, .external_lex_state = 13}, + [1192] = {.lex_state = 33, .external_lex_state = 13}, + [1193] = {.lex_state = 24, .external_lex_state = 2}, + [1194] = {.lex_state = 24, .external_lex_state = 2}, + [1195] = {.lex_state = 33, .external_lex_state = 13}, + [1196] = {.lex_state = 24, .external_lex_state = 13}, + [1197] = {.lex_state = 24, .external_lex_state = 2}, + [1198] = {.lex_state = 24, .external_lex_state = 13}, + [1199] = {.lex_state = 24, .external_lex_state = 2}, + [1200] = {.lex_state = 33, .external_lex_state = 13}, + [1201] = {.lex_state = 24, .external_lex_state = 2}, + [1202] = {.lex_state = 33, .external_lex_state = 13}, + [1203] = {.lex_state = 33, .external_lex_state = 13}, + [1204] = {.lex_state = 24, .external_lex_state = 2}, + [1205] = {.lex_state = 24, .external_lex_state = 13}, + [1206] = {.lex_state = 24, .external_lex_state = 13}, + [1207] = {.lex_state = 24, .external_lex_state = 13}, + [1208] = {.lex_state = 24, .external_lex_state = 13}, + [1209] = {.lex_state = 24, .external_lex_state = 13}, + [1210] = {.lex_state = 24, .external_lex_state = 13}, + [1211] = {.lex_state = 33, .external_lex_state = 13}, + [1212] = {.lex_state = 33, .external_lex_state = 13}, + [1213] = {.lex_state = 33, .external_lex_state = 12}, + [1214] = {.lex_state = 24, .external_lex_state = 2}, + [1215] = {.lex_state = 24, .external_lex_state = 13}, + [1216] = {.lex_state = 24, .external_lex_state = 13}, + [1217] = {.lex_state = 24, .external_lex_state = 2}, + [1218] = {.lex_state = 33, .external_lex_state = 13}, + [1219] = {.lex_state = 24, .external_lex_state = 2}, + [1220] = {.lex_state = 24, .external_lex_state = 2}, + [1221] = {.lex_state = 24, .external_lex_state = 13}, + [1222] = {.lex_state = 24, .external_lex_state = 13}, + [1223] = {.lex_state = 24, .external_lex_state = 13}, + [1224] = {.lex_state = 24, .external_lex_state = 13}, + [1225] = {.lex_state = 33, .external_lex_state = 13}, + [1226] = {.lex_state = 24, .external_lex_state = 2}, + [1227] = {.lex_state = 33, .external_lex_state = 13}, + [1228] = {.lex_state = 33, .external_lex_state = 13}, + [1229] = {.lex_state = 33, .external_lex_state = 13}, + [1230] = {.lex_state = 24, .external_lex_state = 2}, + [1231] = {.lex_state = 24, .external_lex_state = 13}, + [1232] = {.lex_state = 33, .external_lex_state = 12}, + [1233] = {.lex_state = 23, .external_lex_state = 13}, + [1234] = {.lex_state = 24, .external_lex_state = 2}, + [1235] = {.lex_state = 24, .external_lex_state = 13}, + [1236] = {.lex_state = 23, .external_lex_state = 13}, + [1237] = {.lex_state = 24, .external_lex_state = 2}, + [1238] = {.lex_state = 24, .external_lex_state = 2}, + [1239] = {.lex_state = 33, .external_lex_state = 13}, + [1240] = {.lex_state = 33, .external_lex_state = 12}, + [1241] = {.lex_state = 33, .external_lex_state = 12}, + [1242] = {.lex_state = 33, .external_lex_state = 13}, + [1243] = {.lex_state = 33, .external_lex_state = 13}, + [1244] = {.lex_state = 33, .external_lex_state = 12}, + [1245] = {.lex_state = 24, .external_lex_state = 13}, + [1246] = {.lex_state = 24, .external_lex_state = 13}, + [1247] = {.lex_state = 33, .external_lex_state = 12}, + [1248] = {.lex_state = 33, .external_lex_state = 12}, + [1249] = {.lex_state = 24, .external_lex_state = 2}, + [1250] = {.lex_state = 22, .external_lex_state = 10}, + [1251] = {.lex_state = 24, .external_lex_state = 13}, + [1252] = {.lex_state = 24, .external_lex_state = 13}, + [1253] = {.lex_state = 24, .external_lex_state = 13}, + [1254] = {.lex_state = 22, .external_lex_state = 10}, + [1255] = {.lex_state = 24, .external_lex_state = 13}, + [1256] = {.lex_state = 33, .external_lex_state = 12}, + [1257] = {.lex_state = 24, .external_lex_state = 2}, + [1258] = {.lex_state = 23, .external_lex_state = 13}, + [1259] = {.lex_state = 33, .external_lex_state = 12}, + [1260] = {.lex_state = 24, .external_lex_state = 13}, + [1261] = {.lex_state = 24, .external_lex_state = 2}, + [1262] = {.lex_state = 24, .external_lex_state = 2}, + [1263] = {.lex_state = 24, .external_lex_state = 2}, + [1264] = {.lex_state = 24, .external_lex_state = 13}, + [1265] = {.lex_state = 24, .external_lex_state = 2}, + [1266] = {.lex_state = 33, .external_lex_state = 12}, + [1267] = {.lex_state = 24, .external_lex_state = 2}, + [1268] = {.lex_state = 33, .external_lex_state = 12}, + [1269] = {.lex_state = 24, .external_lex_state = 2}, + [1270] = {.lex_state = 33, .external_lex_state = 12}, + [1271] = {.lex_state = 33, .external_lex_state = 12}, + [1272] = {.lex_state = 24, .external_lex_state = 13}, + [1273] = {.lex_state = 33, .external_lex_state = 12}, + [1274] = {.lex_state = 24, .external_lex_state = 2}, + [1275] = {.lex_state = 23, .external_lex_state = 12}, + [1276] = {.lex_state = 23, .external_lex_state = 12}, + [1277] = {.lex_state = 24, .external_lex_state = 2}, + [1278] = {.lex_state = 24, .external_lex_state = 2}, + [1279] = {.lex_state = 24, .external_lex_state = 13}, + [1280] = {.lex_state = 24, .external_lex_state = 2}, + [1281] = {.lex_state = 23, .external_lex_state = 12}, + [1282] = {.lex_state = 33, .external_lex_state = 12}, + [1283] = {.lex_state = 33, .external_lex_state = 12}, + [1284] = {.lex_state = 33, .external_lex_state = 12}, + [1285] = {.lex_state = 33, .external_lex_state = 13}, + [1286] = {.lex_state = 24, .external_lex_state = 2}, + [1287] = {.lex_state = 33, .external_lex_state = 12}, + [1288] = {.lex_state = 33, .external_lex_state = 12}, + [1289] = {.lex_state = 33, .external_lex_state = 12}, + [1290] = {.lex_state = 33, .external_lex_state = 12}, + [1291] = {.lex_state = 24, .external_lex_state = 2}, + [1292] = {.lex_state = 24, .external_lex_state = 13}, + [1293] = {.lex_state = 33, .external_lex_state = 13}, + [1294] = {.lex_state = 33, .external_lex_state = 12}, + [1295] = {.lex_state = 33, .external_lex_state = 13}, + [1296] = {.lex_state = 33, .external_lex_state = 12}, + [1297] = {.lex_state = 33, .external_lex_state = 12}, + [1298] = {.lex_state = 33, .external_lex_state = 13}, + [1299] = {.lex_state = 33, .external_lex_state = 13}, + [1300] = {.lex_state = 33, .external_lex_state = 12}, + [1301] = {.lex_state = 33, .external_lex_state = 12}, + [1302] = {.lex_state = 33, .external_lex_state = 12}, + [1303] = {.lex_state = 22, .external_lex_state = 10}, + [1304] = {.lex_state = 22, .external_lex_state = 10}, + [1305] = {.lex_state = 24, .external_lex_state = 13}, + [1306] = {.lex_state = 33, .external_lex_state = 12}, + [1307] = {.lex_state = 24, .external_lex_state = 13}, + [1308] = {.lex_state = 24, .external_lex_state = 13}, + [1309] = {.lex_state = 33, .external_lex_state = 13}, + [1310] = {.lex_state = 24, .external_lex_state = 13}, + [1311] = {.lex_state = 24, .external_lex_state = 13}, + [1312] = {.lex_state = 33, .external_lex_state = 12}, + [1313] = {.lex_state = 33, .external_lex_state = 12}, + [1314] = {.lex_state = 33, .external_lex_state = 12}, + [1315] = {.lex_state = 24, .external_lex_state = 2}, + [1316] = {.lex_state = 33, .external_lex_state = 13}, + [1317] = {.lex_state = 24, .external_lex_state = 13}, + [1318] = {.lex_state = 22, .external_lex_state = 10}, + [1319] = {.lex_state = 22, .external_lex_state = 10}, + [1320] = {.lex_state = 33, .external_lex_state = 13}, + [1321] = {.lex_state = 24, .external_lex_state = 2}, + [1322] = {.lex_state = 33, .external_lex_state = 13}, + [1323] = {.lex_state = 24, .external_lex_state = 13}, + [1324] = {.lex_state = 23, .external_lex_state = 11}, + [1325] = {.lex_state = 24, .external_lex_state = 2}, + [1326] = {.lex_state = 24, .external_lex_state = 2}, + [1327] = {.lex_state = 24, .external_lex_state = 2}, + [1328] = {.lex_state = 24, .external_lex_state = 2}, + [1329] = {.lex_state = 23, .external_lex_state = 13}, + [1330] = {.lex_state = 24, .external_lex_state = 2}, + [1331] = {.lex_state = 24, .external_lex_state = 2}, + [1332] = {.lex_state = 23, .external_lex_state = 13}, + [1333] = {.lex_state = 24, .external_lex_state = 12}, + [1334] = {.lex_state = 24, .external_lex_state = 2}, + [1335] = {.lex_state = 24, .external_lex_state = 12}, + [1336] = {.lex_state = 24, .external_lex_state = 2}, + [1337] = {.lex_state = 24, .external_lex_state = 12}, + [1338] = {.lex_state = 24, .external_lex_state = 12}, + [1339] = {.lex_state = 24, .external_lex_state = 12}, + [1340] = {.lex_state = 24, .external_lex_state = 12}, + [1341] = {.lex_state = 24, .external_lex_state = 12}, + [1342] = {.lex_state = 23, .external_lex_state = 13}, + [1343] = {.lex_state = 24, .external_lex_state = 12}, + [1344] = {.lex_state = 24, .external_lex_state = 12}, + [1345] = {.lex_state = 24, .external_lex_state = 12}, + [1346] = {.lex_state = 24, .external_lex_state = 12}, + [1347] = {.lex_state = 24, .external_lex_state = 12}, + [1348] = {.lex_state = 24, .external_lex_state = 12}, + [1349] = {.lex_state = 24, .external_lex_state = 12}, + [1350] = {.lex_state = 24, .external_lex_state = 12}, + [1351] = {.lex_state = 24, .external_lex_state = 12}, + [1352] = {.lex_state = 24, .external_lex_state = 2}, + [1353] = {.lex_state = 24, .external_lex_state = 12}, + [1354] = {.lex_state = 23, .external_lex_state = 12}, + [1355] = {.lex_state = 23, .external_lex_state = 11}, + [1356] = {.lex_state = 24, .external_lex_state = 12}, + [1357] = {.lex_state = 24, .external_lex_state = 12}, + [1358] = {.lex_state = 24, .external_lex_state = 12}, + [1359] = {.lex_state = 24, .external_lex_state = 12}, + [1360] = {.lex_state = 24, .external_lex_state = 12}, + [1361] = {.lex_state = 24, .external_lex_state = 12}, + [1362] = {.lex_state = 24, .external_lex_state = 12}, + [1363] = {.lex_state = 24, .external_lex_state = 2}, + [1364] = {.lex_state = 24, .external_lex_state = 12}, + [1365] = {.lex_state = 24, .external_lex_state = 12}, + [1366] = {.lex_state = 24, .external_lex_state = 12}, + [1367] = {.lex_state = 24, .external_lex_state = 12}, + [1368] = {.lex_state = 23, .external_lex_state = 12}, + [1369] = {.lex_state = 24, .external_lex_state = 12}, + [1370] = {.lex_state = 23, .external_lex_state = 12}, + [1371] = {.lex_state = 24, .external_lex_state = 12}, + [1372] = {.lex_state = 24, .external_lex_state = 2}, + [1373] = {.lex_state = 24, .external_lex_state = 12}, + [1374] = {.lex_state = 24, .external_lex_state = 12}, + [1375] = {.lex_state = 24, .external_lex_state = 2}, + [1376] = {.lex_state = 23, .external_lex_state = 11}, + [1377] = {.lex_state = 24, .external_lex_state = 2}, + [1378] = {.lex_state = 24, .external_lex_state = 12}, + [1379] = {.lex_state = 24, .external_lex_state = 12}, + [1380] = {.lex_state = 24, .external_lex_state = 12}, + [1381] = {.lex_state = 24, .external_lex_state = 12}, + [1382] = {.lex_state = 24, .external_lex_state = 12}, + [1383] = {.lex_state = 22, .external_lex_state = 2}, + [1384] = {.lex_state = 24, .external_lex_state = 12}, + [1385] = {.lex_state = 22, .external_lex_state = 2}, + [1386] = {.lex_state = 22, .external_lex_state = 2}, + [1387] = {.lex_state = 22, .external_lex_state = 2}, + [1388] = {.lex_state = 22, .external_lex_state = 2}, + [1389] = {.lex_state = 22, .external_lex_state = 2}, + [1390] = {.lex_state = 22, .external_lex_state = 2}, + [1391] = {.lex_state = 22, .external_lex_state = 2}, + [1392] = {.lex_state = 22, .external_lex_state = 2}, + [1393] = {.lex_state = 22, .external_lex_state = 2}, + [1394] = {.lex_state = 24, .external_lex_state = 11}, + [1395] = {.lex_state = 22, .external_lex_state = 2}, + [1396] = {.lex_state = 22, .external_lex_state = 2}, + [1397] = {.lex_state = 24, .external_lex_state = 13}, + [1398] = {.lex_state = 22, .external_lex_state = 2}, + [1399] = {.lex_state = 22, .external_lex_state = 2}, + [1400] = {.lex_state = 22, .external_lex_state = 2}, + [1401] = {.lex_state = 22, .external_lex_state = 2}, + [1402] = {.lex_state = 22, .external_lex_state = 10}, + [1403] = {.lex_state = 22, .external_lex_state = 10}, + [1404] = {.lex_state = 24, .external_lex_state = 11}, + [1405] = {.lex_state = 24, .external_lex_state = 11}, + [1406] = {.lex_state = 24, .external_lex_state = 11}, + [1407] = {.lex_state = 24, .external_lex_state = 11}, + [1408] = {.lex_state = 24, .external_lex_state = 11}, + [1409] = {.lex_state = 24, .external_lex_state = 11}, + [1410] = {.lex_state = 22, .external_lex_state = 13}, + [1411] = {.lex_state = 22, .external_lex_state = 13}, + [1412] = {.lex_state = 22, .external_lex_state = 2}, + [1413] = {.lex_state = 22, .external_lex_state = 2}, + [1414] = {.lex_state = 22, .external_lex_state = 12}, + [1415] = {.lex_state = 22, .external_lex_state = 11}, + [1416] = {.lex_state = 33, .external_lex_state = 11}, + [1417] = {.lex_state = 22, .external_lex_state = 12}, + [1418] = {.lex_state = 33, .external_lex_state = 11}, + [1419] = {.lex_state = 22, .external_lex_state = 11}, + [1420] = {.lex_state = 24, .external_lex_state = 13}, + [1421] = {.lex_state = 24, .external_lex_state = 13}, + [1422] = {.lex_state = 33, .external_lex_state = 13}, + [1423] = {.lex_state = 24, .external_lex_state = 13}, + [1424] = {.lex_state = 24, .external_lex_state = 13}, + [1425] = {.lex_state = 27, .external_lex_state = 10}, + [1426] = {.lex_state = 30, .external_lex_state = 10}, + [1427] = {.lex_state = 24, .external_lex_state = 13}, + [1428] = {.lex_state = 33, .external_lex_state = 12}, + [1429] = {.lex_state = 33, .external_lex_state = 13}, + [1430] = {.lex_state = 30, .external_lex_state = 10}, + [1431] = {.lex_state = 33, .external_lex_state = 12}, [1432] = {.lex_state = 27, .external_lex_state = 10}, - [1433] = {.lex_state = 30, .external_lex_state = 13}, - [1434] = {.lex_state = 21, .external_lex_state = 2}, - [1435] = {.lex_state = 21, .external_lex_state = 2}, - [1436] = {.lex_state = 21, .external_lex_state = 2}, - [1437] = {.lex_state = 21, .external_lex_state = 2}, - [1438] = {.lex_state = 21, .external_lex_state = 2}, - [1439] = {.lex_state = 21, .external_lex_state = 2}, - [1440] = {.lex_state = 21, .external_lex_state = 2}, - [1441] = {.lex_state = 21, .external_lex_state = 2}, - [1442] = {.lex_state = 21, .external_lex_state = 2}, - [1443] = {.lex_state = 21, .external_lex_state = 2}, - [1444] = {.lex_state = 21, .external_lex_state = 2}, - [1445] = {.lex_state = 21, .external_lex_state = 12}, - [1446] = {.lex_state = 21, .external_lex_state = 2}, - [1447] = {.lex_state = 21, .external_lex_state = 12}, - [1448] = {.lex_state = 21, .external_lex_state = 12}, - [1449] = {.lex_state = 1, .external_lex_state = 14}, - [1450] = {.lex_state = 21, .external_lex_state = 12}, - [1451] = {.lex_state = 21, .external_lex_state = 2}, - [1452] = {.lex_state = 21, .external_lex_state = 2}, - [1453] = {.lex_state = 27, .external_lex_state = 10}, - [1454] = {.lex_state = 27, .external_lex_state = 10}, - [1455] = {.lex_state = 21, .external_lex_state = 12}, - [1456] = {.lex_state = 21, .external_lex_state = 12}, - [1457] = {.lex_state = 21, .external_lex_state = 2}, - [1458] = {.lex_state = 21, .external_lex_state = 2}, - [1459] = {.lex_state = 21, .external_lex_state = 2}, - [1460] = {.lex_state = 21, .external_lex_state = 13}, - [1461] = {.lex_state = 21, .external_lex_state = 2}, - [1462] = {.lex_state = 21, .external_lex_state = 2}, - [1463] = {.lex_state = 21, .external_lex_state = 2}, - [1464] = {.lex_state = 27, .external_lex_state = 10}, - [1465] = {.lex_state = 27, .external_lex_state = 10}, - [1466] = {.lex_state = 21, .external_lex_state = 2}, - [1467] = {.lex_state = 21, .external_lex_state = 2}, - [1468] = {.lex_state = 21, .external_lex_state = 2}, - [1469] = {.lex_state = 21, .external_lex_state = 2}, - [1470] = {.lex_state = 21, .external_lex_state = 2}, - [1471] = {.lex_state = 21, .external_lex_state = 13}, - [1472] = {.lex_state = 21, .external_lex_state = 13}, - [1473] = {.lex_state = 21, .external_lex_state = 2}, - [1474] = {.lex_state = 21, .external_lex_state = 13}, - [1475] = {.lex_state = 21, .external_lex_state = 2}, - [1476] = {.lex_state = 21, .external_lex_state = 2}, - [1477] = {.lex_state = 21, .external_lex_state = 2}, - [1478] = {.lex_state = 21, .external_lex_state = 2}, - [1479] = {.lex_state = 21, .external_lex_state = 2}, - [1480] = {.lex_state = 21, .external_lex_state = 13}, - [1481] = {.lex_state = 21, .external_lex_state = 13}, - [1482] = {.lex_state = 19, .external_lex_state = 2}, - [1483] = {.lex_state = 194, .external_lex_state = 2}, - [1484] = {.lex_state = 49, .external_lex_state = 2}, - [1485] = {.lex_state = 49, .external_lex_state = 2}, - [1486] = {.lex_state = 38, .external_lex_state = 14}, - [1487] = {.lex_state = 19, .external_lex_state = 2}, - [1488] = {.lex_state = 49, .external_lex_state = 2}, - [1489] = {.lex_state = 27, .external_lex_state = 2}, - [1490] = {.lex_state = 49, .external_lex_state = 2}, - [1491] = {.lex_state = 19, .external_lex_state = 2}, - [1492] = {.lex_state = 49, .external_lex_state = 2}, - [1493] = {.lex_state = 49, .external_lex_state = 2}, - [1494] = {.lex_state = 27, .external_lex_state = 2}, - [1495] = {.lex_state = 27, .external_lex_state = 2}, - [1496] = {.lex_state = 49, .external_lex_state = 2}, - [1497] = {.lex_state = 49, .external_lex_state = 2}, - [1498] = {.lex_state = 27, .external_lex_state = 10}, - [1499] = {.lex_state = 49, .external_lex_state = 2}, - [1500] = {.lex_state = 27, .external_lex_state = 2}, - [1501] = {.lex_state = 49, .external_lex_state = 2}, - [1502] = {.lex_state = 49, .external_lex_state = 2}, - [1503] = {.lex_state = 49, .external_lex_state = 2}, - [1504] = {.lex_state = 19, .external_lex_state = 2}, - [1505] = {.lex_state = 49, .external_lex_state = 2}, - [1506] = {.lex_state = 24, .external_lex_state = 2}, - [1507] = {.lex_state = 49, .external_lex_state = 13}, - [1508] = {.lex_state = 24, .external_lex_state = 2}, - [1509] = {.lex_state = 49, .external_lex_state = 2}, - [1510] = {.lex_state = 49, .external_lex_state = 13}, - [1511] = {.lex_state = 38, .external_lex_state = 14}, - [1512] = {.lex_state = 39, .external_lex_state = 2}, - [1513] = {.lex_state = 49, .external_lex_state = 13}, - [1514] = {.lex_state = 27, .external_lex_state = 2}, - [1515] = {.lex_state = 49, .external_lex_state = 2}, - [1516] = {.lex_state = 49, .external_lex_state = 2}, - [1517] = {.lex_state = 49, .external_lex_state = 2}, - [1518] = {.lex_state = 38, .external_lex_state = 14}, - [1519] = {.lex_state = 38, .external_lex_state = 14}, - [1520] = {.lex_state = 38, .external_lex_state = 14}, - [1521] = {.lex_state = 38, .external_lex_state = 2}, - [1522] = {.lex_state = 38, .external_lex_state = 14}, - [1523] = {.lex_state = 38, .external_lex_state = 14}, - [1524] = {.lex_state = 38, .external_lex_state = 14}, - [1525] = {.lex_state = 38, .external_lex_state = 14}, - [1526] = {.lex_state = 19, .external_lex_state = 10}, - [1527] = {.lex_state = 30, .external_lex_state = 11}, - [1528] = {.lex_state = 30, .external_lex_state = 11}, - [1529] = {.lex_state = 19, .external_lex_state = 10}, - [1530] = {.lex_state = 19, .external_lex_state = 10}, - [1531] = {.lex_state = 30, .external_lex_state = 11}, - [1532] = {.lex_state = 30, .external_lex_state = 11}, - [1533] = {.lex_state = 30, .external_lex_state = 11}, - [1534] = {.lex_state = 30, .external_lex_state = 11}, - [1535] = {.lex_state = 30, .external_lex_state = 11}, - [1536] = {.lex_state = 38, .external_lex_state = 14}, - [1537] = {.lex_state = 30, .external_lex_state = 11}, - [1538] = {.lex_state = 30, .external_lex_state = 13}, - [1539] = {.lex_state = 19, .external_lex_state = 10}, - [1540] = {.lex_state = 38, .external_lex_state = 2}, - [1541] = {.lex_state = 38, .external_lex_state = 2}, - [1542] = {.lex_state = 38, .external_lex_state = 2}, - [1543] = {.lex_state = 19, .external_lex_state = 10}, - [1544] = {.lex_state = 30, .external_lex_state = 13}, - [1545] = {.lex_state = 30, .external_lex_state = 12}, - [1546] = {.lex_state = 19, .external_lex_state = 10}, - [1547] = {.lex_state = 30, .external_lex_state = 13}, - [1548] = {.lex_state = 30, .external_lex_state = 13}, - [1549] = {.lex_state = 177, .external_lex_state = 2}, - [1550] = {.lex_state = 30, .external_lex_state = 13}, - [1551] = {.lex_state = 19, .external_lex_state = 10}, - [1552] = {.lex_state = 30, .external_lex_state = 13}, - [1553] = {.lex_state = 30, .external_lex_state = 12}, - [1554] = {.lex_state = 30, .external_lex_state = 13}, - [1555] = {.lex_state = 177, .external_lex_state = 2}, - [1556] = {.lex_state = 30, .external_lex_state = 13}, - [1557] = {.lex_state = 30, .external_lex_state = 13}, - [1558] = {.lex_state = 19, .external_lex_state = 10}, - [1559] = {.lex_state = 30, .external_lex_state = 13}, - [1560] = {.lex_state = 30, .external_lex_state = 13}, - [1561] = {.lex_state = 19, .external_lex_state = 10}, - [1562] = {.lex_state = 30, .external_lex_state = 13}, - [1563] = {.lex_state = 38, .external_lex_state = 2}, - [1564] = {.lex_state = 30, .external_lex_state = 13}, - [1565] = {.lex_state = 30, .external_lex_state = 13}, - [1566] = {.lex_state = 38, .external_lex_state = 2}, - [1567] = {.lex_state = 30, .external_lex_state = 13}, - [1568] = {.lex_state = 30, .external_lex_state = 12}, - [1569] = {.lex_state = 30, .external_lex_state = 13}, - [1570] = {.lex_state = 177, .external_lex_state = 2}, - [1571] = {.lex_state = 30, .external_lex_state = 12}, - [1572] = {.lex_state = 30, .external_lex_state = 13}, - [1573] = {.lex_state = 30, .external_lex_state = 12}, - [1574] = {.lex_state = 19, .external_lex_state = 10}, - [1575] = {.lex_state = 30, .external_lex_state = 12}, - [1576] = {.lex_state = 30, .external_lex_state = 12}, - [1577] = {.lex_state = 30, .external_lex_state = 12}, - [1578] = {.lex_state = 19, .external_lex_state = 13}, - [1579] = {.lex_state = 178, .external_lex_state = 2}, - [1580] = {.lex_state = 38, .external_lex_state = 2}, - [1581] = {.lex_state = 19, .external_lex_state = 13}, - [1582] = {.lex_state = 65, .external_lex_state = 15}, - [1583] = {.lex_state = 65, .external_lex_state = 15}, - [1584] = {.lex_state = 65, .external_lex_state = 15}, - [1585] = {.lex_state = 65, .external_lex_state = 15}, - [1586] = {.lex_state = 19, .external_lex_state = 10}, - [1587] = {.lex_state = 19, .external_lex_state = 13}, - [1588] = {.lex_state = 65, .external_lex_state = 15}, - [1589] = {.lex_state = 65, .external_lex_state = 15}, - [1590] = {.lex_state = 38, .external_lex_state = 2}, - [1591] = {.lex_state = 65, .external_lex_state = 15}, - [1592] = {.lex_state = 65, .external_lex_state = 15}, - [1593] = {.lex_state = 19, .external_lex_state = 13}, - [1594] = {.lex_state = 65, .external_lex_state = 15}, - [1595] = {.lex_state = 65, .external_lex_state = 15}, - [1596] = {.lex_state = 65, .external_lex_state = 15}, - [1597] = {.lex_state = 65, .external_lex_state = 15}, - [1598] = {.lex_state = 178, .external_lex_state = 2}, - [1599] = {.lex_state = 65, .external_lex_state = 15}, - [1600] = {.lex_state = 65, .external_lex_state = 15}, - [1601] = {.lex_state = 19, .external_lex_state = 2}, - [1602] = {.lex_state = 19, .external_lex_state = 11}, - [1603] = {.lex_state = 19, .external_lex_state = 11}, - [1604] = {.lex_state = 65, .external_lex_state = 15}, - [1605] = {.lex_state = 65, .external_lex_state = 15}, - [1606] = {.lex_state = 19, .external_lex_state = 13}, - [1607] = {.lex_state = 19, .external_lex_state = 13}, - [1608] = {.lex_state = 19, .external_lex_state = 13}, - [1609] = {.lex_state = 65, .external_lex_state = 15}, - [1610] = {.lex_state = 19, .external_lex_state = 13}, - [1611] = {.lex_state = 19, .external_lex_state = 13}, - [1612] = {.lex_state = 65, .external_lex_state = 15}, - [1613] = {.lex_state = 19, .external_lex_state = 2}, - [1614] = {.lex_state = 19, .external_lex_state = 13}, - [1615] = {.lex_state = 19, .external_lex_state = 2}, - [1616] = {.lex_state = 65, .external_lex_state = 15}, - [1617] = {.lex_state = 38, .external_lex_state = 2}, - [1618] = {.lex_state = 178, .external_lex_state = 2}, - [1619] = {.lex_state = 30, .external_lex_state = 11}, - [1620] = {.lex_state = 30, .external_lex_state = 11}, - [1621] = {.lex_state = 19, .external_lex_state = 11}, - [1622] = {.lex_state = 19, .external_lex_state = 12}, - [1623] = {.lex_state = 19, .external_lex_state = 11}, - [1624] = {.lex_state = 19, .external_lex_state = 11}, - [1625] = {.lex_state = 19, .external_lex_state = 12}, - [1626] = {.lex_state = 19, .external_lex_state = 11}, - [1627] = {.lex_state = 19, .external_lex_state = 11}, - [1628] = {.lex_state = 19, .external_lex_state = 12}, - [1629] = {.lex_state = 38, .external_lex_state = 2}, - [1630] = {.lex_state = 19, .external_lex_state = 12}, - [1631] = {.lex_state = 19, .external_lex_state = 12}, - [1632] = {.lex_state = 19, .external_lex_state = 12}, - [1633] = {.lex_state = 19, .external_lex_state = 12}, - [1634] = {.lex_state = 30, .external_lex_state = 11}, - [1635] = {.lex_state = 19, .external_lex_state = 12}, - [1636] = {.lex_state = 19, .external_lex_state = 11}, - [1637] = {.lex_state = 19, .external_lex_state = 12}, - [1638] = {.lex_state = 19, .external_lex_state = 11}, - [1639] = {.lex_state = 19, .external_lex_state = 2}, - [1640] = {.lex_state = 19, .external_lex_state = 2}, - [1641] = {.lex_state = 19, .external_lex_state = 11}, - [1642] = {.lex_state = 19, .external_lex_state = 2}, - [1643] = {.lex_state = 19, .external_lex_state = 2}, - [1644] = {.lex_state = 19, .external_lex_state = 2}, - [1645] = {.lex_state = 24, .external_lex_state = 10}, - [1646] = {.lex_state = 19, .external_lex_state = 2}, - [1647] = {.lex_state = 19, .external_lex_state = 11}, - [1648] = {.lex_state = 19, .external_lex_state = 11}, - [1649] = {.lex_state = 30, .external_lex_state = 11}, - [1650] = {.lex_state = 30, .external_lex_state = 11}, - [1651] = {.lex_state = 30, .external_lex_state = 11}, - [1652] = {.lex_state = 19, .external_lex_state = 11}, - [1653] = {.lex_state = 30, .external_lex_state = 11}, - [1654] = {.lex_state = 19, .external_lex_state = 2}, - [1655] = {.lex_state = 30, .external_lex_state = 11}, - [1656] = {.lex_state = 19, .external_lex_state = 12}, - [1657] = {.lex_state = 30, .external_lex_state = 11}, - [1658] = {.lex_state = 19, .external_lex_state = 12}, - [1659] = {.lex_state = 42, .external_lex_state = 16}, - [1660] = {.lex_state = 24, .external_lex_state = 10}, - [1661] = {.lex_state = 42, .external_lex_state = 16}, - [1662] = {.lex_state = 41, .external_lex_state = 2}, - [1663] = {.lex_state = 24, .external_lex_state = 10}, - [1664] = {.lex_state = 24, .external_lex_state = 10}, - [1665] = {.lex_state = 24, .external_lex_state = 10}, - [1666] = {.lex_state = 19, .external_lex_state = 12}, - [1667] = {.lex_state = 24, .external_lex_state = 10}, - [1668] = {.lex_state = 24, .external_lex_state = 10}, - [1669] = {.lex_state = 24, .external_lex_state = 10}, - [1670] = {.lex_state = 7, .external_lex_state = 2}, - [1671] = {.lex_state = 42, .external_lex_state = 16}, - [1672] = {.lex_state = 41, .external_lex_state = 2}, - [1673] = {.lex_state = 24, .external_lex_state = 10}, - [1674] = {.lex_state = 24, .external_lex_state = 2}, - [1675] = {.lex_state = 19, .external_lex_state = 12}, - [1676] = {.lex_state = 38, .external_lex_state = 2}, - [1677] = {.lex_state = 38, .external_lex_state = 2}, - [1678] = {.lex_state = 19, .external_lex_state = 12}, - [1679] = {.lex_state = 30, .external_lex_state = 11}, - [1680] = {.lex_state = 30, .external_lex_state = 12}, - [1681] = {.lex_state = 19, .external_lex_state = 12}, - [1682] = {.lex_state = 42, .external_lex_state = 16}, - [1683] = {.lex_state = 30, .external_lex_state = 11}, - [1684] = {.lex_state = 30, .external_lex_state = 12}, - [1685] = {.lex_state = 30, .external_lex_state = 12}, - [1686] = {.lex_state = 30, .external_lex_state = 12}, - [1687] = {.lex_state = 30, .external_lex_state = 13}, - [1688] = {.lex_state = 177, .external_lex_state = 2}, - [1689] = {.lex_state = 42, .external_lex_state = 16}, - [1690] = {.lex_state = 19, .external_lex_state = 12}, - [1691] = {.lex_state = 30, .external_lex_state = 12}, - [1692] = {.lex_state = 30, .external_lex_state = 11}, - [1693] = {.lex_state = 30, .external_lex_state = 12}, - [1694] = {.lex_state = 30, .external_lex_state = 12}, - [1695] = {.lex_state = 30, .external_lex_state = 12}, - [1696] = {.lex_state = 30, .external_lex_state = 12}, - [1697] = {.lex_state = 24, .external_lex_state = 10}, - [1698] = {.lex_state = 24, .external_lex_state = 10}, - [1699] = {.lex_state = 30, .external_lex_state = 13}, - [1700] = {.lex_state = 24, .external_lex_state = 10}, - [1701] = {.lex_state = 24, .external_lex_state = 10}, - [1702] = {.lex_state = 41, .external_lex_state = 2}, - [1703] = {.lex_state = 42, .external_lex_state = 16}, - [1704] = {.lex_state = 19, .external_lex_state = 12}, - [1705] = {.lex_state = 24, .external_lex_state = 10}, - [1706] = {.lex_state = 24, .external_lex_state = 10}, - [1707] = {.lex_state = 41, .external_lex_state = 2}, - [1708] = {.lex_state = 42, .external_lex_state = 16}, - [1709] = {.lex_state = 30, .external_lex_state = 13}, - [1710] = {.lex_state = 38, .external_lex_state = 2}, - [1711] = {.lex_state = 42, .external_lex_state = 16}, - [1712] = {.lex_state = 42, .external_lex_state = 16}, - [1713] = {.lex_state = 42, .external_lex_state = 16}, - [1714] = {.lex_state = 24, .external_lex_state = 2}, - [1715] = {.lex_state = 177, .external_lex_state = 2}, - [1716] = {.lex_state = 30, .external_lex_state = 12}, - [1717] = {.lex_state = 19, .external_lex_state = 12}, - [1718] = {.lex_state = 24, .external_lex_state = 10}, - [1719] = {.lex_state = 42, .external_lex_state = 16}, - [1720] = {.lex_state = 30, .external_lex_state = 13}, - [1721] = {.lex_state = 30, .external_lex_state = 13}, - [1722] = {.lex_state = 30, .external_lex_state = 13}, - [1723] = {.lex_state = 30, .external_lex_state = 13}, - [1724] = {.lex_state = 30, .external_lex_state = 13}, - [1725] = {.lex_state = 42, .external_lex_state = 16}, - [1726] = {.lex_state = 19, .external_lex_state = 12}, - [1727] = {.lex_state = 30, .external_lex_state = 12}, - [1728] = {.lex_state = 177, .external_lex_state = 2}, - [1729] = {.lex_state = 30, .external_lex_state = 13}, - [1730] = {.lex_state = 30, .external_lex_state = 12}, - [1731] = {.lex_state = 19, .external_lex_state = 12}, - [1732] = {.lex_state = 30, .external_lex_state = 13}, - [1733] = {.lex_state = 42, .external_lex_state = 16}, - [1734] = {.lex_state = 30, .external_lex_state = 11}, - [1735] = {.lex_state = 7, .external_lex_state = 2}, - [1736] = {.lex_state = 30, .external_lex_state = 13}, - [1737] = {.lex_state = 30, .external_lex_state = 13}, - [1738] = {.lex_state = 30, .external_lex_state = 11}, - [1739] = {.lex_state = 24, .external_lex_state = 10}, - [1740] = {.lex_state = 178, .external_lex_state = 2}, - [1741] = {.lex_state = 194, .external_lex_state = 14}, - [1742] = {.lex_state = 30, .external_lex_state = 12}, - [1743] = {.lex_state = 178, .external_lex_state = 2}, - [1744] = {.lex_state = 30, .external_lex_state = 12}, - [1745] = {.lex_state = 19, .external_lex_state = 2}, - [1746] = {.lex_state = 30, .external_lex_state = 11}, - [1747] = {.lex_state = 24, .external_lex_state = 13}, - [1748] = {.lex_state = 30, .external_lex_state = 13}, - [1749] = {.lex_state = 19, .external_lex_state = 12}, - [1750] = {.lex_state = 19, .external_lex_state = 12}, - [1751] = {.lex_state = 30, .external_lex_state = 12}, - [1752] = {.lex_state = 19, .external_lex_state = 2}, - [1753] = {.lex_state = 30, .external_lex_state = 11}, - [1754] = {.lex_state = 30, .external_lex_state = 11}, - [1755] = {.lex_state = 30, .external_lex_state = 11}, - [1756] = {.lex_state = 65, .external_lex_state = 15}, - [1757] = {.lex_state = 30, .external_lex_state = 11}, - [1758] = {.lex_state = 30, .external_lex_state = 13}, - [1759] = {.lex_state = 61, .external_lex_state = 2}, - [1760] = {.lex_state = 178, .external_lex_state = 2}, - [1761] = {.lex_state = 30, .external_lex_state = 11}, - [1762] = {.lex_state = 30, .external_lex_state = 11}, - [1763] = {.lex_state = 65, .external_lex_state = 15}, - [1764] = {.lex_state = 19, .external_lex_state = 12}, - [1765] = {.lex_state = 30, .external_lex_state = 11}, - [1766] = {.lex_state = 24, .external_lex_state = 10}, - [1767] = {.lex_state = 30, .external_lex_state = 12}, - [1768] = {.lex_state = 30, .external_lex_state = 11}, - [1769] = {.lex_state = 30, .external_lex_state = 13}, - [1770] = {.lex_state = 30, .external_lex_state = 13}, - [1771] = {.lex_state = 58, .external_lex_state = 2}, - [1772] = {.lex_state = 30, .external_lex_state = 11}, - [1773] = {.lex_state = 30, .external_lex_state = 11}, - [1774] = {.lex_state = 24, .external_lex_state = 12}, - [1775] = {.lex_state = 24, .external_lex_state = 10}, - [1776] = {.lex_state = 19, .external_lex_state = 2}, - [1777] = {.lex_state = 24, .external_lex_state = 13}, - [1778] = {.lex_state = 30, .external_lex_state = 13}, - [1779] = {.lex_state = 24, .external_lex_state = 11}, - [1780] = {.lex_state = 19, .external_lex_state = 12}, - [1781] = {.lex_state = 19, .external_lex_state = 13}, - [1782] = {.lex_state = 19, .external_lex_state = 13}, - [1783] = {.lex_state = 19, .external_lex_state = 13}, - [1784] = {.lex_state = 19, .external_lex_state = 10}, - [1785] = {.lex_state = 24, .external_lex_state = 10}, - [1786] = {.lex_state = 24, .external_lex_state = 13}, - [1787] = {.lex_state = 24, .external_lex_state = 11}, - [1788] = {.lex_state = 24, .external_lex_state = 10}, - [1789] = {.lex_state = 24, .external_lex_state = 12}, - [1790] = {.lex_state = 19, .external_lex_state = 12}, - [1791] = {.lex_state = 24, .external_lex_state = 12}, - [1792] = {.lex_state = 24, .external_lex_state = 10}, - [1793] = {.lex_state = 24, .external_lex_state = 10}, - [1794] = {.lex_state = 19, .external_lex_state = 13}, - [1795] = {.lex_state = 19, .external_lex_state = 13}, - [1796] = {.lex_state = 24, .external_lex_state = 10}, - [1797] = {.lex_state = 2, .external_lex_state = 2}, - [1798] = {.lex_state = 2, .external_lex_state = 2}, - [1799] = {.lex_state = 19, .external_lex_state = 10}, - [1800] = {.lex_state = 19, .external_lex_state = 10}, - [1801] = {.lex_state = 65, .external_lex_state = 15}, - [1802] = {.lex_state = 24, .external_lex_state = 12}, - [1803] = {.lex_state = 194, .external_lex_state = 11}, - [1804] = {.lex_state = 194, .external_lex_state = 11}, - [1805] = {.lex_state = 19, .external_lex_state = 13}, - [1806] = {.lex_state = 24, .external_lex_state = 13}, - [1807] = {.lex_state = 30, .external_lex_state = 12}, - [1808] = {.lex_state = 30, .external_lex_state = 12}, - [1809] = {.lex_state = 19, .external_lex_state = 13}, - [1810] = {.lex_state = 24, .external_lex_state = 11}, - [1811] = {.lex_state = 24, .external_lex_state = 13}, - [1812] = {.lex_state = 24, .external_lex_state = 10}, - [1813] = {.lex_state = 24, .external_lex_state = 12}, - [1814] = {.lex_state = 24, .external_lex_state = 11}, - [1815] = {.lex_state = 65, .external_lex_state = 15}, - [1816] = {.lex_state = 30, .external_lex_state = 11}, - [1817] = {.lex_state = 24, .external_lex_state = 13}, - [1818] = {.lex_state = 19, .external_lex_state = 10}, - [1819] = {.lex_state = 24, .external_lex_state = 13}, - [1820] = {.lex_state = 19, .external_lex_state = 10}, - [1821] = {.lex_state = 65, .external_lex_state = 15}, - [1822] = {.lex_state = 65, .external_lex_state = 15}, - [1823] = {.lex_state = 65, .external_lex_state = 15}, - [1824] = {.lex_state = 19, .external_lex_state = 2}, - [1825] = {.lex_state = 30, .external_lex_state = 12}, - [1826] = {.lex_state = 2, .external_lex_state = 2}, - [1827] = {.lex_state = 19, .external_lex_state = 2}, - [1828] = {.lex_state = 19, .external_lex_state = 2}, - [1829] = {.lex_state = 24, .external_lex_state = 13}, - [1830] = {.lex_state = 194, .external_lex_state = 14}, - [1831] = {.lex_state = 24, .external_lex_state = 13}, - [1832] = {.lex_state = 24, .external_lex_state = 13}, - [1833] = {.lex_state = 19, .external_lex_state = 13}, - [1834] = {.lex_state = 19, .external_lex_state = 10}, - [1835] = {.lex_state = 19, .external_lex_state = 10}, - [1836] = {.lex_state = 19, .external_lex_state = 10}, - [1837] = {.lex_state = 30, .external_lex_state = 13}, - [1838] = {.lex_state = 24, .external_lex_state = 12}, - [1839] = {.lex_state = 30, .external_lex_state = 12}, - [1840] = {.lex_state = 30, .external_lex_state = 11}, - [1841] = {.lex_state = 24, .external_lex_state = 13}, - [1842] = {.lex_state = 30, .external_lex_state = 13}, - [1843] = {.lex_state = 30, .external_lex_state = 12}, - [1844] = {.lex_state = 24, .external_lex_state = 12}, - [1845] = {.lex_state = 24, .external_lex_state = 12}, - [1846] = {.lex_state = 24, .external_lex_state = 13}, - [1847] = {.lex_state = 40, .external_lex_state = 2}, - [1848] = {.lex_state = 19, .external_lex_state = 13}, - [1849] = {.lex_state = 19, .external_lex_state = 2}, - [1850] = {.lex_state = 30, .external_lex_state = 13}, - [1851] = {.lex_state = 19, .external_lex_state = 10}, - [1852] = {.lex_state = 194, .external_lex_state = 11}, - [1853] = {.lex_state = 30, .external_lex_state = 11}, - [1854] = {.lex_state = 194, .external_lex_state = 11}, - [1855] = {.lex_state = 65, .external_lex_state = 15}, - [1856] = {.lex_state = 19, .external_lex_state = 12}, - [1857] = {.lex_state = 19, .external_lex_state = 12}, - [1858] = {.lex_state = 30, .external_lex_state = 11}, - [1859] = {.lex_state = 30, .external_lex_state = 11}, - [1860] = {.lex_state = 66, .external_lex_state = 2}, - [1861] = {.lex_state = 40, .external_lex_state = 2}, - [1862] = {.lex_state = 19, .external_lex_state = 2}, - [1863] = {.lex_state = 30, .external_lex_state = 13}, - [1864] = {.lex_state = 65, .external_lex_state = 15}, - [1865] = {.lex_state = 65, .external_lex_state = 15}, - [1866] = {.lex_state = 7, .external_lex_state = 2}, - [1867] = {.lex_state = 49, .external_lex_state = 10}, - [1868] = {.lex_state = 14, .external_lex_state = 11}, - [1869] = {.lex_state = 30, .external_lex_state = 13}, - [1870] = {.lex_state = 1, .external_lex_state = 2}, - [1871] = {.lex_state = 19, .external_lex_state = 2}, - [1872] = {.lex_state = 7, .external_lex_state = 2}, - [1873] = {.lex_state = 19, .external_lex_state = 2}, - [1874] = {.lex_state = 194, .external_lex_state = 14}, - [1875] = {.lex_state = 19, .external_lex_state = 2}, - [1876] = {.lex_state = 30, .external_lex_state = 13}, - [1877] = {.lex_state = 30, .external_lex_state = 12}, - [1878] = {.lex_state = 30, .external_lex_state = 13}, - [1879] = {.lex_state = 19, .external_lex_state = 2}, - [1880] = {.lex_state = 24, .external_lex_state = 11}, - [1881] = {.lex_state = 19, .external_lex_state = 2}, - [1882] = {.lex_state = 194, .external_lex_state = 11}, - [1883] = {.lex_state = 24, .external_lex_state = 13}, - [1884] = {.lex_state = 30, .external_lex_state = 11}, - [1885] = {.lex_state = 19, .external_lex_state = 2}, - [1886] = {.lex_state = 19, .external_lex_state = 12}, - [1887] = {.lex_state = 19, .external_lex_state = 2}, - [1888] = {.lex_state = 30, .external_lex_state = 12}, - [1889] = {.lex_state = 30, .external_lex_state = 11}, - [1890] = {.lex_state = 30, .external_lex_state = 12}, - [1891] = {.lex_state = 14, .external_lex_state = 11}, - [1892] = {.lex_state = 19, .external_lex_state = 12}, - [1893] = {.lex_state = 19, .external_lex_state = 2}, - [1894] = {.lex_state = 19, .external_lex_state = 12}, - [1895] = {.lex_state = 24, .external_lex_state = 2}, - [1896] = {.lex_state = 24, .external_lex_state = 2}, - [1897] = {.lex_state = 24, .external_lex_state = 11}, - [1898] = {.lex_state = 24, .external_lex_state = 13}, - [1899] = {.lex_state = 30, .external_lex_state = 11}, - [1900] = {.lex_state = 24, .external_lex_state = 2}, - [1901] = {.lex_state = 24, .external_lex_state = 2}, - [1902] = {.lex_state = 7, .external_lex_state = 2}, - [1903] = {.lex_state = 24, .external_lex_state = 2}, - [1904] = {.lex_state = 42, .external_lex_state = 16}, - [1905] = {.lex_state = 19, .external_lex_state = 2}, - [1906] = {.lex_state = 19, .external_lex_state = 12}, - [1907] = {.lex_state = 194, .external_lex_state = 11}, - [1908] = {.lex_state = 19, .external_lex_state = 2}, - [1909] = {.lex_state = 3, .external_lex_state = 2}, - [1910] = {.lex_state = 42, .external_lex_state = 16}, - [1911] = {.lex_state = 36, .external_lex_state = 2}, - [1912] = {.lex_state = 42, .external_lex_state = 16}, - [1913] = {.lex_state = 24, .external_lex_state = 2}, - [1914] = {.lex_state = 24, .external_lex_state = 11}, - [1915] = {.lex_state = 1, .external_lex_state = 2}, - [1916] = {.lex_state = 24, .external_lex_state = 13}, - [1917] = {.lex_state = 194, .external_lex_state = 11}, - [1918] = {.lex_state = 19, .external_lex_state = 2}, - [1919] = {.lex_state = 24, .external_lex_state = 2}, - [1920] = {.lex_state = 24, .external_lex_state = 2}, - [1921] = {.lex_state = 19, .external_lex_state = 2}, - [1922] = {.lex_state = 24, .external_lex_state = 11}, - [1923] = {.lex_state = 24, .external_lex_state = 2}, - [1924] = {.lex_state = 19, .external_lex_state = 2}, - [1925] = {.lex_state = 19, .external_lex_state = 12}, - [1926] = {.lex_state = 19, .external_lex_state = 2}, - [1927] = {.lex_state = 19, .external_lex_state = 2}, - [1928] = {.lex_state = 19, .external_lex_state = 13}, - [1929] = {.lex_state = 42, .external_lex_state = 16}, - [1930] = {.lex_state = 24, .external_lex_state = 10}, - [1931] = {.lex_state = 24, .external_lex_state = 10}, - [1932] = {.lex_state = 24, .external_lex_state = 10}, - [1933] = {.lex_state = 14, .external_lex_state = 11}, - [1934] = {.lex_state = 19, .external_lex_state = 2}, - [1935] = {.lex_state = 194, .external_lex_state = 11}, - [1936] = {.lex_state = 24, .external_lex_state = 2}, - [1937] = {.lex_state = 49, .external_lex_state = 10}, - [1938] = {.lex_state = 19, .external_lex_state = 12}, - [1939] = {.lex_state = 19, .external_lex_state = 12}, - [1940] = {.lex_state = 24, .external_lex_state = 10}, - [1941] = {.lex_state = 19, .external_lex_state = 12}, - [1942] = {.lex_state = 194, .external_lex_state = 11}, - [1943] = {.lex_state = 24, .external_lex_state = 2}, - [1944] = {.lex_state = 24, .external_lex_state = 2}, - [1945] = {.lex_state = 24, .external_lex_state = 2}, - [1946] = {.lex_state = 194, .external_lex_state = 11}, - [1947] = {.lex_state = 194, .external_lex_state = 11}, - [1948] = {.lex_state = 49, .external_lex_state = 10}, - [1949] = {.lex_state = 3, .external_lex_state = 2}, - [1950] = {.lex_state = 19, .external_lex_state = 12}, - [1951] = {.lex_state = 49, .external_lex_state = 2}, - [1952] = {.lex_state = 24, .external_lex_state = 2}, - [1953] = {.lex_state = 42, .external_lex_state = 16}, - [1954] = {.lex_state = 24, .external_lex_state = 2}, - [1955] = {.lex_state = 24, .external_lex_state = 2}, - [1956] = {.lex_state = 36, .external_lex_state = 2}, - [1957] = {.lex_state = 62, .external_lex_state = 2}, - [1958] = {.lex_state = 4, .external_lex_state = 2}, - [1959] = {.lex_state = 194, .external_lex_state = 10}, - [1960] = {.lex_state = 40, .external_lex_state = 2}, - [1961] = {.lex_state = 194, .external_lex_state = 10}, - [1962] = {.lex_state = 194, .external_lex_state = 10}, - [1963] = {.lex_state = 62, .external_lex_state = 2}, - [1964] = {.lex_state = 194, .external_lex_state = 10}, - [1965] = {.lex_state = 194, .external_lex_state = 10}, - [1966] = {.lex_state = 194, .external_lex_state = 10}, - [1967] = {.lex_state = 24, .external_lex_state = 13}, - [1968] = {.lex_state = 194, .external_lex_state = 10}, - [1969] = {.lex_state = 194, .external_lex_state = 10}, - [1970] = {.lex_state = 194, .external_lex_state = 11}, - [1971] = {.lex_state = 194, .external_lex_state = 10}, - [1972] = {.lex_state = 194, .external_lex_state = 10}, - [1973] = {.lex_state = 194, .external_lex_state = 10}, - [1974] = {.lex_state = 5, .external_lex_state = 2}, - [1975] = {.lex_state = 194, .external_lex_state = 10}, - [1976] = {.lex_state = 194, .external_lex_state = 11}, - [1977] = {.lex_state = 19, .external_lex_state = 2}, - [1978] = {.lex_state = 49, .external_lex_state = 13}, - [1979] = {.lex_state = 49, .external_lex_state = 2}, - [1980] = {.lex_state = 24, .external_lex_state = 10}, - [1981] = {.lex_state = 49, .external_lex_state = 2}, - [1982] = {.lex_state = 4, .external_lex_state = 2}, - [1983] = {.lex_state = 194, .external_lex_state = 10}, - [1984] = {.lex_state = 194, .external_lex_state = 10}, - [1985] = {.lex_state = 2, .external_lex_state = 2}, - [1986] = {.lex_state = 1, .external_lex_state = 2}, - [1987] = {.lex_state = 40, .external_lex_state = 2}, - [1988] = {.lex_state = 194, .external_lex_state = 14}, - [1989] = {.lex_state = 194, .external_lex_state = 10}, - [1990] = {.lex_state = 194, .external_lex_state = 10}, - [1991] = {.lex_state = 194, .external_lex_state = 10}, - [1992] = {.lex_state = 194, .external_lex_state = 10}, - [1993] = {.lex_state = 24, .external_lex_state = 13}, - [1994] = {.lex_state = 2, .external_lex_state = 2}, - [1995] = {.lex_state = 49, .external_lex_state = 13}, - [1996] = {.lex_state = 49, .external_lex_state = 2}, - [1997] = {.lex_state = 37, .external_lex_state = 2}, - [1998] = {.lex_state = 49, .external_lex_state = 13}, - [1999] = {.lex_state = 37, .external_lex_state = 2}, - [2000] = {.lex_state = 194, .external_lex_state = 13}, - [2001] = {.lex_state = 2, .external_lex_state = 2}, - [2002] = {.lex_state = 194, .external_lex_state = 14}, + [1433] = {.lex_state = 24, .external_lex_state = 13}, + [1434] = {.lex_state = 30, .external_lex_state = 10}, + [1435] = {.lex_state = 24, .external_lex_state = 2}, + [1436] = {.lex_state = 24, .external_lex_state = 13}, + [1437] = {.lex_state = 24, .external_lex_state = 12}, + [1438] = {.lex_state = 24, .external_lex_state = 13}, + [1439] = {.lex_state = 24, .external_lex_state = 2}, + [1440] = {.lex_state = 24, .external_lex_state = 2}, + [1441] = {.lex_state = 24, .external_lex_state = 2}, + [1442] = {.lex_state = 24, .external_lex_state = 2}, + [1443] = {.lex_state = 24, .external_lex_state = 12}, + [1444] = {.lex_state = 24, .external_lex_state = 2}, + [1445] = {.lex_state = 24, .external_lex_state = 2}, + [1446] = {.lex_state = 24, .external_lex_state = 2}, + [1447] = {.lex_state = 24, .external_lex_state = 2}, + [1448] = {.lex_state = 24, .external_lex_state = 2}, + [1449] = {.lex_state = 24, .external_lex_state = 2}, + [1450] = {.lex_state = 24, .external_lex_state = 2}, + [1451] = {.lex_state = 24, .external_lex_state = 2}, + [1452] = {.lex_state = 24, .external_lex_state = 2}, + [1453] = {.lex_state = 24, .external_lex_state = 2}, + [1454] = {.lex_state = 24, .external_lex_state = 2}, + [1455] = {.lex_state = 30, .external_lex_state = 10}, + [1456] = {.lex_state = 24, .external_lex_state = 2}, + [1457] = {.lex_state = 30, .external_lex_state = 10}, + [1458] = {.lex_state = 24, .external_lex_state = 12}, + [1459] = {.lex_state = 24, .external_lex_state = 13}, + [1460] = {.lex_state = 24, .external_lex_state = 2}, + [1461] = {.lex_state = 24, .external_lex_state = 13}, + [1462] = {.lex_state = 1, .external_lex_state = 14}, + [1463] = {.lex_state = 24, .external_lex_state = 2}, + [1464] = {.lex_state = 24, .external_lex_state = 12}, + [1465] = {.lex_state = 24, .external_lex_state = 2}, + [1466] = {.lex_state = 24, .external_lex_state = 2}, + [1467] = {.lex_state = 30, .external_lex_state = 10}, + [1468] = {.lex_state = 24, .external_lex_state = 2}, + [1469] = {.lex_state = 24, .external_lex_state = 13}, + [1470] = {.lex_state = 24, .external_lex_state = 2}, + [1471] = {.lex_state = 24, .external_lex_state = 2}, + [1472] = {.lex_state = 24, .external_lex_state = 12}, + [1473] = {.lex_state = 24, .external_lex_state = 2}, + [1474] = {.lex_state = 24, .external_lex_state = 2}, + [1475] = {.lex_state = 24, .external_lex_state = 2}, + [1476] = {.lex_state = 24, .external_lex_state = 12}, + [1477] = {.lex_state = 24, .external_lex_state = 2}, + [1478] = {.lex_state = 24, .external_lex_state = 2}, + [1479] = {.lex_state = 192, .external_lex_state = 2}, + [1480] = {.lex_state = 24, .external_lex_state = 2}, + [1481] = {.lex_state = 24, .external_lex_state = 13}, + [1482] = {.lex_state = 24, .external_lex_state = 2}, + [1483] = {.lex_state = 52, .external_lex_state = 2}, + [1484] = {.lex_state = 52, .external_lex_state = 2}, + [1485] = {.lex_state = 52, .external_lex_state = 2}, + [1486] = {.lex_state = 30, .external_lex_state = 2}, + [1487] = {.lex_state = 41, .external_lex_state = 14}, + [1488] = {.lex_state = 22, .external_lex_state = 2}, + [1489] = {.lex_state = 52, .external_lex_state = 2}, + [1490] = {.lex_state = 30, .external_lex_state = 2}, + [1491] = {.lex_state = 52, .external_lex_state = 2}, + [1492] = {.lex_state = 22, .external_lex_state = 2}, + [1493] = {.lex_state = 22, .external_lex_state = 2}, + [1494] = {.lex_state = 30, .external_lex_state = 10}, + [1495] = {.lex_state = 52, .external_lex_state = 2}, + [1496] = {.lex_state = 52, .external_lex_state = 2}, + [1497] = {.lex_state = 52, .external_lex_state = 2}, + [1498] = {.lex_state = 52, .external_lex_state = 2}, + [1499] = {.lex_state = 30, .external_lex_state = 2}, + [1500] = {.lex_state = 52, .external_lex_state = 2}, + [1501] = {.lex_state = 52, .external_lex_state = 2}, + [1502] = {.lex_state = 52, .external_lex_state = 2}, + [1503] = {.lex_state = 22, .external_lex_state = 2}, + [1504] = {.lex_state = 30, .external_lex_state = 2}, + [1505] = {.lex_state = 52, .external_lex_state = 2}, + [1506] = {.lex_state = 52, .external_lex_state = 13}, + [1507] = {.lex_state = 27, .external_lex_state = 2}, + [1508] = {.lex_state = 27, .external_lex_state = 2}, + [1509] = {.lex_state = 52, .external_lex_state = 13}, + [1510] = {.lex_state = 42, .external_lex_state = 2}, + [1511] = {.lex_state = 52, .external_lex_state = 2}, + [1512] = {.lex_state = 30, .external_lex_state = 2}, + [1513] = {.lex_state = 41, .external_lex_state = 14}, + [1514] = {.lex_state = 52, .external_lex_state = 13}, + [1515] = {.lex_state = 52, .external_lex_state = 2}, + [1516] = {.lex_state = 52, .external_lex_state = 2}, + [1517] = {.lex_state = 41, .external_lex_state = 14}, + [1518] = {.lex_state = 41, .external_lex_state = 2}, + [1519] = {.lex_state = 41, .external_lex_state = 14}, + [1520] = {.lex_state = 52, .external_lex_state = 2}, + [1521] = {.lex_state = 41, .external_lex_state = 14}, + [1522] = {.lex_state = 41, .external_lex_state = 14}, + [1523] = {.lex_state = 41, .external_lex_state = 14}, + [1524] = {.lex_state = 41, .external_lex_state = 14}, + [1525] = {.lex_state = 41, .external_lex_state = 14}, + [1526] = {.lex_state = 22, .external_lex_state = 10}, + [1527] = {.lex_state = 41, .external_lex_state = 14}, + [1528] = {.lex_state = 33, .external_lex_state = 11}, + [1529] = {.lex_state = 33, .external_lex_state = 11}, + [1530] = {.lex_state = 33, .external_lex_state = 11}, + [1531] = {.lex_state = 22, .external_lex_state = 10}, + [1532] = {.lex_state = 22, .external_lex_state = 10}, + [1533] = {.lex_state = 33, .external_lex_state = 11}, + [1534] = {.lex_state = 33, .external_lex_state = 11}, + [1535] = {.lex_state = 33, .external_lex_state = 11}, + [1536] = {.lex_state = 33, .external_lex_state = 11}, + [1537] = {.lex_state = 33, .external_lex_state = 11}, + [1538] = {.lex_state = 33, .external_lex_state = 13}, + [1539] = {.lex_state = 33, .external_lex_state = 12}, + [1540] = {.lex_state = 33, .external_lex_state = 12}, + [1541] = {.lex_state = 33, .external_lex_state = 13}, + [1542] = {.lex_state = 33, .external_lex_state = 13}, + [1543] = {.lex_state = 22, .external_lex_state = 10}, + [1544] = {.lex_state = 33, .external_lex_state = 13}, + [1545] = {.lex_state = 175, .external_lex_state = 2}, + [1546] = {.lex_state = 33, .external_lex_state = 13}, + [1547] = {.lex_state = 33, .external_lex_state = 12}, + [1548] = {.lex_state = 33, .external_lex_state = 13}, + [1549] = {.lex_state = 175, .external_lex_state = 2}, + [1550] = {.lex_state = 22, .external_lex_state = 10}, + [1551] = {.lex_state = 33, .external_lex_state = 13}, + [1552] = {.lex_state = 41, .external_lex_state = 2}, + [1553] = {.lex_state = 41, .external_lex_state = 2}, + [1554] = {.lex_state = 33, .external_lex_state = 12}, + [1555] = {.lex_state = 41, .external_lex_state = 2}, + [1556] = {.lex_state = 22, .external_lex_state = 10}, + [1557] = {.lex_state = 33, .external_lex_state = 12}, + [1558] = {.lex_state = 22, .external_lex_state = 10}, + [1559] = {.lex_state = 33, .external_lex_state = 13}, + [1560] = {.lex_state = 22, .external_lex_state = 10}, + [1561] = {.lex_state = 33, .external_lex_state = 13}, + [1562] = {.lex_state = 175, .external_lex_state = 2}, + [1563] = {.lex_state = 33, .external_lex_state = 13}, + [1564] = {.lex_state = 33, .external_lex_state = 13}, + [1565] = {.lex_state = 22, .external_lex_state = 10}, + [1566] = {.lex_state = 33, .external_lex_state = 12}, + [1567] = {.lex_state = 33, .external_lex_state = 13}, + [1568] = {.lex_state = 33, .external_lex_state = 13}, + [1569] = {.lex_state = 22, .external_lex_state = 10}, + [1570] = {.lex_state = 33, .external_lex_state = 13}, + [1571] = {.lex_state = 33, .external_lex_state = 13}, + [1572] = {.lex_state = 41, .external_lex_state = 2}, + [1573] = {.lex_state = 41, .external_lex_state = 2}, + [1574] = {.lex_state = 33, .external_lex_state = 12}, + [1575] = {.lex_state = 33, .external_lex_state = 13}, + [1576] = {.lex_state = 33, .external_lex_state = 12}, + [1577] = {.lex_state = 33, .external_lex_state = 13}, + [1578] = {.lex_state = 176, .external_lex_state = 2}, + [1579] = {.lex_state = 176, .external_lex_state = 2}, + [1580] = {.lex_state = 41, .external_lex_state = 2}, + [1581] = {.lex_state = 22, .external_lex_state = 13}, + [1582] = {.lex_state = 45, .external_lex_state = 15}, + [1583] = {.lex_state = 22, .external_lex_state = 13}, + [1584] = {.lex_state = 68, .external_lex_state = 16}, + [1585] = {.lex_state = 68, .external_lex_state = 16}, + [1586] = {.lex_state = 22, .external_lex_state = 13}, + [1587] = {.lex_state = 45, .external_lex_state = 15}, + [1588] = {.lex_state = 45, .external_lex_state = 15}, + [1589] = {.lex_state = 68, .external_lex_state = 16}, + [1590] = {.lex_state = 68, .external_lex_state = 16}, + [1591] = {.lex_state = 68, .external_lex_state = 16}, + [1592] = {.lex_state = 68, .external_lex_state = 16}, + [1593] = {.lex_state = 45, .external_lex_state = 15}, + [1594] = {.lex_state = 45, .external_lex_state = 15}, + [1595] = {.lex_state = 68, .external_lex_state = 16}, + [1596] = {.lex_state = 45, .external_lex_state = 15}, + [1597] = {.lex_state = 68, .external_lex_state = 16}, + [1598] = {.lex_state = 68, .external_lex_state = 16}, + [1599] = {.lex_state = 22, .external_lex_state = 11}, + [1600] = {.lex_state = 45, .external_lex_state = 15}, + [1601] = {.lex_state = 45, .external_lex_state = 15}, + [1602] = {.lex_state = 41, .external_lex_state = 2}, + [1603] = {.lex_state = 22, .external_lex_state = 2}, + [1604] = {.lex_state = 22, .external_lex_state = 11}, + [1605] = {.lex_state = 22, .external_lex_state = 13}, + [1606] = {.lex_state = 22, .external_lex_state = 13}, + [1607] = {.lex_state = 68, .external_lex_state = 16}, + [1608] = {.lex_state = 45, .external_lex_state = 15}, + [1609] = {.lex_state = 68, .external_lex_state = 16}, + [1610] = {.lex_state = 45, .external_lex_state = 15}, + [1611] = {.lex_state = 22, .external_lex_state = 13}, + [1612] = {.lex_state = 22, .external_lex_state = 13}, + [1613] = {.lex_state = 22, .external_lex_state = 13}, + [1614] = {.lex_state = 68, .external_lex_state = 16}, + [1615] = {.lex_state = 22, .external_lex_state = 2}, + [1616] = {.lex_state = 68, .external_lex_state = 16}, + [1617] = {.lex_state = 68, .external_lex_state = 16}, + [1618] = {.lex_state = 68, .external_lex_state = 16}, + [1619] = {.lex_state = 68, .external_lex_state = 16}, + [1620] = {.lex_state = 22, .external_lex_state = 10}, + [1621] = {.lex_state = 41, .external_lex_state = 2}, + [1622] = {.lex_state = 22, .external_lex_state = 13}, + [1623] = {.lex_state = 68, .external_lex_state = 16}, + [1624] = {.lex_state = 176, .external_lex_state = 2}, + [1625] = {.lex_state = 45, .external_lex_state = 15}, + [1626] = {.lex_state = 68, .external_lex_state = 16}, + [1627] = {.lex_state = 22, .external_lex_state = 13}, + [1628] = {.lex_state = 22, .external_lex_state = 2}, + [1629] = {.lex_state = 45, .external_lex_state = 15}, + [1630] = {.lex_state = 68, .external_lex_state = 16}, + [1631] = {.lex_state = 45, .external_lex_state = 15}, + [1632] = {.lex_state = 33, .external_lex_state = 11}, + [1633] = {.lex_state = 22, .external_lex_state = 11}, + [1634] = {.lex_state = 22, .external_lex_state = 2}, + [1635] = {.lex_state = 22, .external_lex_state = 12}, + [1636] = {.lex_state = 22, .external_lex_state = 2}, + [1637] = {.lex_state = 22, .external_lex_state = 2}, + [1638] = {.lex_state = 22, .external_lex_state = 12}, + [1639] = {.lex_state = 22, .external_lex_state = 2}, + [1640] = {.lex_state = 22, .external_lex_state = 2}, + [1641] = {.lex_state = 22, .external_lex_state = 12}, + [1642] = {.lex_state = 22, .external_lex_state = 11}, + [1643] = {.lex_state = 22, .external_lex_state = 12}, + [1644] = {.lex_state = 22, .external_lex_state = 12}, + [1645] = {.lex_state = 41, .external_lex_state = 2}, + [1646] = {.lex_state = 22, .external_lex_state = 12}, + [1647] = {.lex_state = 22, .external_lex_state = 11}, + [1648] = {.lex_state = 22, .external_lex_state = 11}, + [1649] = {.lex_state = 22, .external_lex_state = 12}, + [1650] = {.lex_state = 22, .external_lex_state = 2}, + [1651] = {.lex_state = 33, .external_lex_state = 11}, + [1652] = {.lex_state = 22, .external_lex_state = 12}, + [1653] = {.lex_state = 22, .external_lex_state = 11}, + [1654] = {.lex_state = 22, .external_lex_state = 12}, + [1655] = {.lex_state = 22, .external_lex_state = 2}, + [1656] = {.lex_state = 27, .external_lex_state = 10}, + [1657] = {.lex_state = 33, .external_lex_state = 11}, + [1658] = {.lex_state = 33, .external_lex_state = 11}, + [1659] = {.lex_state = 33, .external_lex_state = 11}, + [1660] = {.lex_state = 33, .external_lex_state = 11}, + [1661] = {.lex_state = 22, .external_lex_state = 11}, + [1662] = {.lex_state = 33, .external_lex_state = 11}, + [1663] = {.lex_state = 33, .external_lex_state = 11}, + [1664] = {.lex_state = 33, .external_lex_state = 11}, + [1665] = {.lex_state = 22, .external_lex_state = 11}, + [1666] = {.lex_state = 22, .external_lex_state = 12}, + [1667] = {.lex_state = 22, .external_lex_state = 11}, + [1668] = {.lex_state = 22, .external_lex_state = 11}, + [1669] = {.lex_state = 22, .external_lex_state = 11}, + [1670] = {.lex_state = 22, .external_lex_state = 11}, + [1671] = {.lex_state = 8, .external_lex_state = 2}, + [1672] = {.lex_state = 33, .external_lex_state = 12}, + [1673] = {.lex_state = 27, .external_lex_state = 10}, + [1674] = {.lex_state = 27, .external_lex_state = 10}, + [1675] = {.lex_state = 44, .external_lex_state = 2}, + [1676] = {.lex_state = 22, .external_lex_state = 12}, + [1677] = {.lex_state = 22, .external_lex_state = 12}, + [1678] = {.lex_state = 22, .external_lex_state = 12}, + [1679] = {.lex_state = 8, .external_lex_state = 2}, + [1680] = {.lex_state = 33, .external_lex_state = 13}, + [1681] = {.lex_state = 27, .external_lex_state = 2}, + [1682] = {.lex_state = 44, .external_lex_state = 2}, + [1683] = {.lex_state = 33, .external_lex_state = 12}, + [1684] = {.lex_state = 27, .external_lex_state = 10}, + [1685] = {.lex_state = 33, .external_lex_state = 13}, + [1686] = {.lex_state = 22, .external_lex_state = 12}, + [1687] = {.lex_state = 22, .external_lex_state = 12}, + [1688] = {.lex_state = 33, .external_lex_state = 12}, + [1689] = {.lex_state = 41, .external_lex_state = 2}, + [1690] = {.lex_state = 27, .external_lex_state = 10}, + [1691] = {.lex_state = 41, .external_lex_state = 2}, + [1692] = {.lex_state = 33, .external_lex_state = 11}, + [1693] = {.lex_state = 27, .external_lex_state = 10}, + [1694] = {.lex_state = 27, .external_lex_state = 10}, + [1695] = {.lex_state = 33, .external_lex_state = 13}, + [1696] = {.lex_state = 22, .external_lex_state = 12}, + [1697] = {.lex_state = 33, .external_lex_state = 11}, + [1698] = {.lex_state = 27, .external_lex_state = 10}, + [1699] = {.lex_state = 33, .external_lex_state = 12}, + [1700] = {.lex_state = 27, .external_lex_state = 10}, + [1701] = {.lex_state = 27, .external_lex_state = 10}, + [1702] = {.lex_state = 33, .external_lex_state = 12}, + [1703] = {.lex_state = 22, .external_lex_state = 12}, + [1704] = {.lex_state = 27, .external_lex_state = 10}, + [1705] = {.lex_state = 33, .external_lex_state = 11}, + [1706] = {.lex_state = 175, .external_lex_state = 2}, + [1707] = {.lex_state = 175, .external_lex_state = 2}, + [1708] = {.lex_state = 22, .external_lex_state = 12}, + [1709] = {.lex_state = 33, .external_lex_state = 12}, + [1710] = {.lex_state = 33, .external_lex_state = 13}, + [1711] = {.lex_state = 33, .external_lex_state = 11}, + [1712] = {.lex_state = 33, .external_lex_state = 12}, + [1713] = {.lex_state = 33, .external_lex_state = 12}, + [1714] = {.lex_state = 33, .external_lex_state = 12}, + [1715] = {.lex_state = 33, .external_lex_state = 12}, + [1716] = {.lex_state = 33, .external_lex_state = 13}, + [1717] = {.lex_state = 175, .external_lex_state = 2}, + [1718] = {.lex_state = 44, .external_lex_state = 2}, + [1719] = {.lex_state = 22, .external_lex_state = 12}, + [1720] = {.lex_state = 41, .external_lex_state = 2}, + [1721] = {.lex_state = 27, .external_lex_state = 10}, + [1722] = {.lex_state = 27, .external_lex_state = 10}, + [1723] = {.lex_state = 44, .external_lex_state = 2}, + [1724] = {.lex_state = 33, .external_lex_state = 13}, + [1725] = {.lex_state = 33, .external_lex_state = 12}, + [1726] = {.lex_state = 33, .external_lex_state = 13}, + [1727] = {.lex_state = 33, .external_lex_state = 13}, + [1728] = {.lex_state = 33, .external_lex_state = 13}, + [1729] = {.lex_state = 33, .external_lex_state = 13}, + [1730] = {.lex_state = 33, .external_lex_state = 13}, + [1731] = {.lex_state = 8, .external_lex_state = 2}, + [1732] = {.lex_state = 27, .external_lex_state = 10}, + [1733] = {.lex_state = 27, .external_lex_state = 10}, + [1734] = {.lex_state = 27, .external_lex_state = 2}, + [1735] = {.lex_state = 33, .external_lex_state = 13}, + [1736] = {.lex_state = 27, .external_lex_state = 10}, + [1737] = {.lex_state = 22, .external_lex_state = 12}, + [1738] = {.lex_state = 33, .external_lex_state = 12}, + [1739] = {.lex_state = 22, .external_lex_state = 12}, + [1740] = {.lex_state = 33, .external_lex_state = 11}, + [1741] = {.lex_state = 33, .external_lex_state = 11}, + [1742] = {.lex_state = 33, .external_lex_state = 11}, + [1743] = {.lex_state = 33, .external_lex_state = 11}, + [1744] = {.lex_state = 64, .external_lex_state = 2}, + [1745] = {.lex_state = 27, .external_lex_state = 13}, + [1746] = {.lex_state = 176, .external_lex_state = 2}, + [1747] = {.lex_state = 33, .external_lex_state = 13}, + [1748] = {.lex_state = 33, .external_lex_state = 12}, + [1749] = {.lex_state = 33, .external_lex_state = 13}, + [1750] = {.lex_state = 22, .external_lex_state = 12}, + [1751] = {.lex_state = 33, .external_lex_state = 11}, + [1752] = {.lex_state = 176, .external_lex_state = 2}, + [1753] = {.lex_state = 192, .external_lex_state = 14}, + [1754] = {.lex_state = 33, .external_lex_state = 11}, + [1755] = {.lex_state = 22, .external_lex_state = 2}, + [1756] = {.lex_state = 33, .external_lex_state = 11}, + [1757] = {.lex_state = 33, .external_lex_state = 11}, + [1758] = {.lex_state = 22, .external_lex_state = 2}, + [1759] = {.lex_state = 33, .external_lex_state = 12}, + [1760] = {.lex_state = 33, .external_lex_state = 12}, + [1761] = {.lex_state = 22, .external_lex_state = 12}, + [1762] = {.lex_state = 68, .external_lex_state = 16}, + [1763] = {.lex_state = 33, .external_lex_state = 11}, + [1764] = {.lex_state = 33, .external_lex_state = 11}, + [1765] = {.lex_state = 27, .external_lex_state = 10}, + [1766] = {.lex_state = 33, .external_lex_state = 11}, + [1767] = {.lex_state = 61, .external_lex_state = 2}, + [1768] = {.lex_state = 27, .external_lex_state = 10}, + [1769] = {.lex_state = 68, .external_lex_state = 16}, + [1770] = {.lex_state = 27, .external_lex_state = 10}, + [1771] = {.lex_state = 27, .external_lex_state = 12}, + [1772] = {.lex_state = 33, .external_lex_state = 11}, + [1773] = {.lex_state = 33, .external_lex_state = 12}, + [1774] = {.lex_state = 176, .external_lex_state = 2}, + [1775] = {.lex_state = 33, .external_lex_state = 13}, + [1776] = {.lex_state = 33, .external_lex_state = 13}, + [1777] = {.lex_state = 45, .external_lex_state = 15}, + [1778] = {.lex_state = 33, .external_lex_state = 11}, + [1779] = {.lex_state = 12, .external_lex_state = 2}, + [1780] = {.lex_state = 33, .external_lex_state = 13}, + [1781] = {.lex_state = 22, .external_lex_state = 2}, + [1782] = {.lex_state = 22, .external_lex_state = 2}, + [1783] = {.lex_state = 33, .external_lex_state = 13}, + [1784] = {.lex_state = 22, .external_lex_state = 13}, + [1785] = {.lex_state = 22, .external_lex_state = 13}, + [1786] = {.lex_state = 22, .external_lex_state = 13}, + [1787] = {.lex_state = 27, .external_lex_state = 12}, + [1788] = {.lex_state = 27, .external_lex_state = 12}, + [1789] = {.lex_state = 33, .external_lex_state = 12}, + [1790] = {.lex_state = 27, .external_lex_state = 10}, + [1791] = {.lex_state = 68, .external_lex_state = 16}, + [1792] = {.lex_state = 68, .external_lex_state = 16}, + [1793] = {.lex_state = 27, .external_lex_state = 11}, + [1794] = {.lex_state = 27, .external_lex_state = 13}, + [1795] = {.lex_state = 45, .external_lex_state = 15}, + [1796] = {.lex_state = 68, .external_lex_state = 16}, + [1797] = {.lex_state = 22, .external_lex_state = 12}, + [1798] = {.lex_state = 22, .external_lex_state = 13}, + [1799] = {.lex_state = 45, .external_lex_state = 15}, + [1800] = {.lex_state = 22, .external_lex_state = 10}, + [1801] = {.lex_state = 22, .external_lex_state = 10}, + [1802] = {.lex_state = 12, .external_lex_state = 2}, + [1803] = {.lex_state = 27, .external_lex_state = 12}, + [1804] = {.lex_state = 22, .external_lex_state = 13}, + [1805] = {.lex_state = 33, .external_lex_state = 13}, + [1806] = {.lex_state = 27, .external_lex_state = 10}, + [1807] = {.lex_state = 27, .external_lex_state = 10}, + [1808] = {.lex_state = 22, .external_lex_state = 13}, + [1809] = {.lex_state = 22, .external_lex_state = 13}, + [1810] = {.lex_state = 27, .external_lex_state = 10}, + [1811] = {.lex_state = 33, .external_lex_state = 13}, + [1812] = {.lex_state = 22, .external_lex_state = 2}, + [1813] = {.lex_state = 68, .external_lex_state = 16}, + [1814] = {.lex_state = 33, .external_lex_state = 12}, + [1815] = {.lex_state = 43, .external_lex_state = 2}, + [1816] = {.lex_state = 27, .external_lex_state = 12}, + [1817] = {.lex_state = 22, .external_lex_state = 13}, + [1818] = {.lex_state = 45, .external_lex_state = 15}, + [1819] = {.lex_state = 27, .external_lex_state = 13}, + [1820] = {.lex_state = 22, .external_lex_state = 12}, + [1821] = {.lex_state = 27, .external_lex_state = 13}, + [1822] = {.lex_state = 2, .external_lex_state = 2}, + [1823] = {.lex_state = 27, .external_lex_state = 11}, + [1824] = {.lex_state = 27, .external_lex_state = 13}, + [1825] = {.lex_state = 22, .external_lex_state = 13}, + [1826] = {.lex_state = 27, .external_lex_state = 13}, + [1827] = {.lex_state = 22, .external_lex_state = 10}, + [1828] = {.lex_state = 27, .external_lex_state = 12}, + [1829] = {.lex_state = 27, .external_lex_state = 10}, + [1830] = {.lex_state = 27, .external_lex_state = 11}, + [1831] = {.lex_state = 27, .external_lex_state = 11}, + [1832] = {.lex_state = 33, .external_lex_state = 13}, + [1833] = {.lex_state = 33, .external_lex_state = 12}, + [1834] = {.lex_state = 27, .external_lex_state = 13}, + [1835] = {.lex_state = 68, .external_lex_state = 16}, + [1836] = {.lex_state = 27, .external_lex_state = 13}, + [1837] = {.lex_state = 192, .external_lex_state = 11}, + [1838] = {.lex_state = 192, .external_lex_state = 11}, + [1839] = {.lex_state = 22, .external_lex_state = 12}, + [1840] = {.lex_state = 68, .external_lex_state = 16}, + [1841] = {.lex_state = 45, .external_lex_state = 15}, + [1842] = {.lex_state = 68, .external_lex_state = 16}, + [1843] = {.lex_state = 27, .external_lex_state = 12}, + [1844] = {.lex_state = 68, .external_lex_state = 16}, + [1845] = {.lex_state = 192, .external_lex_state = 14}, + [1846] = {.lex_state = 27, .external_lex_state = 12}, + [1847] = {.lex_state = 192, .external_lex_state = 11}, + [1848] = {.lex_state = 192, .external_lex_state = 11}, + [1849] = {.lex_state = 45, .external_lex_state = 15}, + [1850] = {.lex_state = 22, .external_lex_state = 10}, + [1851] = {.lex_state = 22, .external_lex_state = 10}, + [1852] = {.lex_state = 33, .external_lex_state = 12}, + [1853] = {.lex_state = 33, .external_lex_state = 12}, + [1854] = {.lex_state = 27, .external_lex_state = 13}, + [1855] = {.lex_state = 33, .external_lex_state = 11}, + [1856] = {.lex_state = 27, .external_lex_state = 13}, + [1857] = {.lex_state = 2, .external_lex_state = 2}, + [1858] = {.lex_state = 22, .external_lex_state = 2}, + [1859] = {.lex_state = 22, .external_lex_state = 2}, + [1860] = {.lex_state = 27, .external_lex_state = 13}, + [1861] = {.lex_state = 27, .external_lex_state = 13}, + [1862] = {.lex_state = 22, .external_lex_state = 10}, + [1863] = {.lex_state = 22, .external_lex_state = 10}, + [1864] = {.lex_state = 22, .external_lex_state = 10}, + [1865] = {.lex_state = 33, .external_lex_state = 11}, + [1866] = {.lex_state = 22, .external_lex_state = 10}, + [1867] = {.lex_state = 33, .external_lex_state = 11}, + [1868] = {.lex_state = 22, .external_lex_state = 2}, + [1869] = {.lex_state = 33, .external_lex_state = 11}, + [1870] = {.lex_state = 22, .external_lex_state = 12}, + [1871] = {.lex_state = 45, .external_lex_state = 15}, + [1872] = {.lex_state = 27, .external_lex_state = 10}, + [1873] = {.lex_state = 2, .external_lex_state = 2}, + [1874] = {.lex_state = 43, .external_lex_state = 2}, + [1875] = {.lex_state = 27, .external_lex_state = 2}, + [1876] = {.lex_state = 8, .external_lex_state = 2}, + [1877] = {.lex_state = 192, .external_lex_state = 14}, + [1878] = {.lex_state = 27, .external_lex_state = 13}, + [1879] = {.lex_state = 27, .external_lex_state = 10}, + [1880] = {.lex_state = 192, .external_lex_state = 11}, + [1881] = {.lex_state = 8, .external_lex_state = 2}, + [1882] = {.lex_state = 1, .external_lex_state = 2}, + [1883] = {.lex_state = 27, .external_lex_state = 2}, + [1884] = {.lex_state = 27, .external_lex_state = 2}, + [1885] = {.lex_state = 27, .external_lex_state = 10}, + [1886] = {.lex_state = 22, .external_lex_state = 2}, + [1887] = {.lex_state = 17, .external_lex_state = 11}, + [1888] = {.lex_state = 22, .external_lex_state = 2}, + [1889] = {.lex_state = 27, .external_lex_state = 10}, + [1890] = {.lex_state = 22, .external_lex_state = 2}, + [1891] = {.lex_state = 27, .external_lex_state = 2}, + [1892] = {.lex_state = 33, .external_lex_state = 12}, + [1893] = {.lex_state = 22, .external_lex_state = 2}, + [1894] = {.lex_state = 33, .external_lex_state = 11}, + [1895] = {.lex_state = 27, .external_lex_state = 2}, + [1896] = {.lex_state = 22, .external_lex_state = 2}, + [1897] = {.lex_state = 27, .external_lex_state = 13}, + [1898] = {.lex_state = 33, .external_lex_state = 11}, + [1899] = {.lex_state = 27, .external_lex_state = 10}, + [1900] = {.lex_state = 33, .external_lex_state = 11}, + [1901] = {.lex_state = 27, .external_lex_state = 2}, + [1902] = {.lex_state = 22, .external_lex_state = 2}, + [1903] = {.lex_state = 33, .external_lex_state = 12}, + [1904] = {.lex_state = 192, .external_lex_state = 11}, + [1905] = {.lex_state = 33, .external_lex_state = 12}, + [1906] = {.lex_state = 1, .external_lex_state = 2}, + [1907] = {.lex_state = 52, .external_lex_state = 10}, + [1908] = {.lex_state = 22, .external_lex_state = 2}, + [1909] = {.lex_state = 22, .external_lex_state = 12}, + [1910] = {.lex_state = 22, .external_lex_state = 2}, + [1911] = {.lex_state = 22, .external_lex_state = 2}, + [1912] = {.lex_state = 27, .external_lex_state = 11}, + [1913] = {.lex_state = 52, .external_lex_state = 10}, + [1914] = {.lex_state = 22, .external_lex_state = 2}, + [1915] = {.lex_state = 22, .external_lex_state = 2}, + [1916] = {.lex_state = 22, .external_lex_state = 2}, + [1917] = {.lex_state = 27, .external_lex_state = 13}, + [1918] = {.lex_state = 192, .external_lex_state = 11}, + [1919] = {.lex_state = 3, .external_lex_state = 2}, + [1920] = {.lex_state = 27, .external_lex_state = 2}, + [1921] = {.lex_state = 8, .external_lex_state = 2}, + [1922] = {.lex_state = 39, .external_lex_state = 2}, + [1923] = {.lex_state = 17, .external_lex_state = 11}, + [1924] = {.lex_state = 22, .external_lex_state = 12}, + [1925] = {.lex_state = 17, .external_lex_state = 11}, + [1926] = {.lex_state = 27, .external_lex_state = 11}, + [1927] = {.lex_state = 27, .external_lex_state = 2}, + [1928] = {.lex_state = 39, .external_lex_state = 2}, + [1929] = {.lex_state = 33, .external_lex_state = 13}, + [1930] = {.lex_state = 22, .external_lex_state = 2}, + [1931] = {.lex_state = 27, .external_lex_state = 2}, + [1932] = {.lex_state = 192, .external_lex_state = 11}, + [1933] = {.lex_state = 22, .external_lex_state = 12}, + [1934] = {.lex_state = 27, .external_lex_state = 11}, + [1935] = {.lex_state = 27, .external_lex_state = 2}, + [1936] = {.lex_state = 22, .external_lex_state = 12}, + [1937] = {.lex_state = 192, .external_lex_state = 11}, + [1938] = {.lex_state = 192, .external_lex_state = 11}, + [1939] = {.lex_state = 27, .external_lex_state = 2}, + [1940] = {.lex_state = 33, .external_lex_state = 13}, + [1941] = {.lex_state = 22, .external_lex_state = 13}, + [1942] = {.lex_state = 27, .external_lex_state = 2}, + [1943] = {.lex_state = 27, .external_lex_state = 2}, + [1944] = {.lex_state = 27, .external_lex_state = 2}, + [1945] = {.lex_state = 3, .external_lex_state = 2}, + [1946] = {.lex_state = 52, .external_lex_state = 2}, + [1947] = {.lex_state = 22, .external_lex_state = 2}, + [1948] = {.lex_state = 22, .external_lex_state = 12}, + [1949] = {.lex_state = 22, .external_lex_state = 12}, + [1950] = {.lex_state = 192, .external_lex_state = 11}, + [1951] = {.lex_state = 27, .external_lex_state = 2}, + [1952] = {.lex_state = 22, .external_lex_state = 2}, + [1953] = {.lex_state = 27, .external_lex_state = 11}, + [1954] = {.lex_state = 33, .external_lex_state = 13}, + [1955] = {.lex_state = 27, .external_lex_state = 2}, + [1956] = {.lex_state = 22, .external_lex_state = 12}, + [1957] = {.lex_state = 52, .external_lex_state = 10}, + [1958] = {.lex_state = 22, .external_lex_state = 12}, + [1959] = {.lex_state = 22, .external_lex_state = 12}, + [1960] = {.lex_state = 22, .external_lex_state = 2}, + [1961] = {.lex_state = 52, .external_lex_state = 13}, + [1962] = {.lex_state = 2, .external_lex_state = 2}, + [1963] = {.lex_state = 40, .external_lex_state = 2}, + [1964] = {.lex_state = 192, .external_lex_state = 10}, + [1965] = {.lex_state = 40, .external_lex_state = 2}, + [1966] = {.lex_state = 27, .external_lex_state = 13}, + [1967] = {.lex_state = 2, .external_lex_state = 2}, + [1968] = {.lex_state = 192, .external_lex_state = 10}, + [1969] = {.lex_state = 192, .external_lex_state = 10}, + [1970] = {.lex_state = 192, .external_lex_state = 14}, + [1971] = {.lex_state = 192, .external_lex_state = 10}, + [1972] = {.lex_state = 65, .external_lex_state = 2}, + [1973] = {.lex_state = 4, .external_lex_state = 2}, + [1974] = {.lex_state = 192, .external_lex_state = 10}, + [1975] = {.lex_state = 192, .external_lex_state = 14}, + [1976] = {.lex_state = 52, .external_lex_state = 2}, + [1977] = {.lex_state = 192, .external_lex_state = 10}, + [1978] = {.lex_state = 192, .external_lex_state = 10}, + [1979] = {.lex_state = 192, .external_lex_state = 10}, + [1980] = {.lex_state = 192, .external_lex_state = 11}, + [1981] = {.lex_state = 192, .external_lex_state = 10}, + [1982] = {.lex_state = 192, .external_lex_state = 10}, + [1983] = {.lex_state = 192, .external_lex_state = 10}, + [1984] = {.lex_state = 192, .external_lex_state = 10}, + [1985] = {.lex_state = 192, .external_lex_state = 10}, + [1986] = {.lex_state = 52, .external_lex_state = 2}, + [1987] = {.lex_state = 43, .external_lex_state = 2}, + [1988] = {.lex_state = 52, .external_lex_state = 2}, + [1989] = {.lex_state = 43, .external_lex_state = 2}, + [1990] = {.lex_state = 192, .external_lex_state = 10}, + [1991] = {.lex_state = 192, .external_lex_state = 10}, + [1992] = {.lex_state = 192, .external_lex_state = 10}, + [1993] = {.lex_state = 192, .external_lex_state = 10}, + [1994] = {.lex_state = 192, .external_lex_state = 10}, + [1995] = {.lex_state = 27, .external_lex_state = 10}, + [1996] = {.lex_state = 5, .external_lex_state = 2}, + [1997] = {.lex_state = 2, .external_lex_state = 2}, + [1998] = {.lex_state = 4, .external_lex_state = 2}, + [1999] = {.lex_state = 22, .external_lex_state = 2}, + [2000] = {.lex_state = 27, .external_lex_state = 13}, + [2001] = {.lex_state = 192, .external_lex_state = 11}, + [2002] = {.lex_state = 52, .external_lex_state = 13}, [2003] = {.lex_state = 4, .external_lex_state = 2}, - [2004] = {.lex_state = 194, .external_lex_state = 14}, - [2005] = {.lex_state = 194, .external_lex_state = 12}, - [2006] = {.lex_state = 194, .external_lex_state = 13}, - [2007] = {.lex_state = 194, .external_lex_state = 13}, - [2008] = {.lex_state = 194, .external_lex_state = 2}, - [2009] = {.lex_state = 194, .external_lex_state = 2}, - [2010] = {.lex_state = 194, .external_lex_state = 11}, - [2011] = {.lex_state = 24, .external_lex_state = 2}, - [2012] = {.lex_state = 194, .external_lex_state = 13}, - [2013] = {.lex_state = 194, .external_lex_state = 2}, - [2014] = {.lex_state = 194, .external_lex_state = 12}, - [2015] = {.lex_state = 194, .external_lex_state = 11}, - [2016] = {.lex_state = 24, .external_lex_state = 2}, - [2017] = {.lex_state = 194, .external_lex_state = 10}, - [2018] = {.lex_state = 24, .external_lex_state = 2}, - [2019] = {.lex_state = 194, .external_lex_state = 13}, - [2020] = {.lex_state = 194, .external_lex_state = 13}, - [2021] = {.lex_state = 194, .external_lex_state = 2}, - [2022] = {.lex_state = 24, .external_lex_state = 2}, - [2023] = {.lex_state = 194, .external_lex_state = 13}, - [2024] = {.lex_state = 194, .external_lex_state = 12}, - [2025] = {.lex_state = 194, .external_lex_state = 11}, - [2026] = {.lex_state = 24, .external_lex_state = 2}, - [2027] = {.lex_state = 194, .external_lex_state = 10}, - [2028] = {.lex_state = 24, .external_lex_state = 2}, - [2029] = {.lex_state = 194, .external_lex_state = 10}, - [2030] = {.lex_state = 194, .external_lex_state = 11}, - [2031] = {.lex_state = 194, .external_lex_state = 10}, - [2032] = {.lex_state = 194, .external_lex_state = 10}, - [2033] = {.lex_state = 194, .external_lex_state = 12}, - [2034] = {.lex_state = 194, .external_lex_state = 10}, - [2035] = {.lex_state = 194, .external_lex_state = 10}, - [2036] = {.lex_state = 194, .external_lex_state = 13}, - [2037] = {.lex_state = 24, .external_lex_state = 2}, - [2038] = {.lex_state = 194, .external_lex_state = 13}, - [2039] = {.lex_state = 194, .external_lex_state = 13}, - [2040] = {.lex_state = 194, .external_lex_state = 12}, - [2041] = {.lex_state = 194, .external_lex_state = 13}, - [2042] = {.lex_state = 194, .external_lex_state = 13}, - [2043] = {.lex_state = 194, .external_lex_state = 12}, - [2044] = {.lex_state = 194, .external_lex_state = 11}, - [2045] = {.lex_state = 194, .external_lex_state = 2}, - [2046] = {.lex_state = 194, .external_lex_state = 12}, - [2047] = {.lex_state = 194, .external_lex_state = 2}, - [2048] = {.lex_state = 24, .external_lex_state = 2}, - [2049] = {.lex_state = 194, .external_lex_state = 2}, - [2050] = {.lex_state = 24, .external_lex_state = 2}, - [2051] = {.lex_state = 194, .external_lex_state = 13}, - [2052] = {.lex_state = 194, .external_lex_state = 13}, - [2053] = {.lex_state = 194, .external_lex_state = 10}, - [2054] = {.lex_state = 19, .external_lex_state = 2}, - [2055] = {.lex_state = 194, .external_lex_state = 13}, - [2056] = {.lex_state = 24, .external_lex_state = 2}, - [2057] = {.lex_state = 194, .external_lex_state = 11}, - [2058] = {.lex_state = 19, .external_lex_state = 2}, - [2059] = {.lex_state = 194, .external_lex_state = 13}, - [2060] = {.lex_state = 194, .external_lex_state = 12}, - [2061] = {.lex_state = 194, .external_lex_state = 13}, - [2062] = {.lex_state = 194, .external_lex_state = 12}, - [2063] = {.lex_state = 24, .external_lex_state = 2}, - [2064] = {.lex_state = 194, .external_lex_state = 2}, - [2065] = {.lex_state = 194, .external_lex_state = 13}, - [2066] = {.lex_state = 194, .external_lex_state = 12}, - [2067] = {.lex_state = 24, .external_lex_state = 2}, - [2068] = {.lex_state = 194, .external_lex_state = 11}, - [2069] = {.lex_state = 194, .external_lex_state = 13}, - [2070] = {.lex_state = 194, .external_lex_state = 13}, - [2071] = {.lex_state = 194, .external_lex_state = 10}, - [2072] = {.lex_state = 24, .external_lex_state = 2}, - [2073] = {.lex_state = 194, .external_lex_state = 12}, - [2074] = {.lex_state = 194, .external_lex_state = 12}, - [2075] = {.lex_state = 194, .external_lex_state = 13}, - [2076] = {.lex_state = 194, .external_lex_state = 11}, - [2077] = {.lex_state = 194, .external_lex_state = 12}, - [2078] = {.lex_state = 194, .external_lex_state = 13}, - [2079] = {.lex_state = 194, .external_lex_state = 13}, - [2080] = {.lex_state = 194, .external_lex_state = 12}, - [2081] = {.lex_state = 194, .external_lex_state = 11}, - [2082] = {.lex_state = 194, .external_lex_state = 13}, - [2083] = {.lex_state = 194, .external_lex_state = 11}, - [2084] = {.lex_state = 194, .external_lex_state = 2}, - [2085] = {.lex_state = 194, .external_lex_state = 11}, - [2086] = {.lex_state = 194, .external_lex_state = 13}, - [2087] = {.lex_state = 194, .external_lex_state = 12}, - [2088] = {.lex_state = 194, .external_lex_state = 12}, - [2089] = {.lex_state = 194, .external_lex_state = 10}, - [2090] = {.lex_state = 194, .external_lex_state = 13}, - [2091] = {.lex_state = 194, .external_lex_state = 13}, - [2092] = {.lex_state = 194, .external_lex_state = 13}, - [2093] = {.lex_state = 194, .external_lex_state = 13}, - [2094] = {.lex_state = 194, .external_lex_state = 2}, - [2095] = {.lex_state = 194, .external_lex_state = 13}, - [2096] = {.lex_state = 194, .external_lex_state = 11}, - [2097] = {.lex_state = 194, .external_lex_state = 11}, - [2098] = {.lex_state = 194, .external_lex_state = 12}, - [2099] = {.lex_state = 194, .external_lex_state = 14}, - [2100] = {.lex_state = 194, .external_lex_state = 13}, - [2101] = {.lex_state = 194, .external_lex_state = 11}, - [2102] = {.lex_state = 194, .external_lex_state = 12}, - [2103] = {.lex_state = 194, .external_lex_state = 2}, - [2104] = {.lex_state = 194, .external_lex_state = 2}, - [2105] = {.lex_state = 194, .external_lex_state = 13}, - [2106] = {.lex_state = 194, .external_lex_state = 13}, - [2107] = {.lex_state = 49, .external_lex_state = 2}, - [2108] = {.lex_state = 194, .external_lex_state = 10}, - [2109] = {.lex_state = 194, .external_lex_state = 11}, - [2110] = {.lex_state = 194, .external_lex_state = 2}, - [2111] = {.lex_state = 194, .external_lex_state = 10}, - [2112] = {.lex_state = 194, .external_lex_state = 12}, - [2113] = {.lex_state = 49, .external_lex_state = 2}, - [2114] = {.lex_state = 194, .external_lex_state = 12}, - [2115] = {.lex_state = 194, .external_lex_state = 12}, - [2116] = {.lex_state = 194, .external_lex_state = 12}, - [2117] = {.lex_state = 194, .external_lex_state = 12}, - [2118] = {.lex_state = 194, .external_lex_state = 13}, - [2119] = {.lex_state = 194, .external_lex_state = 12}, - [2120] = {.lex_state = 194, .external_lex_state = 13}, - [2121] = {.lex_state = 194, .external_lex_state = 14}, - [2122] = {.lex_state = 194, .external_lex_state = 10}, - [2123] = {.lex_state = 194, .external_lex_state = 10}, - [2124] = {.lex_state = 24, .external_lex_state = 2}, - [2125] = {.lex_state = 24, .external_lex_state = 2}, - [2126] = {.lex_state = 24, .external_lex_state = 10}, - [2127] = {.lex_state = 194, .external_lex_state = 2}, - [2128] = {.lex_state = 194, .external_lex_state = 10}, - [2129] = {.lex_state = 194, .external_lex_state = 14}, - [2130] = {.lex_state = 194, .external_lex_state = 12}, - [2131] = {.lex_state = 194, .external_lex_state = 2}, - [2132] = {.lex_state = 14, .external_lex_state = 11}, - [2133] = {.lex_state = 194, .external_lex_state = 13}, - [2134] = {.lex_state = 194, .external_lex_state = 12}, - [2135] = {.lex_state = 194, .external_lex_state = 11}, - [2136] = {.lex_state = 194, .external_lex_state = 12}, - [2137] = {.lex_state = 194, .external_lex_state = 13}, - [2138] = {.lex_state = 194, .external_lex_state = 13}, - [2139] = {.lex_state = 194, .external_lex_state = 13}, - [2140] = {.lex_state = 194, .external_lex_state = 13}, - [2141] = {.lex_state = 194, .external_lex_state = 13}, - [2142] = {.lex_state = 194, .external_lex_state = 12}, - [2143] = {.lex_state = 194, .external_lex_state = 2}, - [2144] = {.lex_state = 194, .external_lex_state = 10}, - [2145] = {.lex_state = 194, .external_lex_state = 2}, - [2146] = {.lex_state = 194, .external_lex_state = 12}, - [2147] = {.lex_state = 194, .external_lex_state = 2}, - [2148] = {.lex_state = 194, .external_lex_state = 11}, - [2149] = {.lex_state = 194, .external_lex_state = 13}, - [2150] = {.lex_state = 194, .external_lex_state = 2}, - [2151] = {.lex_state = 194, .external_lex_state = 10}, - [2152] = {.lex_state = 194, .external_lex_state = 12}, - [2153] = {.lex_state = 24, .external_lex_state = 10}, - [2154] = {.lex_state = 194, .external_lex_state = 13}, - [2155] = {.lex_state = 194, .external_lex_state = 13}, - [2156] = {.lex_state = 194, .external_lex_state = 12}, - [2157] = {.lex_state = 194, .external_lex_state = 13}, - [2158] = {.lex_state = 194, .external_lex_state = 10}, - [2159] = {.lex_state = 24, .external_lex_state = 10}, - [2160] = {.lex_state = 194, .external_lex_state = 2}, - [2161] = {.lex_state = 194, .external_lex_state = 13}, - [2162] = {.lex_state = 24, .external_lex_state = 13}, - [2163] = {.lex_state = 194, .external_lex_state = 2}, - [2164] = {.lex_state = 194, .external_lex_state = 13}, - [2165] = {.lex_state = 194, .external_lex_state = 13}, - [2166] = {.lex_state = 194, .external_lex_state = 11}, - [2167] = {.lex_state = 194, .external_lex_state = 12}, - [2168] = {.lex_state = 14, .external_lex_state = 11}, - [2169] = {.lex_state = 194, .external_lex_state = 13}, - [2170] = {.lex_state = 194, .external_lex_state = 12}, - [2171] = {.lex_state = 194, .external_lex_state = 10}, - [2172] = {.lex_state = 24, .external_lex_state = 2}, - [2173] = {.lex_state = 194, .external_lex_state = 2}, - [2174] = {.lex_state = 194, .external_lex_state = 11}, - [2175] = {.lex_state = 194, .external_lex_state = 11}, - [2176] = {.lex_state = 14, .external_lex_state = 11}, - [2177] = {.lex_state = 194, .external_lex_state = 11}, - [2178] = {.lex_state = 194, .external_lex_state = 13}, - [2179] = {.lex_state = 194, .external_lex_state = 13}, - [2180] = {.lex_state = 194, .external_lex_state = 13}, - [2181] = {.lex_state = 194, .external_lex_state = 13}, - [2182] = {.lex_state = 194, .external_lex_state = 12}, - [2183] = {.lex_state = 24, .external_lex_state = 10}, - [2184] = {.lex_state = 14, .external_lex_state = 11}, - [2185] = {.lex_state = 194, .external_lex_state = 13}, - [2186] = {.lex_state = 194, .external_lex_state = 13}, - [2187] = {.lex_state = 194, .external_lex_state = 13}, - [2188] = {.lex_state = 194, .external_lex_state = 10}, - [2189] = {.lex_state = 14, .external_lex_state = 11}, - [2190] = {.lex_state = 194, .external_lex_state = 12}, - [2191] = {.lex_state = 194, .external_lex_state = 12}, - [2192] = {.lex_state = 24, .external_lex_state = 2}, - [2193] = {.lex_state = 194, .external_lex_state = 13}, - [2194] = {.lex_state = 194, .external_lex_state = 12}, - [2195] = {.lex_state = 194, .external_lex_state = 12}, - [2196] = {.lex_state = 62, .external_lex_state = 2}, - [2197] = {.lex_state = 194, .external_lex_state = 13}, - [2198] = {.lex_state = 194, .external_lex_state = 13}, - [2199] = {.lex_state = 194, .external_lex_state = 13}, - [2200] = {.lex_state = 194, .external_lex_state = 13}, - [2201] = {.lex_state = 194, .external_lex_state = 13}, - [2202] = {.lex_state = 194, .external_lex_state = 10}, - [2203] = {.lex_state = 194, .external_lex_state = 13}, - [2204] = {.lex_state = 194, .external_lex_state = 11}, - [2205] = {.lex_state = 194, .external_lex_state = 2}, - [2206] = {.lex_state = 194, .external_lex_state = 10}, - [2207] = {.lex_state = 194, .external_lex_state = 13}, - [2208] = {.lex_state = 194, .external_lex_state = 13}, - [2209] = {.lex_state = 194, .external_lex_state = 13}, - [2210] = {.lex_state = 194, .external_lex_state = 11}, - [2211] = {.lex_state = 194, .external_lex_state = 13}, - [2212] = {.lex_state = 194, .external_lex_state = 12}, - [2213] = {.lex_state = 14, .external_lex_state = 11}, - [2214] = {.lex_state = 194, .external_lex_state = 12}, - [2215] = {.lex_state = 194, .external_lex_state = 13}, - [2216] = {.lex_state = 194, .external_lex_state = 12}, - [2217] = {.lex_state = 24, .external_lex_state = 2}, - [2218] = {.lex_state = 194, .external_lex_state = 12}, - [2219] = {.lex_state = 14, .external_lex_state = 11}, - [2220] = {.lex_state = 194, .external_lex_state = 2}, - [2221] = {.lex_state = 194, .external_lex_state = 13}, - [2222] = {.lex_state = 194, .external_lex_state = 11}, - [2223] = {.lex_state = 14, .external_lex_state = 11}, - [2224] = {.lex_state = 194, .external_lex_state = 13}, - [2225] = {.lex_state = 194, .external_lex_state = 12}, - [2226] = {.lex_state = 14, .external_lex_state = 11}, - [2227] = {.lex_state = 194, .external_lex_state = 12}, - [2228] = {.lex_state = 1, .external_lex_state = 2}, - [2229] = {.lex_state = 194, .external_lex_state = 2}, - [2230] = {.lex_state = 1, .external_lex_state = 2}, - [2231] = {.lex_state = 194, .external_lex_state = 12}, - [2232] = {.lex_state = 1, .external_lex_state = 2}, - [2233] = {.lex_state = 36, .external_lex_state = 11}, + [2004] = {.lex_state = 192, .external_lex_state = 14}, + [2005] = {.lex_state = 192, .external_lex_state = 13}, + [2006] = {.lex_state = 52, .external_lex_state = 13}, + [2007] = {.lex_state = 65, .external_lex_state = 2}, + [2008] = {.lex_state = 1, .external_lex_state = 2}, + [2009] = {.lex_state = 192, .external_lex_state = 13}, + [2010] = {.lex_state = 192, .external_lex_state = 2}, + [2011] = {.lex_state = 192, .external_lex_state = 2}, + [2012] = {.lex_state = 27, .external_lex_state = 2}, + [2013] = {.lex_state = 192, .external_lex_state = 2}, + [2014] = {.lex_state = 27, .external_lex_state = 2}, + [2015] = {.lex_state = 27, .external_lex_state = 2}, + [2016] = {.lex_state = 192, .external_lex_state = 11}, + [2017] = {.lex_state = 192, .external_lex_state = 12}, + [2018] = {.lex_state = 192, .external_lex_state = 13}, + [2019] = {.lex_state = 192, .external_lex_state = 13}, + [2020] = {.lex_state = 27, .external_lex_state = 2}, + [2021] = {.lex_state = 192, .external_lex_state = 12}, + [2022] = {.lex_state = 192, .external_lex_state = 11}, + [2023] = {.lex_state = 192, .external_lex_state = 2}, + [2024] = {.lex_state = 192, .external_lex_state = 2}, + [2025] = {.lex_state = 192, .external_lex_state = 13}, + [2026] = {.lex_state = 27, .external_lex_state = 2}, + [2027] = {.lex_state = 192, .external_lex_state = 13}, + [2028] = {.lex_state = 192, .external_lex_state = 11}, + [2029] = {.lex_state = 192, .external_lex_state = 10}, + [2030] = {.lex_state = 192, .external_lex_state = 10}, + [2031] = {.lex_state = 192, .external_lex_state = 10}, + [2032] = {.lex_state = 192, .external_lex_state = 10}, + [2033] = {.lex_state = 192, .external_lex_state = 10}, + [2034] = {.lex_state = 192, .external_lex_state = 13}, + [2035] = {.lex_state = 192, .external_lex_state = 13}, + [2036] = {.lex_state = 192, .external_lex_state = 13}, + [2037] = {.lex_state = 192, .external_lex_state = 12}, + [2038] = {.lex_state = 192, .external_lex_state = 12}, + [2039] = {.lex_state = 192, .external_lex_state = 12}, + [2040] = {.lex_state = 192, .external_lex_state = 13}, + [2041] = {.lex_state = 192, .external_lex_state = 10}, + [2042] = {.lex_state = 192, .external_lex_state = 12}, + [2043] = {.lex_state = 192, .external_lex_state = 12}, + [2044] = {.lex_state = 192, .external_lex_state = 12}, + [2045] = {.lex_state = 192, .external_lex_state = 10}, + [2046] = {.lex_state = 27, .external_lex_state = 2}, + [2047] = {.lex_state = 22, .external_lex_state = 2}, + [2048] = {.lex_state = 192, .external_lex_state = 11}, + [2049] = {.lex_state = 192, .external_lex_state = 14}, + [2050] = {.lex_state = 192, .external_lex_state = 13}, + [2051] = {.lex_state = 192, .external_lex_state = 13}, + [2052] = {.lex_state = 192, .external_lex_state = 14}, + [2053] = {.lex_state = 192, .external_lex_state = 10}, + [2054] = {.lex_state = 27, .external_lex_state = 2}, + [2055] = {.lex_state = 192, .external_lex_state = 10}, + [2056] = {.lex_state = 192, .external_lex_state = 13}, + [2057] = {.lex_state = 192, .external_lex_state = 13}, + [2058] = {.lex_state = 192, .external_lex_state = 13}, + [2059] = {.lex_state = 192, .external_lex_state = 12}, + [2060] = {.lex_state = 192, .external_lex_state = 13}, + [2061] = {.lex_state = 192, .external_lex_state = 13}, + [2062] = {.lex_state = 27, .external_lex_state = 2}, + [2063] = {.lex_state = 192, .external_lex_state = 12}, + [2064] = {.lex_state = 192, .external_lex_state = 13}, + [2065] = {.lex_state = 192, .external_lex_state = 11}, + [2066] = {.lex_state = 192, .external_lex_state = 13}, + [2067] = {.lex_state = 192, .external_lex_state = 2}, + [2068] = {.lex_state = 192, .external_lex_state = 12}, + [2069] = {.lex_state = 192, .external_lex_state = 2}, + [2070] = {.lex_state = 192, .external_lex_state = 2}, + [2071] = {.lex_state = 27, .external_lex_state = 2}, + [2072] = {.lex_state = 192, .external_lex_state = 11}, + [2073] = {.lex_state = 192, .external_lex_state = 2}, + [2074] = {.lex_state = 192, .external_lex_state = 10}, + [2075] = {.lex_state = 192, .external_lex_state = 11}, + [2076] = {.lex_state = 192, .external_lex_state = 12}, + [2077] = {.lex_state = 192, .external_lex_state = 12}, + [2078] = {.lex_state = 192, .external_lex_state = 12}, + [2079] = {.lex_state = 192, .external_lex_state = 13}, + [2080] = {.lex_state = 27, .external_lex_state = 2}, + [2081] = {.lex_state = 27, .external_lex_state = 2}, + [2082] = {.lex_state = 192, .external_lex_state = 13}, + [2083] = {.lex_state = 192, .external_lex_state = 11}, + [2084] = {.lex_state = 192, .external_lex_state = 13}, + [2085] = {.lex_state = 192, .external_lex_state = 13}, + [2086] = {.lex_state = 192, .external_lex_state = 2}, + [2087] = {.lex_state = 192, .external_lex_state = 11}, + [2088] = {.lex_state = 192, .external_lex_state = 13}, + [2089] = {.lex_state = 192, .external_lex_state = 13}, + [2090] = {.lex_state = 192, .external_lex_state = 13}, + [2091] = {.lex_state = 192, .external_lex_state = 11}, + [2092] = {.lex_state = 192, .external_lex_state = 13}, + [2093] = {.lex_state = 192, .external_lex_state = 12}, + [2094] = {.lex_state = 192, .external_lex_state = 11}, + [2095] = {.lex_state = 192, .external_lex_state = 13}, + [2096] = {.lex_state = 192, .external_lex_state = 13}, + [2097] = {.lex_state = 192, .external_lex_state = 10}, + [2098] = {.lex_state = 17, .external_lex_state = 11}, + [2099] = {.lex_state = 52, .external_lex_state = 2}, + [2100] = {.lex_state = 192, .external_lex_state = 13}, + [2101] = {.lex_state = 192, .external_lex_state = 11}, + [2102] = {.lex_state = 27, .external_lex_state = 2}, + [2103] = {.lex_state = 192, .external_lex_state = 12}, + [2104] = {.lex_state = 27, .external_lex_state = 2}, + [2105] = {.lex_state = 192, .external_lex_state = 2}, + [2106] = {.lex_state = 192, .external_lex_state = 12}, + [2107] = {.lex_state = 27, .external_lex_state = 2}, + [2108] = {.lex_state = 22, .external_lex_state = 2}, + [2109] = {.lex_state = 192, .external_lex_state = 13}, + [2110] = {.lex_state = 192, .external_lex_state = 2}, + [2111] = {.lex_state = 192, .external_lex_state = 2}, + [2112] = {.lex_state = 192, .external_lex_state = 10}, + [2113] = {.lex_state = 192, .external_lex_state = 11}, + [2114] = {.lex_state = 17, .external_lex_state = 11}, + [2115] = {.lex_state = 192, .external_lex_state = 2}, + [2116] = {.lex_state = 192, .external_lex_state = 13}, + [2117] = {.lex_state = 192, .external_lex_state = 12}, + [2118] = {.lex_state = 192, .external_lex_state = 13}, + [2119] = {.lex_state = 192, .external_lex_state = 12}, + [2120] = {.lex_state = 192, .external_lex_state = 12}, + [2121] = {.lex_state = 192, .external_lex_state = 11}, + [2122] = {.lex_state = 192, .external_lex_state = 13}, + [2123] = {.lex_state = 192, .external_lex_state = 12}, + [2124] = {.lex_state = 192, .external_lex_state = 13}, + [2125] = {.lex_state = 27, .external_lex_state = 2}, + [2126] = {.lex_state = 192, .external_lex_state = 10}, + [2127] = {.lex_state = 192, .external_lex_state = 10}, + [2128] = {.lex_state = 192, .external_lex_state = 12}, + [2129] = {.lex_state = 192, .external_lex_state = 13}, + [2130] = {.lex_state = 192, .external_lex_state = 13}, + [2131] = {.lex_state = 192, .external_lex_state = 12}, + [2132] = {.lex_state = 192, .external_lex_state = 13}, + [2133] = {.lex_state = 27, .external_lex_state = 2}, + [2134] = {.lex_state = 192, .external_lex_state = 13}, + [2135] = {.lex_state = 192, .external_lex_state = 11}, + [2136] = {.lex_state = 192, .external_lex_state = 13}, + [2137] = {.lex_state = 192, .external_lex_state = 12}, + [2138] = {.lex_state = 192, .external_lex_state = 12}, + [2139] = {.lex_state = 17, .external_lex_state = 11}, + [2140] = {.lex_state = 192, .external_lex_state = 12}, + [2141] = {.lex_state = 192, .external_lex_state = 12}, + [2142] = {.lex_state = 17, .external_lex_state = 11}, + [2143] = {.lex_state = 192, .external_lex_state = 2}, + [2144] = {.lex_state = 192, .external_lex_state = 11}, + [2145] = {.lex_state = 192, .external_lex_state = 13}, + [2146] = {.lex_state = 192, .external_lex_state = 13}, + [2147] = {.lex_state = 192, .external_lex_state = 13}, + [2148] = {.lex_state = 192, .external_lex_state = 2}, + [2149] = {.lex_state = 52, .external_lex_state = 2}, + [2150] = {.lex_state = 192, .external_lex_state = 11}, + [2151] = {.lex_state = 192, .external_lex_state = 2}, + [2152] = {.lex_state = 192, .external_lex_state = 2}, + [2153] = {.lex_state = 192, .external_lex_state = 2}, + [2154] = {.lex_state = 192, .external_lex_state = 13}, + [2155] = {.lex_state = 192, .external_lex_state = 12}, + [2156] = {.lex_state = 192, .external_lex_state = 12}, + [2157] = {.lex_state = 192, .external_lex_state = 13}, + [2158] = {.lex_state = 192, .external_lex_state = 10}, + [2159] = {.lex_state = 192, .external_lex_state = 10}, + [2160] = {.lex_state = 192, .external_lex_state = 13}, + [2161] = {.lex_state = 27, .external_lex_state = 10}, + [2162] = {.lex_state = 27, .external_lex_state = 10}, + [2163] = {.lex_state = 192, .external_lex_state = 10}, + [2164] = {.lex_state = 192, .external_lex_state = 12}, + [2165] = {.lex_state = 192, .external_lex_state = 13}, + [2166] = {.lex_state = 192, .external_lex_state = 12}, + [2167] = {.lex_state = 192, .external_lex_state = 13}, + [2168] = {.lex_state = 192, .external_lex_state = 10}, + [2169] = {.lex_state = 192, .external_lex_state = 13}, + [2170] = {.lex_state = 192, .external_lex_state = 11}, + [2171] = {.lex_state = 192, .external_lex_state = 12}, + [2172] = {.lex_state = 192, .external_lex_state = 12}, + [2173] = {.lex_state = 192, .external_lex_state = 13}, + [2174] = {.lex_state = 27, .external_lex_state = 13}, + [2175] = {.lex_state = 192, .external_lex_state = 2}, + [2176] = {.lex_state = 27, .external_lex_state = 10}, + [2177] = {.lex_state = 27, .external_lex_state = 2}, + [2178] = {.lex_state = 192, .external_lex_state = 12}, + [2179] = {.lex_state = 192, .external_lex_state = 2}, + [2180] = {.lex_state = 17, .external_lex_state = 11}, + [2181] = {.lex_state = 192, .external_lex_state = 11}, + [2182] = {.lex_state = 192, .external_lex_state = 11}, + [2183] = {.lex_state = 192, .external_lex_state = 10}, + [2184] = {.lex_state = 17, .external_lex_state = 11}, + [2185] = {.lex_state = 17, .external_lex_state = 11}, + [2186] = {.lex_state = 192, .external_lex_state = 12}, + [2187] = {.lex_state = 192, .external_lex_state = 13}, + [2188] = {.lex_state = 192, .external_lex_state = 11}, + [2189] = {.lex_state = 192, .external_lex_state = 13}, + [2190] = {.lex_state = 192, .external_lex_state = 13}, + [2191] = {.lex_state = 192, .external_lex_state = 13}, + [2192] = {.lex_state = 192, .external_lex_state = 10}, + [2193] = {.lex_state = 192, .external_lex_state = 2}, + [2194] = {.lex_state = 192, .external_lex_state = 13}, + [2195] = {.lex_state = 17, .external_lex_state = 11}, + [2196] = {.lex_state = 192, .external_lex_state = 11}, + [2197] = {.lex_state = 192, .external_lex_state = 12}, + [2198] = {.lex_state = 192, .external_lex_state = 12}, + [2199] = {.lex_state = 192, .external_lex_state = 12}, + [2200] = {.lex_state = 192, .external_lex_state = 13}, + [2201] = {.lex_state = 192, .external_lex_state = 13}, + [2202] = {.lex_state = 27, .external_lex_state = 2}, + [2203] = {.lex_state = 192, .external_lex_state = 13}, + [2204] = {.lex_state = 192, .external_lex_state = 12}, + [2205] = {.lex_state = 65, .external_lex_state = 2}, + [2206] = {.lex_state = 192, .external_lex_state = 10}, + [2207] = {.lex_state = 17, .external_lex_state = 11}, + [2208] = {.lex_state = 192, .external_lex_state = 13}, + [2209] = {.lex_state = 192, .external_lex_state = 14}, + [2210] = {.lex_state = 192, .external_lex_state = 2}, + [2211] = {.lex_state = 192, .external_lex_state = 13}, + [2212] = {.lex_state = 192, .external_lex_state = 13}, + [2213] = {.lex_state = 192, .external_lex_state = 10}, + [2214] = {.lex_state = 192, .external_lex_state = 12}, + [2215] = {.lex_state = 192, .external_lex_state = 13}, + [2216] = {.lex_state = 192, .external_lex_state = 12}, + [2217] = {.lex_state = 192, .external_lex_state = 13}, + [2218] = {.lex_state = 192, .external_lex_state = 11}, + [2219] = {.lex_state = 27, .external_lex_state = 10}, + [2220] = {.lex_state = 192, .external_lex_state = 13}, + [2221] = {.lex_state = 192, .external_lex_state = 13}, + [2222] = {.lex_state = 192, .external_lex_state = 13}, + [2223] = {.lex_state = 192, .external_lex_state = 12}, + [2224] = {.lex_state = 192, .external_lex_state = 13}, + [2225] = {.lex_state = 192, .external_lex_state = 2}, + [2226] = {.lex_state = 192, .external_lex_state = 13}, + [2227] = {.lex_state = 192, .external_lex_state = 11}, + [2228] = {.lex_state = 192, .external_lex_state = 13}, + [2229] = {.lex_state = 192, .external_lex_state = 12}, + [2230] = {.lex_state = 192, .external_lex_state = 13}, + [2231] = {.lex_state = 192, .external_lex_state = 12}, + [2232] = {.lex_state = 39, .external_lex_state = 2}, + [2233] = {.lex_state = 192, .external_lex_state = 2}, [2234] = {.lex_state = 1, .external_lex_state = 2}, - [2235] = {.lex_state = 194, .external_lex_state = 13}, - [2236] = {.lex_state = 1, .external_lex_state = 2}, - [2237] = {.lex_state = 194, .external_lex_state = 13}, - [2238] = {.lex_state = 194, .external_lex_state = 2}, - [2239] = {.lex_state = 194, .external_lex_state = 10}, - [2240] = {.lex_state = 1, .external_lex_state = 2}, - [2241] = {.lex_state = 194, .external_lex_state = 2}, - [2242] = {.lex_state = 1, .external_lex_state = 2}, - [2243] = {.lex_state = 1, .external_lex_state = 2}, - [2244] = {.lex_state = 194, .external_lex_state = 13}, - [2245] = {.lex_state = 194, .external_lex_state = 13}, - [2246] = {.lex_state = 194, .external_lex_state = 2}, - [2247] = {.lex_state = 1, .external_lex_state = 2}, - [2248] = {.lex_state = 24, .external_lex_state = 2}, - [2249] = {.lex_state = 194, .external_lex_state = 10}, - [2250] = {.lex_state = 194, .external_lex_state = 13}, - [2251] = {.lex_state = 194, .external_lex_state = 13}, - [2252] = {.lex_state = 194, .external_lex_state = 13}, - [2253] = {.lex_state = 194, .external_lex_state = 10}, - [2254] = {.lex_state = 1, .external_lex_state = 2}, - [2255] = {.lex_state = 49, .external_lex_state = 2}, - [2256] = {.lex_state = 194, .external_lex_state = 2}, - [2257] = {.lex_state = 194, .external_lex_state = 2}, - [2258] = {.lex_state = 36, .external_lex_state = 11}, - [2259] = {.lex_state = 194, .external_lex_state = 13}, - [2260] = {.lex_state = 1, .external_lex_state = 2}, - [2261] = {.lex_state = 194, .external_lex_state = 13}, - [2262] = {.lex_state = 36, .external_lex_state = 11}, - [2263] = {.lex_state = 1, .external_lex_state = 2}, - [2264] = {.lex_state = 194, .external_lex_state = 13}, - [2265] = {.lex_state = 194, .external_lex_state = 13}, - [2266] = {.lex_state = 194, .external_lex_state = 11}, - [2267] = {.lex_state = 194, .external_lex_state = 13}, - [2268] = {.lex_state = 1, .external_lex_state = 2}, - [2269] = {.lex_state = 194, .external_lex_state = 2}, - [2270] = {.lex_state = 194, .external_lex_state = 10}, - [2271] = {.lex_state = 1, .external_lex_state = 2}, - [2272] = {.lex_state = 194, .external_lex_state = 10}, - [2273] = {.lex_state = 194, .external_lex_state = 13}, - [2274] = {.lex_state = 194, .external_lex_state = 12}, - [2275] = {.lex_state = 194, .external_lex_state = 12}, - [2276] = {.lex_state = 194, .external_lex_state = 12}, - [2277] = {.lex_state = 194, .external_lex_state = 12}, - [2278] = {.lex_state = 36, .external_lex_state = 11}, - [2279] = {.lex_state = 194, .external_lex_state = 2}, - [2280] = {.lex_state = 194, .external_lex_state = 2}, - [2281] = {.lex_state = 36, .external_lex_state = 2}, - [2282] = {.lex_state = 194, .external_lex_state = 2}, - [2283] = {.lex_state = 194, .external_lex_state = 2}, - [2284] = {.lex_state = 194, .external_lex_state = 12}, - [2285] = {.lex_state = 63, .external_lex_state = 2}, - [2286] = {.lex_state = 36, .external_lex_state = 2}, - [2287] = {.lex_state = 194, .external_lex_state = 11}, - [2288] = {.lex_state = 194, .external_lex_state = 11}, - [2289] = {.lex_state = 194, .external_lex_state = 11}, - [2290] = {.lex_state = 194, .external_lex_state = 13}, - [2291] = {.lex_state = 194, .external_lex_state = 13}, - [2292] = {.lex_state = 194, .external_lex_state = 10}, - [2293] = {.lex_state = 36, .external_lex_state = 11}, - [2294] = {.lex_state = 0, .external_lex_state = 14}, + [2235] = {.lex_state = 1, .external_lex_state = 2}, + [2236] = {.lex_state = 39, .external_lex_state = 11}, + [2237] = {.lex_state = 192, .external_lex_state = 12}, + [2238] = {.lex_state = 1, .external_lex_state = 2}, + [2239] = {.lex_state = 1, .external_lex_state = 2}, + [2240] = {.lex_state = 192, .external_lex_state = 13}, + [2241] = {.lex_state = 192, .external_lex_state = 13}, + [2242] = {.lex_state = 192, .external_lex_state = 10}, + [2243] = {.lex_state = 192, .external_lex_state = 13}, + [2244] = {.lex_state = 192, .external_lex_state = 10}, + [2245] = {.lex_state = 192, .external_lex_state = 10}, + [2246] = {.lex_state = 192, .external_lex_state = 2}, + [2247] = {.lex_state = 192, .external_lex_state = 10}, + [2248] = {.lex_state = 1, .external_lex_state = 2}, + [2249] = {.lex_state = 1, .external_lex_state = 2}, + [2250] = {.lex_state = 192, .external_lex_state = 2}, + [2251] = {.lex_state = 1, .external_lex_state = 2}, + [2252] = {.lex_state = 1, .external_lex_state = 2}, + [2253] = {.lex_state = 192, .external_lex_state = 10}, + [2254] = {.lex_state = 52, .external_lex_state = 2}, + [2255] = {.lex_state = 27, .external_lex_state = 2}, + [2256] = {.lex_state = 1, .external_lex_state = 2}, + [2257] = {.lex_state = 39, .external_lex_state = 11}, + [2258] = {.lex_state = 1, .external_lex_state = 2}, + [2259] = {.lex_state = 192, .external_lex_state = 10}, + [2260] = {.lex_state = 192, .external_lex_state = 13}, + [2261] = {.lex_state = 192, .external_lex_state = 13}, + [2262] = {.lex_state = 192, .external_lex_state = 13}, + [2263] = {.lex_state = 192, .external_lex_state = 2}, + [2264] = {.lex_state = 39, .external_lex_state = 11}, + [2265] = {.lex_state = 0, .external_lex_state = 14}, + [2266] = {.lex_state = 1, .external_lex_state = 2}, + [2267] = {.lex_state = 192, .external_lex_state = 2}, + [2268] = {.lex_state = 39, .external_lex_state = 11}, + [2269] = {.lex_state = 192, .external_lex_state = 2}, + [2270] = {.lex_state = 192, .external_lex_state = 2}, + [2271] = {.lex_state = 192, .external_lex_state = 13}, + [2272] = {.lex_state = 192, .external_lex_state = 11}, + [2273] = {.lex_state = 1, .external_lex_state = 2}, + [2274] = {.lex_state = 192, .external_lex_state = 12}, + [2275] = {.lex_state = 11, .external_lex_state = 2}, + [2276] = {.lex_state = 1, .external_lex_state = 2}, + [2277] = {.lex_state = 1, .external_lex_state = 2}, + [2278] = {.lex_state = 192, .external_lex_state = 13}, + [2279] = {.lex_state = 192, .external_lex_state = 12}, + [2280] = {.lex_state = 192, .external_lex_state = 2}, + [2281] = {.lex_state = 192, .external_lex_state = 12}, + [2282] = {.lex_state = 39, .external_lex_state = 11}, + [2283] = {.lex_state = 1, .external_lex_state = 2}, + [2284] = {.lex_state = 192, .external_lex_state = 12}, + [2285] = {.lex_state = 52, .external_lex_state = 2}, + [2286] = {.lex_state = 192, .external_lex_state = 13}, + [2287] = {.lex_state = 52, .external_lex_state = 2}, + [2288] = {.lex_state = 1, .external_lex_state = 2}, + [2289] = {.lex_state = 39, .external_lex_state = 2}, + [2290] = {.lex_state = 192, .external_lex_state = 2}, + [2291] = {.lex_state = 52, .external_lex_state = 2}, + [2292] = {.lex_state = 1, .external_lex_state = 2}, + [2293] = {.lex_state = 192, .external_lex_state = 2}, + [2294] = {.lex_state = 192, .external_lex_state = 12}, [2295] = {.lex_state = 1, .external_lex_state = 2}, - [2296] = {.lex_state = 0, .external_lex_state = 14}, + [2296] = {.lex_state = 11, .external_lex_state = 2}, [2297] = {.lex_state = 1, .external_lex_state = 2}, - [2298] = {.lex_state = 1, .external_lex_state = 2}, - [2299] = {.lex_state = 1, .external_lex_state = 2}, - [2300] = {.lex_state = 68, .external_lex_state = 2}, - [2301] = {.lex_state = 1, .external_lex_state = 2}, - [2302] = {.lex_state = 49, .external_lex_state = 2}, + [2298] = {.lex_state = 192, .external_lex_state = 13}, + [2299] = {.lex_state = 192, .external_lex_state = 11}, + [2300] = {.lex_state = 192, .external_lex_state = 11}, + [2301] = {.lex_state = 192, .external_lex_state = 13}, + [2302] = {.lex_state = 192, .external_lex_state = 13}, [2303] = {.lex_state = 1, .external_lex_state = 2}, - [2304] = {.lex_state = 194, .external_lex_state = 12}, - [2305] = {.lex_state = 1, .external_lex_state = 2}, - [2306] = {.lex_state = 1, .external_lex_state = 2}, + [2304] = {.lex_state = 1, .external_lex_state = 2}, + [2305] = {.lex_state = 192, .external_lex_state = 11}, + [2306] = {.lex_state = 11, .external_lex_state = 2}, [2307] = {.lex_state = 1, .external_lex_state = 2}, - [2308] = {.lex_state = 1, .external_lex_state = 2}, - [2309] = {.lex_state = 49, .external_lex_state = 2}, - [2310] = {.lex_state = 194, .external_lex_state = 12}, - [2311] = {.lex_state = 36, .external_lex_state = 11}, - [2312] = {.lex_state = 194, .external_lex_state = 10}, - [2313] = {.lex_state = 1, .external_lex_state = 2}, + [2308] = {.lex_state = 192, .external_lex_state = 2}, + [2309] = {.lex_state = 192, .external_lex_state = 12}, + [2310] = {.lex_state = 192, .external_lex_state = 13}, + [2311] = {.lex_state = 1, .external_lex_state = 2}, + [2312] = {.lex_state = 39, .external_lex_state = 2}, + [2313] = {.lex_state = 39, .external_lex_state = 11}, [2314] = {.lex_state = 1, .external_lex_state = 2}, [2315] = {.lex_state = 1, .external_lex_state = 2}, - [2316] = {.lex_state = 1, .external_lex_state = 2}, - [2317] = {.lex_state = 36, .external_lex_state = 2}, - [2318] = {.lex_state = 194, .external_lex_state = 10}, - [2319] = {.lex_state = 194, .external_lex_state = 12}, - [2320] = {.lex_state = 194, .external_lex_state = 10}, - [2321] = {.lex_state = 194, .external_lex_state = 2}, - [2322] = {.lex_state = 194, .external_lex_state = 10}, - [2323] = {.lex_state = 194, .external_lex_state = 10}, - [2324] = {.lex_state = 49, .external_lex_state = 2}, - [2325] = {.lex_state = 68, .external_lex_state = 2}, - [2326] = {.lex_state = 194, .external_lex_state = 10}, - [2327] = {.lex_state = 194, .external_lex_state = 10}, - [2328] = {.lex_state = 194, .external_lex_state = 10}, - [2329] = {.lex_state = 194, .external_lex_state = 10}, - [2330] = {.lex_state = 194, .external_lex_state = 10}, - [2331] = {.lex_state = 194, .external_lex_state = 10}, - [2332] = {.lex_state = 36, .external_lex_state = 11}, - [2333] = {.lex_state = 194, .external_lex_state = 10}, - [2334] = {.lex_state = 1, .external_lex_state = 2}, - [2335] = {.lex_state = 36, .external_lex_state = 2}, - [2336] = {.lex_state = 1, .external_lex_state = 2}, - [2337] = {.lex_state = 36, .external_lex_state = 2}, - [2338] = {.lex_state = 36, .external_lex_state = 2}, + [2316] = {.lex_state = 192, .external_lex_state = 12}, + [2317] = {.lex_state = 192, .external_lex_state = 13}, + [2318] = {.lex_state = 192, .external_lex_state = 10}, + [2319] = {.lex_state = 192, .external_lex_state = 10}, + [2320] = {.lex_state = 192, .external_lex_state = 10}, + [2321] = {.lex_state = 192, .external_lex_state = 10}, + [2322] = {.lex_state = 192, .external_lex_state = 10}, + [2323] = {.lex_state = 1, .external_lex_state = 2}, + [2324] = {.lex_state = 1, .external_lex_state = 2}, + [2325] = {.lex_state = 192, .external_lex_state = 10}, + [2326] = {.lex_state = 1, .external_lex_state = 2}, + [2327] = {.lex_state = 192, .external_lex_state = 10}, + [2328] = {.lex_state = 192, .external_lex_state = 10}, + [2329] = {.lex_state = 1, .external_lex_state = 2}, + [2330] = {.lex_state = 192, .external_lex_state = 13}, + [2331] = {.lex_state = 192, .external_lex_state = 10}, + [2332] = {.lex_state = 0, .external_lex_state = 14}, + [2333] = {.lex_state = 39, .external_lex_state = 11}, + [2334] = {.lex_state = 192, .external_lex_state = 10}, + [2335] = {.lex_state = 192, .external_lex_state = 10}, + [2336] = {.lex_state = 39, .external_lex_state = 11}, + [2337] = {.lex_state = 192, .external_lex_state = 10}, + [2338] = {.lex_state = 39, .external_lex_state = 2}, [2339] = {.lex_state = 1, .external_lex_state = 2}, - [2340] = {.lex_state = 68, .external_lex_state = 2}, - [2341] = {.lex_state = 1, .external_lex_state = 2}, - [2342] = {.lex_state = 1, .external_lex_state = 2}, + [2340] = {.lex_state = 39, .external_lex_state = 2}, + [2341] = {.lex_state = 66, .external_lex_state = 2}, + [2342] = {.lex_state = 39, .external_lex_state = 2}, [2343] = {.lex_state = 1, .external_lex_state = 2}, - [2344] = {.lex_state = 0, .external_lex_state = 11}, - [2345] = {.lex_state = 194, .external_lex_state = 12}, - [2346] = {.lex_state = 49, .external_lex_state = 2}, - [2347] = {.lex_state = 194, .external_lex_state = 13}, - [2348] = {.lex_state = 0, .external_lex_state = 11}, - [2349] = {.lex_state = 0, .external_lex_state = 11}, - [2350] = {.lex_state = 0, .external_lex_state = 11}, - [2351] = {.lex_state = 0, .external_lex_state = 11}, - [2352] = {.lex_state = 0, .external_lex_state = 2}, - [2353] = {.lex_state = 194, .external_lex_state = 2}, - [2354] = {.lex_state = 49, .external_lex_state = 2}, - [2355] = {.lex_state = 49, .external_lex_state = 2}, - [2356] = {.lex_state = 24, .external_lex_state = 2}, - [2357] = {.lex_state = 194, .external_lex_state = 13}, - [2358] = {.lex_state = 36, .external_lex_state = 2}, - [2359] = {.lex_state = 194, .external_lex_state = 12}, - [2360] = {.lex_state = 194, .external_lex_state = 13}, - [2361] = {.lex_state = 38, .external_lex_state = 2}, + [2344] = {.lex_state = 1, .external_lex_state = 2}, + [2345] = {.lex_state = 1, .external_lex_state = 2}, + [2346] = {.lex_state = 192, .external_lex_state = 2}, + [2347] = {.lex_state = 192, .external_lex_state = 12}, + [2348] = {.lex_state = 1, .external_lex_state = 2}, + [2349] = {.lex_state = 192, .external_lex_state = 13}, + [2350] = {.lex_state = 52, .external_lex_state = 2}, + [2351] = {.lex_state = 192, .external_lex_state = 13}, + [2352] = {.lex_state = 0, .external_lex_state = 11}, + [2353] = {.lex_state = 0, .external_lex_state = 11}, + [2354] = {.lex_state = 0, .external_lex_state = 11}, + [2355] = {.lex_state = 0, .external_lex_state = 11}, + [2356] = {.lex_state = 0, .external_lex_state = 2}, + [2357] = {.lex_state = 192, .external_lex_state = 2}, + [2358] = {.lex_state = 192, .external_lex_state = 13}, + [2359] = {.lex_state = 52, .external_lex_state = 2}, + [2360] = {.lex_state = 27, .external_lex_state = 2}, + [2361] = {.lex_state = 39, .external_lex_state = 2}, [2362] = {.lex_state = 0, .external_lex_state = 2}, - [2363] = {.lex_state = 0, .external_lex_state = 11}, - [2364] = {.lex_state = 0, .external_lex_state = 11}, - [2365] = {.lex_state = 194, .external_lex_state = 12}, - [2366] = {.lex_state = 49, .external_lex_state = 2}, - [2367] = {.lex_state = 194, .external_lex_state = 13}, - [2368] = {.lex_state = 194, .external_lex_state = 13}, - [2369] = {.lex_state = 0, .external_lex_state = 11}, - [2370] = {.lex_state = 0, .external_lex_state = 11}, - [2371] = {.lex_state = 194, .external_lex_state = 13}, - [2372] = {.lex_state = 194, .external_lex_state = 12}, - [2373] = {.lex_state = 194, .external_lex_state = 13}, - [2374] = {.lex_state = 36, .external_lex_state = 2}, - [2375] = {.lex_state = 24, .external_lex_state = 2}, - [2376] = {.lex_state = 49, .external_lex_state = 2}, - [2377] = {.lex_state = 194, .external_lex_state = 2}, - [2378] = {.lex_state = 0, .external_lex_state = 11}, - [2379] = {.lex_state = 0, .external_lex_state = 11}, - [2380] = {.lex_state = 194, .external_lex_state = 13}, - [2381] = {.lex_state = 194, .external_lex_state = 12}, - [2382] = {.lex_state = 194, .external_lex_state = 12}, - [2383] = {.lex_state = 38, .external_lex_state = 2}, + [2363] = {.lex_state = 192, .external_lex_state = 12}, + [2364] = {.lex_state = 192, .external_lex_state = 13}, + [2365] = {.lex_state = 41, .external_lex_state = 2}, + [2366] = {.lex_state = 52, .external_lex_state = 2}, + [2367] = {.lex_state = 0, .external_lex_state = 11}, + [2368] = {.lex_state = 0, .external_lex_state = 11}, + [2369] = {.lex_state = 192, .external_lex_state = 12}, + [2370] = {.lex_state = 27, .external_lex_state = 2}, + [2371] = {.lex_state = 192, .external_lex_state = 13}, + [2372] = {.lex_state = 192, .external_lex_state = 13}, + [2373] = {.lex_state = 52, .external_lex_state = 2}, + [2374] = {.lex_state = 192, .external_lex_state = 13}, + [2375] = {.lex_state = 0, .external_lex_state = 11}, + [2376] = {.lex_state = 0, .external_lex_state = 11}, + [2377] = {.lex_state = 192, .external_lex_state = 13}, + [2378] = {.lex_state = 192, .external_lex_state = 12}, + [2379] = {.lex_state = 39, .external_lex_state = 2}, + [2380] = {.lex_state = 27, .external_lex_state = 2}, + [2381] = {.lex_state = 52, .external_lex_state = 2}, + [2382] = {.lex_state = 192, .external_lex_state = 2}, + [2383] = {.lex_state = 0, .external_lex_state = 11}, [2384] = {.lex_state = 0, .external_lex_state = 11}, - [2385] = {.lex_state = 0, .external_lex_state = 11}, - [2386] = {.lex_state = 24, .external_lex_state = 2}, - [2387] = {.lex_state = 0, .external_lex_state = 11}, - [2388] = {.lex_state = 194, .external_lex_state = 13}, - [2389] = {.lex_state = 194, .external_lex_state = 13}, - [2390] = {.lex_state = 194, .external_lex_state = 13}, - [2391] = {.lex_state = 0, .external_lex_state = 11}, - [2392] = {.lex_state = 0, .external_lex_state = 11}, - [2393] = {.lex_state = 0, .external_lex_state = 11}, + [2385] = {.lex_state = 192, .external_lex_state = 13}, + [2386] = {.lex_state = 192, .external_lex_state = 12}, + [2387] = {.lex_state = 192, .external_lex_state = 12}, + [2388] = {.lex_state = 41, .external_lex_state = 2}, + [2389] = {.lex_state = 0, .external_lex_state = 11}, + [2390] = {.lex_state = 0, .external_lex_state = 11}, + [2391] = {.lex_state = 192, .external_lex_state = 13}, + [2392] = {.lex_state = 192, .external_lex_state = 2}, + [2393] = {.lex_state = 192, .external_lex_state = 12}, [2394] = {.lex_state = 0, .external_lex_state = 11}, - [2395] = {.lex_state = 194, .external_lex_state = 13}, - [2396] = {.lex_state = 38, .external_lex_state = 2}, - [2397] = {.lex_state = 194, .external_lex_state = 13}, - [2398] = {.lex_state = 194, .external_lex_state = 12}, - [2399] = {.lex_state = 194, .external_lex_state = 12}, - [2400] = {.lex_state = 194, .external_lex_state = 13}, - [2401] = {.lex_state = 194, .external_lex_state = 12}, - [2402] = {.lex_state = 0, .external_lex_state = 11}, - [2403] = {.lex_state = 0, .external_lex_state = 11}, - [2404] = {.lex_state = 24, .external_lex_state = 2}, - [2405] = {.lex_state = 49, .external_lex_state = 2}, - [2406] = {.lex_state = 194, .external_lex_state = 2}, - [2407] = {.lex_state = 24, .external_lex_state = 2}, - [2408] = {.lex_state = 49, .external_lex_state = 2}, - [2409] = {.lex_state = 24, .external_lex_state = 2}, - [2410] = {.lex_state = 194, .external_lex_state = 2}, - [2411] = {.lex_state = 0, .external_lex_state = 11}, - [2412] = {.lex_state = 194, .external_lex_state = 12}, - [2413] = {.lex_state = 194, .external_lex_state = 13}, - [2414] = {.lex_state = 0, .external_lex_state = 11}, - [2415] = {.lex_state = 194, .external_lex_state = 13}, - [2416] = {.lex_state = 0, .external_lex_state = 11}, + [2395] = {.lex_state = 192, .external_lex_state = 13}, + [2396] = {.lex_state = 0, .external_lex_state = 11}, + [2397] = {.lex_state = 0, .external_lex_state = 11}, + [2398] = {.lex_state = 192, .external_lex_state = 13}, + [2399] = {.lex_state = 0, .external_lex_state = 11}, + [2400] = {.lex_state = 192, .external_lex_state = 13}, + [2401] = {.lex_state = 0, .external_lex_state = 11}, + [2402] = {.lex_state = 41, .external_lex_state = 2}, + [2403] = {.lex_state = 192, .external_lex_state = 12}, + [2404] = {.lex_state = 192, .external_lex_state = 12}, + [2405] = {.lex_state = 192, .external_lex_state = 13}, + [2406] = {.lex_state = 192, .external_lex_state = 13}, + [2407] = {.lex_state = 27, .external_lex_state = 2}, + [2408] = {.lex_state = 0, .external_lex_state = 11}, + [2409] = {.lex_state = 0, .external_lex_state = 11}, + [2410] = {.lex_state = 192, .external_lex_state = 12}, + [2411] = {.lex_state = 27, .external_lex_state = 2}, + [2412] = {.lex_state = 192, .external_lex_state = 2}, + [2413] = {.lex_state = 52, .external_lex_state = 2}, + [2414] = {.lex_state = 52, .external_lex_state = 2}, + [2415] = {.lex_state = 27, .external_lex_state = 2}, + [2416] = {.lex_state = 192, .external_lex_state = 2}, [2417] = {.lex_state = 0, .external_lex_state = 11}, - [2418] = {.lex_state = 194, .external_lex_state = 12}, - [2419] = {.lex_state = 38, .external_lex_state = 2}, + [2418] = {.lex_state = 192, .external_lex_state = 12}, + [2419] = {.lex_state = 192, .external_lex_state = 13}, [2420] = {.lex_state = 0, .external_lex_state = 11}, - [2421] = {.lex_state = 194, .external_lex_state = 13}, + [2421] = {.lex_state = 192, .external_lex_state = 13}, [2422] = {.lex_state = 0, .external_lex_state = 11}, - [2423] = {.lex_state = 0, .external_lex_state = 2}, - [2424] = {.lex_state = 0, .external_lex_state = 11}, - [2425] = {.lex_state = 194, .external_lex_state = 2}, + [2423] = {.lex_state = 0, .external_lex_state = 11}, + [2424] = {.lex_state = 192, .external_lex_state = 12}, + [2425] = {.lex_state = 41, .external_lex_state = 2}, [2426] = {.lex_state = 0, .external_lex_state = 11}, - [2427] = {.lex_state = 49, .external_lex_state = 2}, - [2428] = {.lex_state = 24, .external_lex_state = 2}, - [2429] = {.lex_state = 194, .external_lex_state = 12}, - [2430] = {.lex_state = 49, .external_lex_state = 2}, - [2431] = {.lex_state = 194, .external_lex_state = 13}, - [2432] = {.lex_state = 194, .external_lex_state = 13}, - [2433] = {.lex_state = 0, .external_lex_state = 11}, - [2434] = {.lex_state = 0, .external_lex_state = 11}, - [2435] = {.lex_state = 194, .external_lex_state = 13}, - [2436] = {.lex_state = 194, .external_lex_state = 12}, - [2437] = {.lex_state = 24, .external_lex_state = 2}, - [2438] = {.lex_state = 49, .external_lex_state = 2}, - [2439] = {.lex_state = 194, .external_lex_state = 2}, - [2440] = {.lex_state = 194, .external_lex_state = 13}, - [2441] = {.lex_state = 0, .external_lex_state = 11}, - [2442] = {.lex_state = 194, .external_lex_state = 13}, - [2443] = {.lex_state = 0, .external_lex_state = 2}, - [2444] = {.lex_state = 194, .external_lex_state = 2}, - [2445] = {.lex_state = 194, .external_lex_state = 13}, - [2446] = {.lex_state = 38, .external_lex_state = 2}, + [2427] = {.lex_state = 192, .external_lex_state = 13}, + [2428] = {.lex_state = 0, .external_lex_state = 11}, + [2429] = {.lex_state = 0, .external_lex_state = 2}, + [2430] = {.lex_state = 0, .external_lex_state = 11}, + [2431] = {.lex_state = 192, .external_lex_state = 2}, + [2432] = {.lex_state = 0, .external_lex_state = 11}, + [2433] = {.lex_state = 27, .external_lex_state = 2}, + [2434] = {.lex_state = 52, .external_lex_state = 2}, + [2435] = {.lex_state = 27, .external_lex_state = 2}, + [2436] = {.lex_state = 192, .external_lex_state = 2}, + [2437] = {.lex_state = 192, .external_lex_state = 12}, + [2438] = {.lex_state = 52, .external_lex_state = 2}, + [2439] = {.lex_state = 192, .external_lex_state = 13}, + [2440] = {.lex_state = 192, .external_lex_state = 2}, + [2441] = {.lex_state = 192, .external_lex_state = 2}, + [2442] = {.lex_state = 192, .external_lex_state = 13}, + [2443] = {.lex_state = 0, .external_lex_state = 11}, + [2444] = {.lex_state = 192, .external_lex_state = 13}, + [2445] = {.lex_state = 0, .external_lex_state = 11}, + [2446] = {.lex_state = 192, .external_lex_state = 13}, [2447] = {.lex_state = 0, .external_lex_state = 2}, - [2448] = {.lex_state = 194, .external_lex_state = 2}, - [2449] = {.lex_state = 49, .external_lex_state = 2}, - [2450] = {.lex_state = 24, .external_lex_state = 2}, - [2451] = {.lex_state = 24, .external_lex_state = 2}, - [2452] = {.lex_state = 194, .external_lex_state = 13}, - [2453] = {.lex_state = 194, .external_lex_state = 12}, - [2454] = {.lex_state = 38, .external_lex_state = 2}, - [2455] = {.lex_state = 0, .external_lex_state = 11}, - [2456] = {.lex_state = 0, .external_lex_state = 11}, - [2457] = {.lex_state = 49, .external_lex_state = 2}, - [2458] = {.lex_state = 194, .external_lex_state = 2}, - [2459] = {.lex_state = 0, .external_lex_state = 11}, - [2460] = {.lex_state = 24, .external_lex_state = 2}, - [2461] = {.lex_state = 49, .external_lex_state = 2}, - [2462] = {.lex_state = 49, .external_lex_state = 2}, - [2463] = {.lex_state = 0, .external_lex_state = 11}, - [2464] = {.lex_state = 24, .external_lex_state = 2}, - [2465] = {.lex_state = 49, .external_lex_state = 2}, - [2466] = {.lex_state = 194, .external_lex_state = 12}, - [2467] = {.lex_state = 49, .external_lex_state = 2}, - [2468] = {.lex_state = 194, .external_lex_state = 2}, - [2469] = {.lex_state = 38, .external_lex_state = 2}, - [2470] = {.lex_state = 194, .external_lex_state = 2}, - [2471] = {.lex_state = 49, .external_lex_state = 2}, - [2472] = {.lex_state = 24, .external_lex_state = 2}, - [2473] = {.lex_state = 194, .external_lex_state = 2}, - [2474] = {.lex_state = 194, .external_lex_state = 13}, - [2475] = {.lex_state = 194, .external_lex_state = 13}, - [2476] = {.lex_state = 0, .external_lex_state = 11}, - [2477] = {.lex_state = 194, .external_lex_state = 13}, - [2478] = {.lex_state = 194, .external_lex_state = 12}, - [2479] = {.lex_state = 24, .external_lex_state = 2}, - [2480] = {.lex_state = 36, .external_lex_state = 2}, - [2481] = {.lex_state = 49, .external_lex_state = 2}, - [2482] = {.lex_state = 194, .external_lex_state = 2}, - [2483] = {.lex_state = 0, .external_lex_state = 11}, - [2484] = {.lex_state = 0, .external_lex_state = 11}, + [2448] = {.lex_state = 192, .external_lex_state = 2}, + [2449] = {.lex_state = 192, .external_lex_state = 13}, + [2450] = {.lex_state = 0, .external_lex_state = 2}, + [2451] = {.lex_state = 192, .external_lex_state = 13}, + [2452] = {.lex_state = 41, .external_lex_state = 2}, + [2453] = {.lex_state = 192, .external_lex_state = 12}, + [2454] = {.lex_state = 192, .external_lex_state = 2}, + [2455] = {.lex_state = 52, .external_lex_state = 2}, + [2456] = {.lex_state = 27, .external_lex_state = 2}, + [2457] = {.lex_state = 192, .external_lex_state = 12}, + [2458] = {.lex_state = 27, .external_lex_state = 2}, + [2459] = {.lex_state = 27, .external_lex_state = 2}, + [2460] = {.lex_state = 52, .external_lex_state = 2}, + [2461] = {.lex_state = 192, .external_lex_state = 2}, + [2462] = {.lex_state = 0, .external_lex_state = 11}, + [2463] = {.lex_state = 52, .external_lex_state = 2}, + [2464] = {.lex_state = 0, .external_lex_state = 11}, + [2465] = {.lex_state = 192, .external_lex_state = 13}, + [2466] = {.lex_state = 192, .external_lex_state = 12}, + [2467] = {.lex_state = 192, .external_lex_state = 13}, + [2468] = {.lex_state = 0, .external_lex_state = 11}, + [2469] = {.lex_state = 41, .external_lex_state = 2}, + [2470] = {.lex_state = 0, .external_lex_state = 11}, + [2471] = {.lex_state = 52, .external_lex_state = 2}, + [2472] = {.lex_state = 192, .external_lex_state = 2}, + [2473] = {.lex_state = 192, .external_lex_state = 2}, + [2474] = {.lex_state = 192, .external_lex_state = 2}, + [2475] = {.lex_state = 41, .external_lex_state = 2}, + [2476] = {.lex_state = 192, .external_lex_state = 2}, + [2477] = {.lex_state = 52, .external_lex_state = 2}, + [2478] = {.lex_state = 27, .external_lex_state = 2}, + [2479] = {.lex_state = 0, .external_lex_state = 11}, + [2480] = {.lex_state = 192, .external_lex_state = 2}, + [2481] = {.lex_state = 0, .external_lex_state = 11}, + [2482] = {.lex_state = 41, .external_lex_state = 2}, + [2483] = {.lex_state = 39, .external_lex_state = 2}, + [2484] = {.lex_state = 192, .external_lex_state = 2}, [2485] = {.lex_state = 0, .external_lex_state = 11}, - [2486] = {.lex_state = 194, .external_lex_state = 13}, - [2487] = {.lex_state = 0, .external_lex_state = 11}, - [2488] = {.lex_state = 194, .external_lex_state = 12}, - [2489] = {.lex_state = 194, .external_lex_state = 13}, - [2490] = {.lex_state = 194, .external_lex_state = 12}, - [2491] = {.lex_state = 0, .external_lex_state = 11}, - [2492] = {.lex_state = 0, .external_lex_state = 2}, - [2493] = {.lex_state = 0, .external_lex_state = 11}, - [2494] = {.lex_state = 194, .external_lex_state = 12}, - [2495] = {.lex_state = 194, .external_lex_state = 12}, + [2486] = {.lex_state = 192, .external_lex_state = 2}, + [2487] = {.lex_state = 192, .external_lex_state = 12}, + [2488] = {.lex_state = 0, .external_lex_state = 11}, + [2489] = {.lex_state = 0, .external_lex_state = 11}, + [2490] = {.lex_state = 192, .external_lex_state = 13}, + [2491] = {.lex_state = 27, .external_lex_state = 2}, + [2492] = {.lex_state = 192, .external_lex_state = 12}, + [2493] = {.lex_state = 52, .external_lex_state = 2}, + [2494] = {.lex_state = 192, .external_lex_state = 13}, + [2495] = {.lex_state = 0, .external_lex_state = 11}, [2496] = {.lex_state = 0, .external_lex_state = 2}, - [2497] = {.lex_state = 38, .external_lex_state = 2}, - [2498] = {.lex_state = 24, .external_lex_state = 2}, - [2499] = {.lex_state = 24, .external_lex_state = 2}, - [2500] = {.lex_state = 194, .external_lex_state = 2}, - [2501] = {.lex_state = 0, .external_lex_state = 2}, - [2502] = {.lex_state = 194, .external_lex_state = 2}, - [2503] = {.lex_state = 0, .external_lex_state = 2}, - [2504] = {.lex_state = 0, .external_lex_state = 2}, - [2505] = {.lex_state = 0, .external_lex_state = 11}, - [2506] = {.lex_state = 24, .external_lex_state = 2}, - [2507] = {.lex_state = 0, .external_lex_state = 11}, - [2508] = {.lex_state = 194, .external_lex_state = 13}, - [2509] = {.lex_state = 24, .external_lex_state = 2}, - [2510] = {.lex_state = 49, .external_lex_state = 2}, - [2511] = {.lex_state = 49, .external_lex_state = 2}, - [2512] = {.lex_state = 194, .external_lex_state = 2}, - [2513] = {.lex_state = 194, .external_lex_state = 2}, - [2514] = {.lex_state = 24, .external_lex_state = 2}, - [2515] = {.lex_state = 49, .external_lex_state = 2}, - [2516] = {.lex_state = 194, .external_lex_state = 13}, - [2517] = {.lex_state = 0, .external_lex_state = 11}, - [2518] = {.lex_state = 0, .external_lex_state = 11}, - [2519] = {.lex_state = 0, .external_lex_state = 11}, - [2520] = {.lex_state = 36, .external_lex_state = 2}, - [2521] = {.lex_state = 49, .external_lex_state = 2}, - [2522] = {.lex_state = 49, .external_lex_state = 2}, - [2523] = {.lex_state = 0, .external_lex_state = 11}, - [2524] = {.lex_state = 0, .external_lex_state = 11}, - [2525] = {.lex_state = 38, .external_lex_state = 2}, - [2526] = {.lex_state = 194, .external_lex_state = 2}, - [2527] = {.lex_state = 0, .external_lex_state = 11}, - [2528] = {.lex_state = 24, .external_lex_state = 2}, - [2529] = {.lex_state = 0, .external_lex_state = 11}, - [2530] = {.lex_state = 49, .external_lex_state = 2}, - [2531] = {.lex_state = 24, .external_lex_state = 2}, - [2532] = {.lex_state = 194, .external_lex_state = 2}, + [2497] = {.lex_state = 192, .external_lex_state = 12}, + [2498] = {.lex_state = 0, .external_lex_state = 11}, + [2499] = {.lex_state = 52, .external_lex_state = 2}, + [2500] = {.lex_state = 0, .external_lex_state = 11}, + [2501] = {.lex_state = 192, .external_lex_state = 12}, + [2502] = {.lex_state = 0, .external_lex_state = 2}, + [2503] = {.lex_state = 52, .external_lex_state = 2}, + [2504] = {.lex_state = 192, .external_lex_state = 2}, + [2505] = {.lex_state = 0, .external_lex_state = 2}, + [2506] = {.lex_state = 192, .external_lex_state = 2}, + [2507] = {.lex_state = 192, .external_lex_state = 13}, + [2508] = {.lex_state = 192, .external_lex_state = 2}, + [2509] = {.lex_state = 0, .external_lex_state = 2}, + [2510] = {.lex_state = 0, .external_lex_state = 2}, + [2511] = {.lex_state = 52, .external_lex_state = 2}, + [2512] = {.lex_state = 27, .external_lex_state = 2}, + [2513] = {.lex_state = 192, .external_lex_state = 13}, + [2514] = {.lex_state = 192, .external_lex_state = 13}, + [2515] = {.lex_state = 27, .external_lex_state = 2}, + [2516] = {.lex_state = 27, .external_lex_state = 2}, + [2517] = {.lex_state = 192, .external_lex_state = 13}, + [2518] = {.lex_state = 192, .external_lex_state = 2}, + [2519] = {.lex_state = 192, .external_lex_state = 2}, + [2520] = {.lex_state = 0, .external_lex_state = 11}, + [2521] = {.lex_state = 0, .external_lex_state = 11}, + [2522] = {.lex_state = 192, .external_lex_state = 13}, + [2523] = {.lex_state = 192, .external_lex_state = 12}, + [2524] = {.lex_state = 39, .external_lex_state = 2}, + [2525] = {.lex_state = 0, .external_lex_state = 11}, + [2526] = {.lex_state = 0, .external_lex_state = 11}, + [2527] = {.lex_state = 27, .external_lex_state = 2}, + [2528] = {.lex_state = 52, .external_lex_state = 2}, + [2529] = {.lex_state = 41, .external_lex_state = 2}, + [2530] = {.lex_state = 192, .external_lex_state = 2}, + [2531] = {.lex_state = 192, .external_lex_state = 2}, + [2532] = {.lex_state = 0, .external_lex_state = 11}, [2533] = {.lex_state = 0, .external_lex_state = 11}, - [2534] = {.lex_state = 194, .external_lex_state = 2}, - [2535] = {.lex_state = 194, .external_lex_state = 13}, - [2536] = {.lex_state = 194, .external_lex_state = 12}, - [2537] = {.lex_state = 49, .external_lex_state = 2}, - [2538] = {.lex_state = 194, .external_lex_state = 13}, - [2539] = {.lex_state = 194, .external_lex_state = 13}, - [2540] = {.lex_state = 0, .external_lex_state = 11}, - [2541] = {.lex_state = 0, .external_lex_state = 11}, - [2542] = {.lex_state = 0, .external_lex_state = 11}, - [2543] = {.lex_state = 194, .external_lex_state = 13}, - [2544] = {.lex_state = 194, .external_lex_state = 13}, - [2545] = {.lex_state = 194, .external_lex_state = 12}, - [2546] = {.lex_state = 24, .external_lex_state = 2}, - [2547] = {.lex_state = 49, .external_lex_state = 2}, - [2548] = {.lex_state = 194, .external_lex_state = 2}, - [2549] = {.lex_state = 194, .external_lex_state = 2}, - [2550] = {.lex_state = 194, .external_lex_state = 2}, + [2534] = {.lex_state = 27, .external_lex_state = 2}, + [2535] = {.lex_state = 192, .external_lex_state = 13}, + [2536] = {.lex_state = 192, .external_lex_state = 13}, + [2537] = {.lex_state = 27, .external_lex_state = 2}, + [2538] = {.lex_state = 192, .external_lex_state = 12}, + [2539] = {.lex_state = 27, .external_lex_state = 2}, + [2540] = {.lex_state = 192, .external_lex_state = 2}, + [2541] = {.lex_state = 192, .external_lex_state = 12}, + [2542] = {.lex_state = 192, .external_lex_state = 12}, + [2543] = {.lex_state = 41, .external_lex_state = 2}, + [2544] = {.lex_state = 192, .external_lex_state = 2}, + [2545] = {.lex_state = 0, .external_lex_state = 11}, + [2546] = {.lex_state = 192, .external_lex_state = 2}, + [2547] = {.lex_state = 192, .external_lex_state = 13}, + [2548] = {.lex_state = 0, .external_lex_state = 11}, + [2549] = {.lex_state = 52, .external_lex_state = 2}, + [2550] = {.lex_state = 0, .external_lex_state = 11}, [2551] = {.lex_state = 0, .external_lex_state = 11}, [2552] = {.lex_state = 0, .external_lex_state = 11}, - [2553] = {.lex_state = 0, .external_lex_state = 11}, - [2554] = {.lex_state = 194, .external_lex_state = 13}, - [2555] = {.lex_state = 194, .external_lex_state = 12}, - [2556] = {.lex_state = 194, .external_lex_state = 12}, - [2557] = {.lex_state = 38, .external_lex_state = 2}, - [2558] = {.lex_state = 0, .external_lex_state = 2}, - [2559] = {.lex_state = 194, .external_lex_state = 2}, - [2560] = {.lex_state = 49, .external_lex_state = 2}, + [2553] = {.lex_state = 52, .external_lex_state = 2}, + [2554] = {.lex_state = 192, .external_lex_state = 2}, + [2555] = {.lex_state = 192, .external_lex_state = 13}, + [2556] = {.lex_state = 0, .external_lex_state = 11}, + [2557] = {.lex_state = 192, .external_lex_state = 13}, + [2558] = {.lex_state = 27, .external_lex_state = 2}, + [2559] = {.lex_state = 52, .external_lex_state = 2}, + [2560] = {.lex_state = 192, .external_lex_state = 12}, [2561] = {.lex_state = 0, .external_lex_state = 11}, - [2562] = {.lex_state = 0, .external_lex_state = 11}, - [2563] = {.lex_state = 194, .external_lex_state = 2}, - [2564] = {.lex_state = 36, .external_lex_state = 2}, - [2565] = {.lex_state = 36, .external_lex_state = 2}, - [2566] = {.lex_state = 36, .external_lex_state = 2}, - [2567] = {.lex_state = 194, .external_lex_state = 2}, - [2568] = {.lex_state = 194, .external_lex_state = 13}, - [2569] = {.lex_state = 194, .external_lex_state = 13}, - [2570] = {.lex_state = 194, .external_lex_state = 13}, - [2571] = {.lex_state = 194, .external_lex_state = 13}, - [2572] = {.lex_state = 194, .external_lex_state = 2}, - [2573] = {.lex_state = 194, .external_lex_state = 13}, - [2574] = {.lex_state = 194, .external_lex_state = 2}, - [2575] = {.lex_state = 194, .external_lex_state = 2}, - [2576] = {.lex_state = 194, .external_lex_state = 2}, - [2577] = {.lex_state = 49, .external_lex_state = 2}, - [2578] = {.lex_state = 194, .external_lex_state = 2}, - [2579] = {.lex_state = 194, .external_lex_state = 2}, - [2580] = {.lex_state = 24, .external_lex_state = 2}, - [2581] = {.lex_state = 24, .external_lex_state = 2}, + [2562] = {.lex_state = 52, .external_lex_state = 2}, + [2563] = {.lex_state = 0, .external_lex_state = 2}, + [2564] = {.lex_state = 0, .external_lex_state = 11}, + [2565] = {.lex_state = 52, .external_lex_state = 2}, + [2566] = {.lex_state = 0, .external_lex_state = 11}, + [2567] = {.lex_state = 52, .external_lex_state = 2}, + [2568] = {.lex_state = 0, .external_lex_state = 11}, + [2569] = {.lex_state = 39, .external_lex_state = 2}, + [2570] = {.lex_state = 39, .external_lex_state = 2}, + [2571] = {.lex_state = 39, .external_lex_state = 2}, + [2572] = {.lex_state = 0, .external_lex_state = 11}, + [2573] = {.lex_state = 192, .external_lex_state = 2}, + [2574] = {.lex_state = 192, .external_lex_state = 13}, + [2575] = {.lex_state = 192, .external_lex_state = 13}, + [2576] = {.lex_state = 192, .external_lex_state = 13}, + [2577] = {.lex_state = 192, .external_lex_state = 13}, + [2578] = {.lex_state = 0, .external_lex_state = 11}, + [2579] = {.lex_state = 0, .external_lex_state = 11}, + [2580] = {.lex_state = 0, .external_lex_state = 11}, + [2581] = {.lex_state = 27, .external_lex_state = 2}, + [2582] = {.lex_state = 52, .external_lex_state = 2}, + [2583] = {.lex_state = 52, .external_lex_state = 2}, + [2584] = {.lex_state = 52, .external_lex_state = 2}, + [2585] = {.lex_state = 192, .external_lex_state = 2}, + [2586] = {.lex_state = 27, .external_lex_state = 2}, + [2587] = {.lex_state = 27, .external_lex_state = 2}, +}; + +enum { + ts_external_token__concat = 0, + ts_external_token__newline = 1, + ts_external_token__indent = 2, + ts_external_token__dedent = 3, + ts_external_token_string_start = 4, + ts_external_token__string_content = 5, + ts_external_token_escape_interpolation = 6, + ts_external_token_string_end = 7, + ts_external_token_comment = 8, + ts_external_token_RBRACK = 9, + ts_external_token_RPAREN = 10, + ts_external_token_RBRACE = 11, + ts_external_token_shell_content = 12, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__concat] = sym__concat, + [ts_external_token__newline] = sym__newline, + [ts_external_token__indent] = sym__indent, + [ts_external_token__dedent] = sym__dedent, + [ts_external_token_string_start] = sym_string_start, + [ts_external_token__string_content] = sym__string_content, + [ts_external_token_escape_interpolation] = sym_escape_interpolation, + [ts_external_token_string_end] = sym_string_end, + [ts_external_token_comment] = sym_comment, + [ts_external_token_RBRACK] = anon_sym_RBRACK, + [ts_external_token_RPAREN] = anon_sym_RPAREN, + [ts_external_token_RBRACE] = anon_sym_RBRACE, + [ts_external_token_shell_content] = sym_shell_content, +}; + +static const bool ts_external_scanner_states[17][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__concat] = true, + [ts_external_token__newline] = true, + [ts_external_token__indent] = true, + [ts_external_token__dedent] = true, + [ts_external_token_string_start] = true, + [ts_external_token__string_content] = true, + [ts_external_token_escape_interpolation] = true, + [ts_external_token_string_end] = true, + [ts_external_token_comment] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_RPAREN] = true, + [ts_external_token_RBRACE] = true, + [ts_external_token_shell_content] = true, + }, + [2] = { + [ts_external_token_comment] = true, + }, + [3] = { + [ts_external_token__dedent] = true, + [ts_external_token_string_start] = true, + [ts_external_token_comment] = true, + }, + [4] = { + [ts_external_token__newline] = true, + [ts_external_token__indent] = true, + [ts_external_token_string_start] = true, + [ts_external_token_comment] = true, + }, + [5] = { + [ts_external_token__newline] = true, + [ts_external_token_string_start] = true, + [ts_external_token_comment] = true, + }, + [6] = { + [ts_external_token_string_start] = true, + [ts_external_token_comment] = true, + }, + [7] = { + [ts_external_token_string_start] = true, + [ts_external_token_comment] = true, + [ts_external_token_RBRACE] = true, + }, + [8] = { + [ts_external_token_string_start] = true, + [ts_external_token_comment] = true, + [ts_external_token_RPAREN] = true, + }, + [9] = { + [ts_external_token_string_start] = true, + [ts_external_token_comment] = true, + [ts_external_token_RBRACK] = true, + }, + [10] = { + [ts_external_token__newline] = true, + [ts_external_token_comment] = true, + }, + [11] = { + [ts_external_token_comment] = true, + [ts_external_token_RBRACE] = true, + }, + [12] = { + [ts_external_token_comment] = true, + [ts_external_token_RBRACK] = true, + }, + [13] = { + [ts_external_token_comment] = true, + [ts_external_token_RPAREN] = true, + }, + [14] = { + [ts_external_token__concat] = true, + [ts_external_token_comment] = true, + }, + [15] = { + [ts_external_token_comment] = true, + [ts_external_token_RBRACE] = true, + [ts_external_token_shell_content] = true, + }, + [16] = { + [ts_external_token__string_content] = true, + [ts_external_token_escape_interpolation] = true, + [ts_external_token_string_end] = true, + [ts_external_token_comment] = true, + }, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { [ts_builtin_sym_end] = ACTIONS(1), - [anon_sym_NULL] = ACTIONS(1), + [anon_sym_] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), [anon_sym_QMARK_EQ] = ACTIONS(1), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1), @@ -23477,4082 +24197,3984 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shell_content] = ACTIONS(1), }, [1] = { - [sym_recipe] = STATE(2558), - [sym_variable_assignment] = STATE(2305), - [sym_unset_statement] = STATE(2305), - [sym_inherit_directive] = STATE(2305), - [sym_include_directive] = STATE(2305), - [sym_require_directive] = STATE(2305), - [sym_export_statement] = STATE(2305), - [sym_overrides_statement] = STATE(2305), - [sym_export_functions_statement] = STATE(2305), - [sym_addtask_statement] = STATE(2305), - [sym_deltask_statement] = STATE(2305), - [sym_addhandler_statement] = STATE(2305), - [sym_anonymous_python_function] = STATE(2305), - [sym_function_definition] = STATE(2305), - [sym_variable_expansion] = STATE(2296), - [sym_python_function_definition] = STATE(2305), - [sym_concatenation] = STATE(1521), - [aux_sym_recipe_repeat1] = STATE(1210), + [sym_recipe] = STATE(2563), + [sym_variable_assignment] = STATE(2324), + [sym_unset_statement] = STATE(2324), + [sym_inherit_directive] = STATE(2324), + [sym_inherit_defer_directive] = STATE(2324), + [sym_include_directive] = STATE(2324), + [sym_require_directive] = STATE(2324), + [sym_export_statement] = STATE(2324), + [sym_overrides_statement] = STATE(2324), + [sym_export_functions_statement] = STATE(2324), + [sym_addtask_statement] = STATE(2324), + [sym_deltask_statement] = STATE(2324), + [sym_addhandler_statement] = STATE(2324), + [sym_anonymous_python_function] = STATE(2324), + [sym_function_definition] = STATE(2324), + [sym_variable_expansion] = STATE(2332), + [sym_python_function_definition] = STATE(2324), + [sym_concatenation] = STATE(1518), + [aux_sym_recipe_repeat1] = STATE(907), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_unset] = ACTIONS(7), [anon_sym_inherit] = ACTIONS(9), - [anon_sym_include] = ACTIONS(11), - [anon_sym_require] = ACTIONS(13), - [anon_sym_export] = ACTIONS(15), - [anon_sym_OVERRIDES] = ACTIONS(17), - [anon_sym_EXPORT_FUNCTIONS] = ACTIONS(19), - [anon_sym_addtask] = ACTIONS(21), - [anon_sym_deltask] = ACTIONS(23), - [anon_sym_addhandler] = ACTIONS(25), - [anon_sym_fakeroot] = ACTIONS(27), - [anon_sym_python] = ACTIONS(29), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(31), - [anon_sym_def] = ACTIONS(33), + [anon_sym_inherit_defer] = ACTIONS(11), + [anon_sym_include] = ACTIONS(13), + [anon_sym_require] = ACTIONS(15), + [anon_sym_export] = ACTIONS(17), + [anon_sym_OVERRIDES] = ACTIONS(19), + [anon_sym_EXPORT_FUNCTIONS] = ACTIONS(21), + [anon_sym_addtask] = ACTIONS(23), + [anon_sym_deltask] = ACTIONS(25), + [anon_sym_addhandler] = ACTIONS(27), + [anon_sym_fakeroot] = ACTIONS(29), + [anon_sym_python] = ACTIONS(31), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(33), + [anon_sym_def] = ACTIONS(35), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(35), - [aux_sym__dotted_identifier_token1] = ACTIONS(37), + [sym_identifier] = ACTIONS(37), + [aux_sym__dotted_identifier_token1] = ACTIONS(39), [sym_comment] = ACTIONS(3), }, [2] = { - [sym_python_function_definition] = STATE(26), - [sym__statement] = STATE(26), - [sym__simple_statements] = STATE(26), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_try_statement] = STATE(26), - [sym_with_statement] = STATE(26), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_block] = STATE(599), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(26), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_python_function_definition] = STATE(30), + [sym__statement] = STATE(30), + [sym__simple_statements] = STATE(30), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(30), + [sym_for_statement] = STATE(30), + [sym_while_statement] = STATE(30), + [sym_try_statement] = STATE(30), + [sym_with_statement] = STATE(30), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_block] = STATE(636), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(30), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(113), + [sym_string_start] = ACTIONS(115), }, [3] = { - [sym_python_function_definition] = STATE(35), - [sym__statement] = STATE(35), - [sym__simple_statements] = STATE(35), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_try_statement] = STATE(35), - [sym_with_statement] = STATE(35), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_block] = STATE(596), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(35), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_python_function_definition] = STATE(31), + [sym__statement] = STATE(31), + [sym__simple_statements] = STATE(31), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_try_statement] = STATE(31), + [sym_with_statement] = STATE(31), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_block] = STATE(647), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(31), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(115), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(117), + [sym_string_start] = ACTIONS(115), }, [4] = { + [sym_python_function_definition] = STATE(28), + [sym__statement] = STATE(28), + [sym__simple_statements] = STATE(28), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym_with_statement] = STATE(28), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_block] = STATE(2432), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(28), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), + [sym_line_continuation] = ACTIONS(3), + [sym_identifier] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(119), + [sym_string_start] = ACTIONS(115), + }, + [5] = { [sym_python_function_definition] = STATE(32), [sym__statement] = STATE(32), [sym__simple_statements] = STATE(32), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), [sym_if_statement] = STATE(32), [sym_for_statement] = STATE(32), [sym_while_statement] = STATE(32), [sym_try_statement] = STATE(32), [sym_with_statement] = STATE(32), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_block] = STATE(2491), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_block] = STATE(611), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), [aux_sym_block_repeat1] = STATE(32), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), - [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(117), - [sym_string_start] = ACTIONS(113), - }, - [5] = { - [sym_python_function_definition] = STATE(34), - [sym__statement] = STATE(34), - [sym__simple_statements] = STATE(34), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_try_statement] = STATE(34), - [sym_with_statement] = STATE(34), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_block] = STATE(657), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(34), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(119), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(121), + [sym_string_start] = ACTIONS(115), }, [6] = { - [sym_python_function_definition] = STATE(34), - [sym__statement] = STATE(34), - [sym__simple_statements] = STATE(34), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_try_statement] = STATE(34), - [sym_with_statement] = STATE(34), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_block] = STATE(662), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(34), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_python_function_definition] = STATE(35), + [sym__statement] = STATE(35), + [sym__simple_statements] = STATE(35), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(35), + [sym_for_statement] = STATE(35), + [sym_while_statement] = STATE(35), + [sym_try_statement] = STATE(35), + [sym_with_statement] = STATE(35), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_block] = STATE(558), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(35), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(119), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(123), + [sym_string_start] = ACTIONS(115), }, [7] = { - [sym_python_function_definition] = STATE(32), - [sym__statement] = STATE(32), - [sym__simple_statements] = STATE(32), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(32), - [sym_for_statement] = STATE(32), - [sym_while_statement] = STATE(32), - [sym_try_statement] = STATE(32), - [sym_with_statement] = STATE(32), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_block] = STATE(2426), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(32), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_python_function_definition] = STATE(28), + [sym__statement] = STATE(28), + [sym__simple_statements] = STATE(28), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym_with_statement] = STATE(28), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_block] = STATE(2579), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(28), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(117), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(119), + [sym_string_start] = ACTIONS(115), }, [8] = { - [sym_python_function_definition] = STATE(30), - [sym__statement] = STATE(30), - [sym__simple_statements] = STATE(30), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(30), - [sym_for_statement] = STATE(30), - [sym_while_statement] = STATE(30), - [sym_try_statement] = STATE(30), - [sym_with_statement] = STATE(30), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_block] = STATE(2306), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(30), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_python_function_definition] = STATE(31), + [sym__statement] = STATE(31), + [sym__simple_statements] = STATE(31), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_try_statement] = STATE(31), + [sym_with_statement] = STATE(31), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_block] = STATE(671), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(31), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(121), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(117), + [sym_string_start] = ACTIONS(115), }, [9] = { [sym_python_function_definition] = STATE(27), [sym__statement] = STATE(27), [sym__simple_statements] = STATE(27), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), [sym_if_statement] = STATE(27), [sym_for_statement] = STATE(27), [sym_while_statement] = STATE(27), [sym_try_statement] = STATE(27), [sym_with_statement] = STATE(27), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_block] = STATE(632), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_block] = STATE(2266), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), [aux_sym_block_repeat1] = STATE(27), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(123), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(115), }, [10] = { - [sym_python_function_definition] = STATE(29), - [sym__statement] = STATE(29), - [sym__simple_statements] = STATE(29), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_with_statement] = STATE(29), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_block] = STATE(584), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(29), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_python_function_definition] = STATE(31), + [sym__statement] = STATE(31), + [sym__simple_statements] = STATE(31), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_try_statement] = STATE(31), + [sym_with_statement] = STATE(31), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_block] = STATE(648), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(31), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(125), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(117), + [sym_string_start] = ACTIONS(115), }, [11] = { - [sym_python_function_definition] = STATE(26), - [sym__statement] = STATE(26), - [sym__simple_statements] = STATE(26), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_try_statement] = STATE(26), - [sym_with_statement] = STATE(26), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_block] = STATE(598), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(26), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_python_function_definition] = STATE(27), + [sym__statement] = STATE(27), + [sym__simple_statements] = STATE(27), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_try_statement] = STATE(27), + [sym_with_statement] = STATE(27), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_block] = STATE(2304), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(27), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(115), }, [12] = { - [sym_python_function_definition] = STATE(26), - [sym__statement] = STATE(26), - [sym__simple_statements] = STATE(26), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_try_statement] = STATE(26), - [sym_with_statement] = STATE(26), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_block] = STATE(621), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(26), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_python_function_definition] = STATE(31), + [sym__statement] = STATE(31), + [sym__simple_statements] = STATE(31), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_try_statement] = STATE(31), + [sym_with_statement] = STATE(31), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_block] = STATE(656), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(31), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(117), + [sym_string_start] = ACTIONS(115), }, [13] = { [sym_python_function_definition] = STATE(32), [sym__statement] = STATE(32), [sym__simple_statements] = STATE(32), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), [sym_if_statement] = STATE(32), [sym_for_statement] = STATE(32), [sym_while_statement] = STATE(32), [sym_try_statement] = STATE(32), [sym_with_statement] = STATE(32), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_block] = STATE(2562), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_block] = STATE(598), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), [aux_sym_block_repeat1] = STATE(32), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(117), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(121), + [sym_string_start] = ACTIONS(115), }, [14] = { - [sym_python_function_definition] = STATE(35), - [sym__statement] = STATE(35), - [sym__simple_statements] = STATE(35), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_try_statement] = STATE(35), - [sym_with_statement] = STATE(35), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_block] = STATE(588), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(35), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_python_function_definition] = STATE(29), + [sym__statement] = STATE(29), + [sym__simple_statements] = STATE(29), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_try_statement] = STATE(29), + [sym_with_statement] = STATE(29), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_block] = STATE(578), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(29), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(115), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(127), + [sym_string_start] = ACTIONS(115), }, [15] = { + [sym_python_function_definition] = STATE(33), + [sym__statement] = STATE(33), + [sym__simple_statements] = STATE(33), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(33), + [sym_for_statement] = STATE(33), + [sym_while_statement] = STATE(33), + [sym_try_statement] = STATE(33), + [sym_with_statement] = STATE(33), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_block] = STATE(577), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(33), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), + [sym_line_continuation] = ACTIONS(3), + [sym_identifier] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(115), + }, + [16] = { + [sym_python_function_definition] = STATE(28), + [sym__statement] = STATE(28), + [sym__simple_statements] = STATE(28), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym_with_statement] = STATE(28), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_block] = STATE(2495), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(28), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), + [sym_line_continuation] = ACTIONS(3), + [sym_identifier] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(119), + [sym_string_start] = ACTIONS(115), + }, + [17] = { [sym_python_function_definition] = STATE(35), [sym__statement] = STATE(35), [sym__simple_statements] = STATE(35), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), [sym_if_statement] = STATE(35), [sym_for_statement] = STATE(35), [sym_while_statement] = STATE(35), [sym_try_statement] = STATE(35), [sym_with_statement] = STATE(35), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_block] = STATE(575), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_block] = STATE(626), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), [aux_sym_block_repeat1] = STATE(35), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(115), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(123), + [sym_string_start] = ACTIONS(115), }, - [16] = { - [sym_python_function_definition] = STATE(34), - [sym__statement] = STATE(34), - [sym__simple_statements] = STATE(34), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_try_statement] = STATE(34), - [sym_with_statement] = STATE(34), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_block] = STATE(647), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(34), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [18] = { + [sym_python_function_definition] = STATE(29), + [sym__statement] = STATE(29), + [sym__simple_statements] = STATE(29), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_try_statement] = STATE(29), + [sym_with_statement] = STATE(29), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_block] = STATE(575), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(29), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(119), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(127), + [sym_string_start] = ACTIONS(115), }, - [17] = { - [sym_python_function_definition] = STATE(34), - [sym__statement] = STATE(34), - [sym__simple_statements] = STATE(34), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_try_statement] = STATE(34), - [sym_with_statement] = STATE(34), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_block] = STATE(648), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(34), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [19] = { + [sym_python_function_definition] = STATE(33), + [sym__statement] = STATE(33), + [sym__simple_statements] = STATE(33), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(33), + [sym_for_statement] = STATE(33), + [sym_while_statement] = STATE(33), + [sym_try_statement] = STATE(33), + [sym_with_statement] = STATE(33), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_block] = STATE(576), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(33), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(119), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(115), }, - [18] = { - [sym_python_function_definition] = STATE(30), - [sym__statement] = STATE(30), - [sym__simple_statements] = STATE(30), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(30), - [sym_for_statement] = STATE(30), - [sym_while_statement] = STATE(30), - [sym_try_statement] = STATE(30), - [sym_with_statement] = STATE(30), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_block] = STATE(2260), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(30), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [20] = { + [sym_python_function_definition] = STATE(32), + [sym__statement] = STATE(32), + [sym__simple_statements] = STATE(32), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(32), + [sym_for_statement] = STATE(32), + [sym_while_statement] = STATE(32), + [sym_try_statement] = STATE(32), + [sym_with_statement] = STATE(32), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_block] = STATE(623), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(32), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(121), - [sym_string_start] = ACTIONS(113), + [sym_string_start] = ACTIONS(115), }, - [19] = { + [21] = { [sym_python_function_definition] = STATE(31), [sym__statement] = STATE(31), [sym__simple_statements] = STATE(31), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), [sym_if_statement] = STATE(31), [sym_for_statement] = STATE(31), [sym_while_statement] = STATE(31), [sym_try_statement] = STATE(31), [sym_with_statement] = STATE(31), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_block] = STATE(572), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_block] = STATE(675), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), [aux_sym_block_repeat1] = STATE(31), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), - [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(127), - [sym_string_start] = ACTIONS(113), - }, - [20] = { - [sym_python_function_definition] = STATE(34), - [sym__statement] = STATE(34), - [sym__simple_statements] = STATE(34), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_try_statement] = STATE(34), - [sym_with_statement] = STATE(34), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_block] = STATE(663), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(34), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(119), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(117), + [sym_string_start] = ACTIONS(115), }, - [21] = { + [22] = { [sym_python_function_definition] = STATE(28), [sym__statement] = STATE(28), [sym__simple_statements] = STATE(28), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), [sym_if_statement] = STATE(28), [sym_for_statement] = STATE(28), [sym_while_statement] = STATE(28), [sym_try_statement] = STATE(28), [sym_with_statement] = STATE(28), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_block] = STATE(1674), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_block] = STATE(2525), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), [aux_sym_block_repeat1] = STATE(28), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(129), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(119), + [sym_string_start] = ACTIONS(115), }, - [22] = { - [sym_python_function_definition] = STATE(29), - [sym__statement] = STATE(29), - [sym__simple_statements] = STATE(29), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_with_statement] = STATE(29), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_block] = STATE(595), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(29), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [23] = { + [sym_python_function_definition] = STATE(31), + [sym__statement] = STATE(31), + [sym__simple_statements] = STATE(31), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_try_statement] = STATE(31), + [sym_with_statement] = STATE(31), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_block] = STATE(670), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(31), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(125), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(117), + [sym_string_start] = ACTIONS(115), }, - [23] = { + [24] = { [sym_python_function_definition] = STATE(34), [sym__statement] = STATE(34), [sym__simple_statements] = STATE(34), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), [sym_if_statement] = STATE(34), [sym_for_statement] = STATE(34), [sym_while_statement] = STATE(34), [sym_try_statement] = STATE(34), [sym_with_statement] = STATE(34), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_block] = STATE(677), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_block] = STATE(1681), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), [aux_sym_block_repeat1] = STATE(34), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), - [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(119), - [sym_string_start] = ACTIONS(113), - }, - [24] = { - [sym_python_function_definition] = STATE(32), - [sym__statement] = STATE(32), - [sym__simple_statements] = STATE(32), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(32), - [sym_for_statement] = STATE(32), - [sym_while_statement] = STATE(32), - [sym_try_statement] = STATE(32), - [sym_with_statement] = STATE(32), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_block] = STATE(2523), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(32), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(117), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(131), + [sym_string_start] = ACTIONS(115), }, [25] = { - [sym_python_function_definition] = STATE(31), - [sym__statement] = STATE(31), - [sym__simple_statements] = STATE(31), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_try_statement] = STATE(31), - [sym_with_statement] = STATE(31), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_block] = STATE(606), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(31), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), - [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(127), - [sym_string_start] = ACTIONS(113), - }, - [26] = { [sym_python_function_definition] = STATE(33), [sym__statement] = STATE(33), [sym__simple_statements] = STATE(33), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), [sym_if_statement] = STATE(33), [sym_for_statement] = STATE(33), [sym_while_statement] = STATE(33), [sym_try_statement] = STATE(33), [sym_with_statement] = STATE(33), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_block] = STATE(593), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), [aux_sym_block_repeat1] = STATE(33), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(131), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(129), + [sym_string_start] = ACTIONS(115), + }, + [26] = { + [sym_python_function_definition] = STATE(26), + [sym__statement] = STATE(26), + [sym__simple_statements] = STATE(26), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_try_statement] = STATE(26), + [sym_with_statement] = STATE(26), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(26), + [anon_sym_LBRACK] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_def] = ACTIONS(142), + [anon_sym_import] = ACTIONS(145), + [anon_sym_from] = ACTIONS(148), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_print] = ACTIONS(154), + [anon_sym_assert] = ACTIONS(157), + [anon_sym_return] = ACTIONS(160), + [anon_sym_del] = ACTIONS(163), + [anon_sym_raise] = ACTIONS(166), + [anon_sym_pass] = ACTIONS(169), + [anon_sym_break] = ACTIONS(172), + [anon_sym_continue] = ACTIONS(175), + [anon_sym_global] = ACTIONS(178), + [anon_sym_nonlocal] = ACTIONS(181), + [anon_sym_exec] = ACTIONS(184), + [anon_sym_if] = ACTIONS(187), + [anon_sym_async] = ACTIONS(190), + [anon_sym_for] = ACTIONS(193), + [anon_sym_while] = ACTIONS(196), + [anon_sym_try] = ACTIONS(199), + [anon_sym_with] = ACTIONS(202), + [anon_sym_not] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(208), + [anon_sym_DASH] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(208), + [anon_sym_lambda] = ACTIONS(214), + [anon_sym_yield] = ACTIONS(217), + [sym_ellipsis] = ACTIONS(220), + [anon_sym_await] = ACTIONS(223), + [anon_sym_match] = ACTIONS(226), + [anon_sym_type] = ACTIONS(229), + [sym_integer] = ACTIONS(232), + [sym_float] = ACTIONS(232), + [sym_true] = ACTIONS(232), + [sym_false] = ACTIONS(232), + [sym_none] = ACTIONS(232), + [sym_python_identifier] = ACTIONS(235), + [sym_line_continuation] = ACTIONS(3), + [sym_identifier] = ACTIONS(238), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(241), + [sym_string_start] = ACTIONS(243), }, [27] = { - [sym_python_function_definition] = STATE(33), - [sym__statement] = STATE(33), - [sym__simple_statements] = STATE(33), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_try_statement] = STATE(33), - [sym_with_statement] = STATE(33), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(33), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_python_function_definition] = STATE(26), + [sym__statement] = STATE(26), + [sym__simple_statements] = STATE(26), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_try_statement] = STATE(26), + [sym_with_statement] = STATE(26), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(26), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(246), + [sym_string_start] = ACTIONS(115), }, [28] = { - [sym_python_function_definition] = STATE(33), - [sym__statement] = STATE(33), - [sym__simple_statements] = STATE(33), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_try_statement] = STATE(33), - [sym_with_statement] = STATE(33), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(33), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_python_function_definition] = STATE(26), + [sym__statement] = STATE(26), + [sym__simple_statements] = STATE(26), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_try_statement] = STATE(26), + [sym_with_statement] = STATE(26), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(26), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(248), + [sym_string_start] = ACTIONS(115), }, [29] = { - [sym_python_function_definition] = STATE(33), - [sym__statement] = STATE(33), - [sym__simple_statements] = STATE(33), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_try_statement] = STATE(33), - [sym_with_statement] = STATE(33), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(33), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_python_function_definition] = STATE(26), + [sym__statement] = STATE(26), + [sym__simple_statements] = STATE(26), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_try_statement] = STATE(26), + [sym_with_statement] = STATE(26), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(26), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(250), + [sym_string_start] = ACTIONS(115), }, [30] = { - [sym_python_function_definition] = STATE(33), - [sym__statement] = STATE(33), - [sym__simple_statements] = STATE(33), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_try_statement] = STATE(33), - [sym_with_statement] = STATE(33), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(33), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_python_function_definition] = STATE(26), + [sym__statement] = STATE(26), + [sym__simple_statements] = STATE(26), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_try_statement] = STATE(26), + [sym_with_statement] = STATE(26), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(26), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(139), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(252), + [sym_string_start] = ACTIONS(115), }, [31] = { - [sym_python_function_definition] = STATE(33), - [sym__statement] = STATE(33), - [sym__simple_statements] = STATE(33), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_try_statement] = STATE(33), - [sym_with_statement] = STATE(33), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(33), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_python_function_definition] = STATE(26), + [sym__statement] = STATE(26), + [sym__simple_statements] = STATE(26), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_try_statement] = STATE(26), + [sym_with_statement] = STATE(26), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(26), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(141), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(254), + [sym_string_start] = ACTIONS(115), }, [32] = { - [sym_python_function_definition] = STATE(33), - [sym__statement] = STATE(33), - [sym__simple_statements] = STATE(33), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_try_statement] = STATE(33), - [sym_with_statement] = STATE(33), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(33), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_python_function_definition] = STATE(26), + [sym__statement] = STATE(26), + [sym__simple_statements] = STATE(26), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_try_statement] = STATE(26), + [sym_with_statement] = STATE(26), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(26), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(256), + [sym_string_start] = ACTIONS(115), }, [33] = { - [sym_python_function_definition] = STATE(33), - [sym__statement] = STATE(33), - [sym__simple_statements] = STATE(33), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_try_statement] = STATE(33), - [sym_with_statement] = STATE(33), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(33), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LPAREN] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_def] = ACTIONS(154), - [anon_sym_import] = ACTIONS(157), - [anon_sym_from] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(163), - [anon_sym_print] = ACTIONS(166), - [anon_sym_assert] = ACTIONS(169), - [anon_sym_return] = ACTIONS(172), - [anon_sym_del] = ACTIONS(175), - [anon_sym_raise] = ACTIONS(178), - [anon_sym_pass] = ACTIONS(181), - [anon_sym_break] = ACTIONS(184), - [anon_sym_continue] = ACTIONS(187), - [anon_sym_global] = ACTIONS(190), - [anon_sym_nonlocal] = ACTIONS(193), - [anon_sym_exec] = ACTIONS(196), - [anon_sym_if] = ACTIONS(199), - [anon_sym_async] = ACTIONS(202), - [anon_sym_for] = ACTIONS(205), - [anon_sym_while] = ACTIONS(208), - [anon_sym_try] = ACTIONS(211), - [anon_sym_with] = ACTIONS(214), - [anon_sym_not] = ACTIONS(217), - [anon_sym_PLUS] = ACTIONS(220), - [anon_sym_DASH] = ACTIONS(223), - [anon_sym_TILDE] = ACTIONS(220), - [anon_sym_lambda] = ACTIONS(226), - [anon_sym_yield] = ACTIONS(229), - [sym_ellipsis] = ACTIONS(232), - [anon_sym_await] = ACTIONS(235), - [anon_sym_match] = ACTIONS(238), - [anon_sym_type] = ACTIONS(241), - [sym_integer] = ACTIONS(244), - [sym_float] = ACTIONS(244), - [sym_true] = ACTIONS(244), - [sym_false] = ACTIONS(244), - [sym_none] = ACTIONS(244), - [sym_python_identifier] = ACTIONS(247), + [sym_python_function_definition] = STATE(26), + [sym__statement] = STATE(26), + [sym__simple_statements] = STATE(26), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_try_statement] = STATE(26), + [sym_with_statement] = STATE(26), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(26), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(250), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(253), - [sym_string_start] = ACTIONS(255), + [sym__dedent] = ACTIONS(258), + [sym_string_start] = ACTIONS(115), }, [34] = { - [sym_python_function_definition] = STATE(33), - [sym__statement] = STATE(33), - [sym__simple_statements] = STATE(33), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_try_statement] = STATE(33), - [sym_with_statement] = STATE(33), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(33), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_python_function_definition] = STATE(26), + [sym__statement] = STATE(26), + [sym__simple_statements] = STATE(26), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_try_statement] = STATE(26), + [sym_with_statement] = STATE(26), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(26), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(258), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(260), + [sym_string_start] = ACTIONS(115), }, [35] = { - [sym_python_function_definition] = STATE(33), - [sym__statement] = STATE(33), - [sym__simple_statements] = STATE(33), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_if_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_try_statement] = STATE(33), - [sym_with_statement] = STATE(33), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [aux_sym_block_repeat1] = STATE(33), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_def] = ACTIONS(45), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_if] = ACTIONS(75), - [anon_sym_async] = ACTIONS(77), - [anon_sym_for] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_try] = ACTIONS(83), - [anon_sym_with] = ACTIONS(85), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_python_function_definition] = STATE(26), + [sym__statement] = STATE(26), + [sym__simple_statements] = STATE(26), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_if_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_try_statement] = STATE(26), + [sym_with_statement] = STATE(26), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [aux_sym_block_repeat1] = STATE(26), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_def] = ACTIONS(47), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_try] = ACTIONS(85), + [anon_sym_with] = ACTIONS(87), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(260), - [sym_string_start] = ACTIONS(113), + [sym__dedent] = ACTIONS(262), + [sym_string_start] = ACTIONS(115), }, [36] = { - [sym__simple_statements] = STATE(649), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(562), - [sym_subscript] = STATE(562), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(564), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1539), - [sym_primary_expression] = STATE(846), - [sym_type] = STATE(1934), - [sym_splat_type] = STATE(1908), - [sym_generic_type] = STATE(1908), - [sym_union_type] = STATE(1908), - [sym_constrained_type] = STATE(1908), - [sym_member_type] = STATE(1908), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(262), - [anon_sym_LPAREN] = ACTIONS(264), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(266), - [anon_sym_print] = ACTIONS(268), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(270), - [anon_sym_async] = ACTIONS(272), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_STAR_STAR] = ACTIONS(274), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(276), - [anon_sym_match] = ACTIONS(272), - [anon_sym_type] = ACTIONS(278), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(280), + [sym__simple_statements] = STATE(658), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(559), + [sym_subscript] = STATE(559), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(551), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1543), + [sym_primary_expression] = STATE(895), + [sym_type] = STATE(1916), + [sym_splat_type] = STATE(1930), + [sym_generic_type] = STATE(1930), + [sym_union_type] = STATE(1930), + [sym_constrained_type] = STATE(1930), + [sym_member_type] = STATE(1930), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(266), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(268), + [anon_sym_print] = ACTIONS(270), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(272), + [anon_sym_async] = ACTIONS(274), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(276), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(278), + [anon_sym_match] = ACTIONS(274), + [anon_sym_type] = ACTIONS(280), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(282), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(282), - [sym__indent] = ACTIONS(284), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(284), + [sym__indent] = ACTIONS(286), + [sym_string_start] = ACTIONS(115), }, [37] = { - [sym_chevron] = STATE(1984), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_attribute] = STATE(971), - [sym_subscript] = STATE(971), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_list_splat_pattern] = STATE(989), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1718), - [sym_primary_expression] = STATE(840), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_PLUS_EQ] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_COLON] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(298), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(305), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_print] = ACTIONS(311), - [anon_sym_GT_GT] = ACTIONS(313), - [anon_sym_exec] = ACTIONS(311), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(311), - [anon_sym_not] = ACTIONS(315), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(318), - [anon_sym_AT] = ACTIONS(303), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(303), - [anon_sym_SLASH_SLASH] = ACTIONS(303), - [anon_sym_STAR_STAR] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_AMP] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LT_LT] = ACTIONS(303), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_DASH_EQ] = ACTIONS(290), - [anon_sym_STAR_EQ] = ACTIONS(290), - [anon_sym_SLASH_EQ] = ACTIONS(290), - [anon_sym_AT_EQ] = ACTIONS(290), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(290), - [anon_sym_PERCENT_EQ] = ACTIONS(290), - [anon_sym_STAR_STAR_EQ] = ACTIONS(290), - [anon_sym_GT_GT_EQ] = ACTIONS(290), - [anon_sym_LT_LT_EQ] = ACTIONS(290), - [anon_sym_AMP_EQ] = ACTIONS(290), - [anon_sym_CARET_EQ] = ACTIONS(290), - [anon_sym_PIPE_EQ] = ACTIONS(290), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(321), - [anon_sym_match] = ACTIONS(311), - [anon_sym_type] = ACTIONS(323), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(325), + [sym_chevron] = STATE(1964), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_attribute] = STATE(964), + [sym_subscript] = STATE(964), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_list_splat_pattern] = STATE(960), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1701), + [sym_primary_expression] = STATE(836), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_EQ] = ACTIONS(288), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_PLUS_EQ] = ACTIONS(292), + [anon_sym_LBRACK] = ACTIONS(294), + [anon_sym_COLON] = ACTIONS(288), + [anon_sym_LPAREN] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(304), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(307), + [anon_sym_print] = ACTIONS(310), + [anon_sym_GT_GT] = ACTIONS(312), + [anon_sym_exec] = ACTIONS(310), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(310), + [anon_sym_not] = ACTIONS(314), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_AT] = ACTIONS(302), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(302), + [anon_sym_SLASH_SLASH] = ACTIONS(302), + [anon_sym_STAR_STAR] = ACTIONS(302), + [anon_sym_PIPE] = ACTIONS(302), + [anon_sym_AMP] = ACTIONS(302), + [anon_sym_CARET] = ACTIONS(302), + [anon_sym_LT_LT] = ACTIONS(302), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(292), + [anon_sym_STAR_EQ] = ACTIONS(292), + [anon_sym_SLASH_EQ] = ACTIONS(292), + [anon_sym_AT_EQ] = ACTIONS(292), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(292), + [anon_sym_PERCENT_EQ] = ACTIONS(292), + [anon_sym_STAR_STAR_EQ] = ACTIONS(292), + [anon_sym_GT_GT_EQ] = ACTIONS(292), + [anon_sym_LT_LT_EQ] = ACTIONS(292), + [anon_sym_AMP_EQ] = ACTIONS(292), + [anon_sym_CARET_EQ] = ACTIONS(292), + [anon_sym_PIPE_EQ] = ACTIONS(292), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(320), + [anon_sym_match] = ACTIONS(310), + [anon_sym_type] = ACTIONS(322), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(324), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(301), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(300), + [sym_string_start] = ACTIONS(115), }, [38] = { - [sym__simple_statements] = STATE(2334), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(562), - [sym_subscript] = STATE(562), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(564), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1539), - [sym_primary_expression] = STATE(846), - [sym_type] = STATE(1934), - [sym_splat_type] = STATE(1908), - [sym_generic_type] = STATE(1908), - [sym_union_type] = STATE(1908), - [sym_constrained_type] = STATE(1908), - [sym_member_type] = STATE(1908), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(262), - [anon_sym_LPAREN] = ACTIONS(264), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(266), - [anon_sym_print] = ACTIONS(268), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(270), - [anon_sym_async] = ACTIONS(272), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_STAR_STAR] = ACTIONS(274), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(276), - [anon_sym_match] = ACTIONS(272), - [anon_sym_type] = ACTIONS(278), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(280), + [sym_chevron] = STATE(1964), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_attribute] = STATE(964), + [sym_subscript] = STATE(964), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_list_splat_pattern] = STATE(960), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1701), + [sym_primary_expression] = STATE(836), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_EQ] = ACTIONS(288), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_PLUS_EQ] = ACTIONS(292), + [anon_sym_LBRACK] = ACTIONS(294), + [anon_sym_COLON] = ACTIONS(326), + [anon_sym_LPAREN] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(304), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(307), + [anon_sym_print] = ACTIONS(310), + [anon_sym_GT_GT] = ACTIONS(312), + [anon_sym_exec] = ACTIONS(310), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(310), + [anon_sym_not] = ACTIONS(314), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_AT] = ACTIONS(302), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(302), + [anon_sym_SLASH_SLASH] = ACTIONS(302), + [anon_sym_STAR_STAR] = ACTIONS(302), + [anon_sym_PIPE] = ACTIONS(302), + [anon_sym_AMP] = ACTIONS(302), + [anon_sym_CARET] = ACTIONS(302), + [anon_sym_LT_LT] = ACTIONS(302), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(292), + [anon_sym_STAR_EQ] = ACTIONS(292), + [anon_sym_SLASH_EQ] = ACTIONS(292), + [anon_sym_AT_EQ] = ACTIONS(292), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(292), + [anon_sym_PERCENT_EQ] = ACTIONS(292), + [anon_sym_STAR_STAR_EQ] = ACTIONS(292), + [anon_sym_GT_GT_EQ] = ACTIONS(292), + [anon_sym_LT_LT_EQ] = ACTIONS(292), + [anon_sym_AMP_EQ] = ACTIONS(292), + [anon_sym_CARET_EQ] = ACTIONS(292), + [anon_sym_PIPE_EQ] = ACTIONS(292), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(320), + [anon_sym_match] = ACTIONS(310), + [anon_sym_type] = ACTIONS(322), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(324), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(327), - [sym__indent] = ACTIONS(329), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(300), + [sym_string_start] = ACTIONS(115), }, [39] = { - [sym_chevron] = STATE(1984), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_attribute] = STATE(971), - [sym_subscript] = STATE(971), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_list_splat_pattern] = STATE(989), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1718), - [sym_primary_expression] = STATE(840), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_PLUS_EQ] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(298), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(305), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_print] = ACTIONS(311), - [anon_sym_GT_GT] = ACTIONS(313), - [anon_sym_exec] = ACTIONS(311), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(311), - [anon_sym_not] = ACTIONS(315), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(318), - [anon_sym_AT] = ACTIONS(303), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(303), - [anon_sym_SLASH_SLASH] = ACTIONS(303), - [anon_sym_STAR_STAR] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_AMP] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LT_LT] = ACTIONS(303), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_DASH_EQ] = ACTIONS(290), - [anon_sym_STAR_EQ] = ACTIONS(290), - [anon_sym_SLASH_EQ] = ACTIONS(290), - [anon_sym_AT_EQ] = ACTIONS(290), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(290), - [anon_sym_PERCENT_EQ] = ACTIONS(290), - [anon_sym_STAR_STAR_EQ] = ACTIONS(290), - [anon_sym_GT_GT_EQ] = ACTIONS(290), - [anon_sym_LT_LT_EQ] = ACTIONS(290), - [anon_sym_AMP_EQ] = ACTIONS(290), - [anon_sym_CARET_EQ] = ACTIONS(290), - [anon_sym_PIPE_EQ] = ACTIONS(290), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(321), - [anon_sym_match] = ACTIONS(311), - [anon_sym_type] = ACTIONS(323), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(325), - [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(301), - [sym_string_start] = ACTIONS(113), - }, - [40] = { - [sym__simple_statements] = STATE(602), + [sym__simple_statements] = STATE(2329), [sym_import_statement] = STATE(2053), [sym_future_import_statement] = STATE(2053), [sym_import_from_statement] = STATE(2053), [sym_print_statement] = STATE(2053), [sym_assert_statement] = STATE(2053), [sym_expression_statement] = STATE(2053), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), [sym_return_statement] = STATE(2053), [sym_delete_statement] = STATE(2053), [sym_raise_statement] = STATE(2053), @@ -27562,183 +28184,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_global_statement] = STATE(2053), [sym_nonlocal_statement] = STATE(2053), [sym_exec_statement] = STATE(2053), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(559), + [sym_subscript] = STATE(559), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(551), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1543), + [sym_primary_expression] = STATE(895), + [sym_type] = STATE(1916), + [sym_splat_type] = STATE(1930), + [sym_generic_type] = STATE(1930), + [sym_union_type] = STATE(1930), + [sym_constrained_type] = STATE(1930), + [sym_member_type] = STATE(1930), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(266), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(268), + [anon_sym_print] = ACTIONS(270), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(272), + [anon_sym_async] = ACTIONS(274), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(276), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(278), + [anon_sym_match] = ACTIONS(274), + [anon_sym_type] = ACTIONS(280), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(282), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(331), - [sym__indent] = ACTIONS(333), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(329), + [sym__indent] = ACTIONS(331), + [sym_string_start] = ACTIONS(115), }, - [41] = { - [sym__simple_statements] = STATE(645), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [40] = { + [sym__simple_statements] = STATE(625), + [sym_import_statement] = STATE(2163), + [sym_future_import_statement] = STATE(2163), + [sym_import_from_statement] = STATE(2163), + [sym_print_statement] = STATE(2163), + [sym_assert_statement] = STATE(2163), + [sym_expression_statement] = STATE(2163), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2163), + [sym_delete_statement] = STATE(2163), + [sym_raise_statement] = STATE(2163), + [sym_pass_statement] = STATE(2163), + [sym_break_statement] = STATE(2163), + [sym_continue_statement] = STATE(2163), + [sym_global_statement] = STATE(2163), + [sym_nonlocal_statement] = STATE(2163), + [sym_exec_statement] = STATE(2163), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(335), - [sym__indent] = ACTIONS(337), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(333), + [sym__indent] = ACTIONS(335), + [sym_string_start] = ACTIONS(115), }, - [42] = { - [sym__simple_statements] = STATE(2493), + [41] = { + [sym__simple_statements] = STATE(2580), [sym_import_statement] = STATE(2029), [sym_future_import_statement] = STATE(2029), [sym_import_from_statement] = STATE(2029), [sym_print_statement] = STATE(2029), [sym_assert_statement] = STATE(2029), [sym_expression_statement] = STATE(2029), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), [sym_return_statement] = STATE(2029), [sym_delete_statement] = STATE(2029), [sym_raise_statement] = STATE(2029), @@ -27748,276 +28377,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_global_statement] = STATE(2029), [sym_nonlocal_statement] = STATE(2029), [sym_exec_statement] = STATE(2029), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), - [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(339), - [sym__indent] = ACTIONS(341), - [sym_string_start] = ACTIONS(113), - }, - [43] = { - [sym__simple_statements] = STATE(591), - [sym_import_statement] = STATE(2071), - [sym_future_import_statement] = STATE(2071), - [sym_import_from_statement] = STATE(2071), - [sym_print_statement] = STATE(2071), - [sym_assert_statement] = STATE(2071), - [sym_expression_statement] = STATE(2071), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2071), - [sym_delete_statement] = STATE(2071), - [sym_raise_statement] = STATE(2071), - [sym_pass_statement] = STATE(2071), - [sym_break_statement] = STATE(2071), - [sym_continue_statement] = STATE(2071), - [sym_global_statement] = STATE(2071), - [sym_nonlocal_statement] = STATE(2071), - [sym_exec_statement] = STATE(2071), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), - [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(343), - [sym__indent] = ACTIONS(345), - [sym_string_start] = ACTIONS(113), - }, - [44] = { - [sym__simple_statements] = STATE(660), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(347), - [sym__indent] = ACTIONS(349), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(337), + [sym__indent] = ACTIONS(339), + [sym_string_start] = ACTIONS(115), }, - [45] = { - [sym__simple_statements] = STATE(2524), + [42] = { + [sym__simple_statements] = STATE(2526), [sym_import_statement] = STATE(2029), [sym_future_import_statement] = STATE(2029), [sym_import_from_statement] = STATE(2029), [sym_print_statement] = STATE(2029), [sym_assert_statement] = STATE(2029), [sym_expression_statement] = STATE(2029), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), [sym_return_statement] = STATE(2029), [sym_delete_statement] = STATE(2029), [sym_raise_statement] = STATE(2029), @@ -28027,183 +28470,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_global_statement] = STATE(2029), [sym_nonlocal_statement] = STATE(2029), [sym_exec_statement] = STATE(2029), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), - [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(351), - [sym__indent] = ACTIONS(353), - [sym_string_start] = ACTIONS(113), - }, - [46] = { - [sym__simple_statements] = STATE(672), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(355), - [sym__indent] = ACTIONS(357), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(341), + [sym__indent] = ACTIONS(343), + [sym_string_start] = ACTIONS(115), }, - [47] = { - [sym__simple_statements] = STATE(613), + [43] = { + [sym__simple_statements] = STATE(2326), [sym_import_statement] = STATE(2053), [sym_future_import_statement] = STATE(2053), [sym_import_from_statement] = STATE(2053), [sym_print_statement] = STATE(2053), [sym_assert_statement] = STATE(2053), [sym_expression_statement] = STATE(2053), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), [sym_return_statement] = STATE(2053), [sym_delete_statement] = STATE(2053), [sym_raise_statement] = STATE(2053), @@ -28213,183 +28563,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_global_statement] = STATE(2053), [sym_nonlocal_statement] = STATE(2053), [sym_exec_statement] = STATE(2053), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), - [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(359), - [sym__indent] = ACTIONS(361), - [sym_string_start] = ACTIONS(113), - }, - [48] = { - [sym__simple_statements] = STATE(655), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(363), - [sym__indent] = ACTIONS(365), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(345), + [sym__indent] = ACTIONS(347), + [sym_string_start] = ACTIONS(115), }, - [49] = { - [sym__simple_statements] = STATE(2422), + [44] = { + [sym__simple_statements] = STATE(2426), [sym_import_statement] = STATE(2029), [sym_future_import_statement] = STATE(2029), [sym_import_from_statement] = STATE(2029), [sym_print_statement] = STATE(2029), [sym_assert_statement] = STATE(2029), [sym_expression_statement] = STATE(2029), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), [sym_return_statement] = STATE(2029), [sym_delete_statement] = STATE(2029), [sym_raise_statement] = STATE(2029), @@ -28399,90 +28656,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_global_statement] = STATE(2029), [sym_nonlocal_statement] = STATE(2029), [sym_exec_statement] = STATE(2029), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(367), - [sym__indent] = ACTIONS(369), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(349), + [sym__indent] = ACTIONS(351), + [sym_string_start] = ACTIONS(115), }, - [50] = { - [sym__simple_statements] = STATE(2351), + [45] = { + [sym__simple_statements] = STATE(602), + [sym_import_statement] = STATE(2045), + [sym_future_import_statement] = STATE(2045), + [sym_import_from_statement] = STATE(2045), + [sym_print_statement] = STATE(2045), + [sym_assert_statement] = STATE(2045), + [sym_expression_statement] = STATE(2045), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2045), + [sym_delete_statement] = STATE(2045), + [sym_raise_statement] = STATE(2045), + [sym_pass_statement] = STATE(2045), + [sym_break_statement] = STATE(2045), + [sym_continue_statement] = STATE(2045), + [sym_global_statement] = STATE(2045), + [sym_nonlocal_statement] = STATE(2045), + [sym_exec_statement] = STATE(2045), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), + [sym_line_continuation] = ACTIONS(3), + [sym_identifier] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(353), + [sym__indent] = ACTIONS(355), + [sym_string_start] = ACTIONS(115), + }, + [46] = { + [sym__simple_statements] = STATE(1734), + [sym_import_statement] = STATE(2192), + [sym_future_import_statement] = STATE(2192), + [sym_import_from_statement] = STATE(2192), + [sym_print_statement] = STATE(2192), + [sym_assert_statement] = STATE(2192), + [sym_expression_statement] = STATE(2192), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2192), + [sym_delete_statement] = STATE(2192), + [sym_raise_statement] = STATE(2192), + [sym_pass_statement] = STATE(2192), + [sym_break_statement] = STATE(2192), + [sym_continue_statement] = STATE(2192), + [sym_global_statement] = STATE(2192), + [sym_nonlocal_statement] = STATE(2192), + [sym_exec_statement] = STATE(2192), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), + [sym_line_continuation] = ACTIONS(3), + [sym_identifier] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(357), + [sym__indent] = ACTIONS(359), + [sym_string_start] = ACTIONS(115), + }, + [47] = { + [sym__simple_statements] = STATE(2355), [sym_import_statement] = STATE(2029), [sym_future_import_statement] = STATE(2029), [sym_import_from_statement] = STATE(2029), [sym_print_statement] = STATE(2029), [sym_assert_statement] = STATE(2029), [sym_expression_statement] = STATE(2029), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), [sym_return_statement] = STATE(2029), [sym_delete_statement] = STATE(2029), [sym_raise_statement] = STATE(2029), @@ -28492,6502 +28935,6683 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_global_statement] = STATE(2029), [sym_nonlocal_statement] = STATE(2029), [sym_exec_statement] = STATE(2029), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(371), - [sym__indent] = ACTIONS(373), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(361), + [sym__indent] = ACTIONS(363), + [sym_string_start] = ACTIONS(115), + }, + [48] = { + [sym__simple_statements] = STATE(654), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), + [sym_line_continuation] = ACTIONS(3), + [sym_identifier] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(365), + [sym__indent] = ACTIONS(367), + [sym_string_start] = ACTIONS(115), + }, + [49] = { + [sym__simple_statements] = STATE(581), + [sym_import_statement] = STATE(2074), + [sym_future_import_statement] = STATE(2074), + [sym_import_from_statement] = STATE(2074), + [sym_print_statement] = STATE(2074), + [sym_assert_statement] = STATE(2074), + [sym_expression_statement] = STATE(2074), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2074), + [sym_delete_statement] = STATE(2074), + [sym_raise_statement] = STATE(2074), + [sym_pass_statement] = STATE(2074), + [sym_break_statement] = STATE(2074), + [sym_continue_statement] = STATE(2074), + [sym_global_statement] = STATE(2074), + [sym_nonlocal_statement] = STATE(2074), + [sym_exec_statement] = STATE(2074), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), + [sym_line_continuation] = ACTIONS(3), + [sym_identifier] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(369), + [sym__indent] = ACTIONS(371), + [sym_string_start] = ACTIONS(115), + }, + [50] = { + [sym__simple_statements] = STATE(646), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), + [sym_line_continuation] = ACTIONS(3), + [sym_identifier] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(373), + [sym__indent] = ACTIONS(375), + [sym_string_start] = ACTIONS(115), }, [51] = { - [sym__simple_statements] = STATE(605), - [sym_import_statement] = STATE(2158), - [sym_future_import_statement] = STATE(2158), - [sym_import_from_statement] = STATE(2158), - [sym_print_statement] = STATE(2158), - [sym_assert_statement] = STATE(2158), - [sym_expression_statement] = STATE(2158), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2158), - [sym_delete_statement] = STATE(2158), - [sym_raise_statement] = STATE(2158), - [sym_pass_statement] = STATE(2158), - [sym_break_statement] = STATE(2158), - [sym_continue_statement] = STATE(2158), - [sym_global_statement] = STATE(2158), - [sym_nonlocal_statement] = STATE(2158), - [sym_exec_statement] = STATE(2158), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym__simple_statements] = STATE(631), + [sym_import_statement] = STATE(2168), + [sym_future_import_statement] = STATE(2168), + [sym_import_from_statement] = STATE(2168), + [sym_print_statement] = STATE(2168), + [sym_assert_statement] = STATE(2168), + [sym_expression_statement] = STATE(2168), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2168), + [sym_delete_statement] = STATE(2168), + [sym_raise_statement] = STATE(2168), + [sym_pass_statement] = STATE(2168), + [sym_break_statement] = STATE(2168), + [sym_continue_statement] = STATE(2168), + [sym_global_statement] = STATE(2168), + [sym_nonlocal_statement] = STATE(2168), + [sym_exec_statement] = STATE(2168), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(375), - [sym__indent] = ACTIONS(377), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(377), + [sym__indent] = ACTIONS(379), + [sym_string_start] = ACTIONS(115), }, [52] = { - [sym__simple_statements] = STATE(2228), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym__simple_statements] = STATE(587), + [sym_import_statement] = STATE(2074), + [sym_future_import_statement] = STATE(2074), + [sym_import_from_statement] = STATE(2074), + [sym_print_statement] = STATE(2074), + [sym_assert_statement] = STATE(2074), + [sym_expression_statement] = STATE(2074), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2074), + [sym_delete_statement] = STATE(2074), + [sym_raise_statement] = STATE(2074), + [sym_pass_statement] = STATE(2074), + [sym_break_statement] = STATE(2074), + [sym_continue_statement] = STATE(2074), + [sym_global_statement] = STATE(2074), + [sym_nonlocal_statement] = STATE(2074), + [sym_exec_statement] = STATE(2074), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(379), - [sym__indent] = ACTIONS(381), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(381), + [sym__indent] = ACTIONS(383), + [sym_string_start] = ACTIONS(115), }, [53] = { - [sym__simple_statements] = STATE(576), - [sym_import_statement] = STATE(2206), - [sym_future_import_statement] = STATE(2206), - [sym_import_from_statement] = STATE(2206), - [sym_print_statement] = STATE(2206), - [sym_assert_statement] = STATE(2206), - [sym_expression_statement] = STATE(2206), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2206), - [sym_delete_statement] = STATE(2206), - [sym_raise_statement] = STATE(2206), - [sym_pass_statement] = STATE(2206), - [sym_break_statement] = STATE(2206), - [sym_continue_statement] = STATE(2206), - [sym_global_statement] = STATE(2206), - [sym_nonlocal_statement] = STATE(2206), - [sym_exec_statement] = STATE(2206), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym__simple_statements] = STATE(584), + [sym_import_statement] = STATE(2213), + [sym_future_import_statement] = STATE(2213), + [sym_import_from_statement] = STATE(2213), + [sym_print_statement] = STATE(2213), + [sym_assert_statement] = STATE(2213), + [sym_expression_statement] = STATE(2213), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2213), + [sym_delete_statement] = STATE(2213), + [sym_raise_statement] = STATE(2213), + [sym_pass_statement] = STATE(2213), + [sym_break_statement] = STATE(2213), + [sym_continue_statement] = STATE(2213), + [sym_global_statement] = STATE(2213), + [sym_nonlocal_statement] = STATE(2213), + [sym_exec_statement] = STATE(2213), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(383), - [sym__indent] = ACTIONS(385), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(385), + [sym__indent] = ACTIONS(387), + [sym_string_start] = ACTIONS(115), }, [54] = { - [sym__simple_statements] = STATE(586), - [sym_import_statement] = STATE(2071), - [sym_future_import_statement] = STATE(2071), - [sym_import_from_statement] = STATE(2071), - [sym_print_statement] = STATE(2071), - [sym_assert_statement] = STATE(2071), - [sym_expression_statement] = STATE(2071), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2071), - [sym_delete_statement] = STATE(2071), - [sym_raise_statement] = STATE(2071), - [sym_pass_statement] = STATE(2071), - [sym_break_statement] = STATE(2071), - [sym_continue_statement] = STATE(2071), - [sym_global_statement] = STATE(2071), - [sym_nonlocal_statement] = STATE(2071), - [sym_exec_statement] = STATE(2071), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym__simple_statements] = STATE(556), + [sym_import_statement] = STATE(2163), + [sym_future_import_statement] = STATE(2163), + [sym_import_from_statement] = STATE(2163), + [sym_print_statement] = STATE(2163), + [sym_assert_statement] = STATE(2163), + [sym_expression_statement] = STATE(2163), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2163), + [sym_delete_statement] = STATE(2163), + [sym_raise_statement] = STATE(2163), + [sym_pass_statement] = STATE(2163), + [sym_break_statement] = STATE(2163), + [sym_continue_statement] = STATE(2163), + [sym_global_statement] = STATE(2163), + [sym_nonlocal_statement] = STATE(2163), + [sym_exec_statement] = STATE(2163), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(387), - [sym__indent] = ACTIONS(389), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(389), + [sym__indent] = ACTIONS(391), + [sym_string_start] = ACTIONS(115), }, [55] = { - [sym__simple_statements] = STATE(661), - [sym_import_statement] = STATE(2108), - [sym_future_import_statement] = STATE(2108), - [sym_import_from_statement] = STATE(2108), - [sym_print_statement] = STATE(2108), - [sym_assert_statement] = STATE(2108), - [sym_expression_statement] = STATE(2108), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2108), - [sym_delete_statement] = STATE(2108), - [sym_raise_statement] = STATE(2108), - [sym_pass_statement] = STATE(2108), - [sym_break_statement] = STATE(2108), - [sym_continue_statement] = STATE(2108), - [sym_global_statement] = STATE(2108), - [sym_nonlocal_statement] = STATE(2108), - [sym_exec_statement] = STATE(2108), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym__simple_statements] = STATE(614), + [sym_import_statement] = STATE(2045), + [sym_future_import_statement] = STATE(2045), + [sym_import_from_statement] = STATE(2045), + [sym_print_statement] = STATE(2045), + [sym_assert_statement] = STATE(2045), + [sym_expression_statement] = STATE(2045), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2045), + [sym_delete_statement] = STATE(2045), + [sym_raise_statement] = STATE(2045), + [sym_pass_statement] = STATE(2045), + [sym_break_statement] = STATE(2045), + [sym_continue_statement] = STATE(2045), + [sym_global_statement] = STATE(2045), + [sym_nonlocal_statement] = STATE(2045), + [sym_exec_statement] = STATE(2045), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(391), - [sym__indent] = ACTIONS(393), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(393), + [sym__indent] = ACTIONS(395), + [sym_string_start] = ACTIONS(115), }, [56] = { - [sym__simple_statements] = STATE(555), - [sym_import_statement] = STATE(2158), - [sym_future_import_statement] = STATE(2158), - [sym_import_from_statement] = STATE(2158), - [sym_print_statement] = STATE(2158), - [sym_assert_statement] = STATE(2158), - [sym_expression_statement] = STATE(2158), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2158), - [sym_delete_statement] = STATE(2158), - [sym_raise_statement] = STATE(2158), - [sym_pass_statement] = STATE(2158), - [sym_break_statement] = STATE(2158), - [sym_continue_statement] = STATE(2158), - [sym_global_statement] = STATE(2158), - [sym_nonlocal_statement] = STATE(2158), - [sym_exec_statement] = STATE(2158), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym__simple_statements] = STATE(592), + [sym_import_statement] = STATE(2074), + [sym_future_import_statement] = STATE(2074), + [sym_import_from_statement] = STATE(2074), + [sym_print_statement] = STATE(2074), + [sym_assert_statement] = STATE(2074), + [sym_expression_statement] = STATE(2074), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2074), + [sym_delete_statement] = STATE(2074), + [sym_raise_statement] = STATE(2074), + [sym_pass_statement] = STATE(2074), + [sym_break_statement] = STATE(2074), + [sym_continue_statement] = STATE(2074), + [sym_global_statement] = STATE(2074), + [sym_nonlocal_statement] = STATE(2074), + [sym_exec_statement] = STATE(2074), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(395), - [sym__indent] = ACTIONS(397), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(397), + [sym__indent] = ACTIONS(399), + [sym_string_start] = ACTIONS(115), }, [57] = { - [sym__simple_statements] = STATE(581), - [sym_import_statement] = STATE(2071), - [sym_future_import_statement] = STATE(2071), - [sym_import_from_statement] = STATE(2071), - [sym_print_statement] = STATE(2071), - [sym_assert_statement] = STATE(2071), - [sym_expression_statement] = STATE(2071), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2071), - [sym_delete_statement] = STATE(2071), - [sym_raise_statement] = STATE(2071), - [sym_pass_statement] = STATE(2071), - [sym_break_statement] = STATE(2071), - [sym_continue_statement] = STATE(2071), - [sym_global_statement] = STATE(2071), - [sym_nonlocal_statement] = STATE(2071), - [sym_exec_statement] = STATE(2071), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym__simple_statements] = STATE(650), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(399), - [sym__indent] = ACTIONS(401), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(401), + [sym__indent] = ACTIONS(403), + [sym_string_start] = ACTIONS(115), }, [58] = { - [sym__simple_statements] = STATE(620), - [sym_import_statement] = STATE(2053), - [sym_future_import_statement] = STATE(2053), - [sym_import_from_statement] = STATE(2053), - [sym_print_statement] = STATE(2053), - [sym_assert_statement] = STATE(2053), - [sym_expression_statement] = STATE(2053), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2053), - [sym_delete_statement] = STATE(2053), - [sym_raise_statement] = STATE(2053), - [sym_pass_statement] = STATE(2053), - [sym_break_statement] = STATE(2053), - [sym_continue_statement] = STATE(2053), - [sym_global_statement] = STATE(2053), - [sym_nonlocal_statement] = STATE(2053), - [sym_exec_statement] = STATE(2053), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym__simple_statements] = STATE(660), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(403), - [sym__indent] = ACTIONS(405), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(405), + [sym__indent] = ACTIONS(407), + [sym_string_start] = ACTIONS(115), }, [59] = { - [sym__simple_statements] = STATE(635), - [sym_import_statement] = STATE(2144), - [sym_future_import_statement] = STATE(2144), - [sym_import_from_statement] = STATE(2144), - [sym_print_statement] = STATE(2144), - [sym_assert_statement] = STATE(2144), - [sym_expression_statement] = STATE(2144), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2144), - [sym_delete_statement] = STATE(2144), - [sym_raise_statement] = STATE(2144), - [sym_pass_statement] = STATE(2144), - [sym_break_statement] = STATE(2144), - [sym_continue_statement] = STATE(2144), - [sym_global_statement] = STATE(2144), - [sym_nonlocal_statement] = STATE(2144), - [sym_exec_statement] = STATE(2144), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym__simple_statements] = STATE(659), + [sym_import_statement] = STATE(2112), + [sym_future_import_statement] = STATE(2112), + [sym_import_from_statement] = STATE(2112), + [sym_print_statement] = STATE(2112), + [sym_assert_statement] = STATE(2112), + [sym_expression_statement] = STATE(2112), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2112), + [sym_delete_statement] = STATE(2112), + [sym_raise_statement] = STATE(2112), + [sym_pass_statement] = STATE(2112), + [sym_break_statement] = STATE(2112), + [sym_continue_statement] = STATE(2112), + [sym_global_statement] = STATE(2112), + [sym_nonlocal_statement] = STATE(2112), + [sym_exec_statement] = STATE(2112), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(407), - [sym__indent] = ACTIONS(409), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(409), + [sym__indent] = ACTIONS(411), + [sym_string_start] = ACTIONS(115), }, [60] = { - [sym__simple_statements] = STATE(1714), - [sym_import_statement] = STATE(2188), - [sym_future_import_statement] = STATE(2188), - [sym_import_from_statement] = STATE(2188), - [sym_print_statement] = STATE(2188), - [sym_assert_statement] = STATE(2188), - [sym_expression_statement] = STATE(2188), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2188), - [sym_delete_statement] = STATE(2188), - [sym_raise_statement] = STATE(2188), - [sym_pass_statement] = STATE(2188), - [sym_break_statement] = STATE(2188), - [sym_continue_statement] = STATE(2188), - [sym_global_statement] = STATE(2188), - [sym_nonlocal_statement] = STATE(2188), - [sym_exec_statement] = STATE(2188), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym__simple_statements] = STATE(617), + [sym_import_statement] = STATE(2045), + [sym_future_import_statement] = STATE(2045), + [sym_import_from_statement] = STATE(2045), + [sym_print_statement] = STATE(2045), + [sym_assert_statement] = STATE(2045), + [sym_expression_statement] = STATE(2045), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2045), + [sym_delete_statement] = STATE(2045), + [sym_raise_statement] = STATE(2045), + [sym_pass_statement] = STATE(2045), + [sym_break_statement] = STATE(2045), + [sym_continue_statement] = STATE(2045), + [sym_global_statement] = STATE(2045), + [sym_nonlocal_statement] = STATE(2045), + [sym_exec_statement] = STATE(2045), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(411), - [sym__indent] = ACTIONS(413), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(413), + [sym__indent] = ACTIONS(415), + [sym_string_start] = ACTIONS(115), }, [61] = { - [sym_import_statement] = STATE(2326), - [sym_future_import_statement] = STATE(2326), - [sym_import_from_statement] = STATE(2326), - [sym_print_statement] = STATE(2326), - [sym_assert_statement] = STATE(2326), - [sym_expression_statement] = STATE(2326), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2326), - [sym_delete_statement] = STATE(2326), - [sym_raise_statement] = STATE(2326), - [sym_pass_statement] = STATE(2326), - [sym_break_statement] = STATE(2326), - [sym_continue_statement] = STATE(2326), - [sym_global_statement] = STATE(2326), - [sym_nonlocal_statement] = STATE(2326), - [sym_exec_statement] = STATE(2326), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_import_statement] = STATE(2325), + [sym_future_import_statement] = STATE(2325), + [sym_import_from_statement] = STATE(2325), + [sym_print_statement] = STATE(2325), + [sym_assert_statement] = STATE(2325), + [sym_expression_statement] = STATE(2325), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2325), + [sym_delete_statement] = STATE(2325), + [sym_raise_statement] = STATE(2325), + [sym_pass_statement] = STATE(2325), + [sym_break_statement] = STATE(2325), + [sym_continue_statement] = STATE(2325), + [sym_global_statement] = STATE(2325), + [sym_nonlocal_statement] = STATE(2325), + [sym_exec_statement] = STATE(2325), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(415), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(417), + [sym_string_start] = ACTIONS(115), }, [62] = { - [sym_import_statement] = STATE(2326), - [sym_future_import_statement] = STATE(2326), - [sym_import_from_statement] = STATE(2326), - [sym_print_statement] = STATE(2326), - [sym_assert_statement] = STATE(2326), - [sym_expression_statement] = STATE(2326), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2326), - [sym_delete_statement] = STATE(2326), - [sym_raise_statement] = STATE(2326), - [sym_pass_statement] = STATE(2326), - [sym_break_statement] = STATE(2326), - [sym_continue_statement] = STATE(2326), - [sym_global_statement] = STATE(2326), - [sym_nonlocal_statement] = STATE(2326), - [sym_exec_statement] = STATE(2326), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_import_statement] = STATE(2325), + [sym_future_import_statement] = STATE(2325), + [sym_import_from_statement] = STATE(2325), + [sym_print_statement] = STATE(2325), + [sym_assert_statement] = STATE(2325), + [sym_expression_statement] = STATE(2325), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2325), + [sym_delete_statement] = STATE(2325), + [sym_raise_statement] = STATE(2325), + [sym_pass_statement] = STATE(2325), + [sym_break_statement] = STATE(2325), + [sym_continue_statement] = STATE(2325), + [sym_global_statement] = STATE(2325), + [sym_nonlocal_statement] = STATE(2325), + [sym_exec_statement] = STATE(2325), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(417), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(419), + [sym_string_start] = ACTIONS(115), }, [63] = { - [sym_import_statement] = STATE(2326), - [sym_future_import_statement] = STATE(2326), - [sym_import_from_statement] = STATE(2326), - [sym_print_statement] = STATE(2326), - [sym_assert_statement] = STATE(2326), - [sym_expression_statement] = STATE(2326), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2326), - [sym_delete_statement] = STATE(2326), - [sym_raise_statement] = STATE(2326), - [sym_pass_statement] = STATE(2326), - [sym_break_statement] = STATE(2326), - [sym_continue_statement] = STATE(2326), - [sym_global_statement] = STATE(2326), - [sym_nonlocal_statement] = STATE(2326), - [sym_exec_statement] = STATE(2326), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_import_statement] = STATE(2325), + [sym_future_import_statement] = STATE(2325), + [sym_import_from_statement] = STATE(2325), + [sym_print_statement] = STATE(2325), + [sym_assert_statement] = STATE(2325), + [sym_expression_statement] = STATE(2325), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2325), + [sym_delete_statement] = STATE(2325), + [sym_raise_statement] = STATE(2325), + [sym_pass_statement] = STATE(2325), + [sym_break_statement] = STATE(2325), + [sym_continue_statement] = STATE(2325), + [sym_global_statement] = STATE(2325), + [sym_nonlocal_statement] = STATE(2325), + [sym_exec_statement] = STATE(2325), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(419), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(421), + [sym_string_start] = ACTIONS(115), }, [64] = { - [sym_import_statement] = STATE(2326), - [sym_future_import_statement] = STATE(2326), - [sym_import_from_statement] = STATE(2326), - [sym_print_statement] = STATE(2326), - [sym_assert_statement] = STATE(2326), - [sym_expression_statement] = STATE(2326), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2326), - [sym_delete_statement] = STATE(2326), - [sym_raise_statement] = STATE(2326), - [sym_pass_statement] = STATE(2326), - [sym_break_statement] = STATE(2326), - [sym_continue_statement] = STATE(2326), - [sym_global_statement] = STATE(2326), - [sym_nonlocal_statement] = STATE(2326), - [sym_exec_statement] = STATE(2326), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_import_statement] = STATE(2325), + [sym_future_import_statement] = STATE(2325), + [sym_import_from_statement] = STATE(2325), + [sym_print_statement] = STATE(2325), + [sym_assert_statement] = STATE(2325), + [sym_expression_statement] = STATE(2325), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2325), + [sym_delete_statement] = STATE(2325), + [sym_raise_statement] = STATE(2325), + [sym_pass_statement] = STATE(2325), + [sym_break_statement] = STATE(2325), + [sym_continue_statement] = STATE(2325), + [sym_global_statement] = STATE(2325), + [sym_nonlocal_statement] = STATE(2325), + [sym_exec_statement] = STATE(2325), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(421), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(423), + [sym_string_start] = ACTIONS(115), }, [65] = { - [sym_import_statement] = STATE(2326), - [sym_future_import_statement] = STATE(2326), - [sym_import_from_statement] = STATE(2326), - [sym_print_statement] = STATE(2326), - [sym_assert_statement] = STATE(2326), - [sym_expression_statement] = STATE(2326), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2326), - [sym_delete_statement] = STATE(2326), - [sym_raise_statement] = STATE(2326), - [sym_pass_statement] = STATE(2326), - [sym_break_statement] = STATE(2326), - [sym_continue_statement] = STATE(2326), - [sym_global_statement] = STATE(2326), - [sym_nonlocal_statement] = STATE(2326), - [sym_exec_statement] = STATE(2326), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_import_statement] = STATE(2325), + [sym_future_import_statement] = STATE(2325), + [sym_import_from_statement] = STATE(2325), + [sym_print_statement] = STATE(2325), + [sym_assert_statement] = STATE(2325), + [sym_expression_statement] = STATE(2325), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2325), + [sym_delete_statement] = STATE(2325), + [sym_raise_statement] = STATE(2325), + [sym_pass_statement] = STATE(2325), + [sym_break_statement] = STATE(2325), + [sym_continue_statement] = STATE(2325), + [sym_global_statement] = STATE(2325), + [sym_nonlocal_statement] = STATE(2325), + [sym_exec_statement] = STATE(2325), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(423), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(425), + [sym_string_start] = ACTIONS(115), }, [66] = { - [sym_import_statement] = STATE(2326), - [sym_future_import_statement] = STATE(2326), - [sym_import_from_statement] = STATE(2326), - [sym_print_statement] = STATE(2326), - [sym_assert_statement] = STATE(2326), - [sym_expression_statement] = STATE(2326), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2326), - [sym_delete_statement] = STATE(2326), - [sym_raise_statement] = STATE(2326), - [sym_pass_statement] = STATE(2326), - [sym_break_statement] = STATE(2326), - [sym_continue_statement] = STATE(2326), - [sym_global_statement] = STATE(2326), - [sym_nonlocal_statement] = STATE(2326), - [sym_exec_statement] = STATE(2326), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_import_statement] = STATE(2325), + [sym_future_import_statement] = STATE(2325), + [sym_import_from_statement] = STATE(2325), + [sym_print_statement] = STATE(2325), + [sym_assert_statement] = STATE(2325), + [sym_expression_statement] = STATE(2325), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2325), + [sym_delete_statement] = STATE(2325), + [sym_raise_statement] = STATE(2325), + [sym_pass_statement] = STATE(2325), + [sym_break_statement] = STATE(2325), + [sym_continue_statement] = STATE(2325), + [sym_global_statement] = STATE(2325), + [sym_nonlocal_statement] = STATE(2325), + [sym_exec_statement] = STATE(2325), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(425), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(427), + [sym_string_start] = ACTIONS(115), }, [67] = { - [sym_import_statement] = STATE(2326), - [sym_future_import_statement] = STATE(2326), - [sym_import_from_statement] = STATE(2326), - [sym_print_statement] = STATE(2326), - [sym_assert_statement] = STATE(2326), - [sym_expression_statement] = STATE(2326), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2326), - [sym_delete_statement] = STATE(2326), - [sym_raise_statement] = STATE(2326), - [sym_pass_statement] = STATE(2326), - [sym_break_statement] = STATE(2326), - [sym_continue_statement] = STATE(2326), - [sym_global_statement] = STATE(2326), - [sym_nonlocal_statement] = STATE(2326), - [sym_exec_statement] = STATE(2326), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_import_statement] = STATE(2325), + [sym_future_import_statement] = STATE(2325), + [sym_import_from_statement] = STATE(2325), + [sym_print_statement] = STATE(2325), + [sym_assert_statement] = STATE(2325), + [sym_expression_statement] = STATE(2325), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2325), + [sym_delete_statement] = STATE(2325), + [sym_raise_statement] = STATE(2325), + [sym_pass_statement] = STATE(2325), + [sym_break_statement] = STATE(2325), + [sym_continue_statement] = STATE(2325), + [sym_global_statement] = STATE(2325), + [sym_nonlocal_statement] = STATE(2325), + [sym_exec_statement] = STATE(2325), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(427), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(429), + [sym_string_start] = ACTIONS(115), }, [68] = { - [sym_import_statement] = STATE(2326), - [sym_future_import_statement] = STATE(2326), - [sym_import_from_statement] = STATE(2326), - [sym_print_statement] = STATE(2326), - [sym_assert_statement] = STATE(2326), - [sym_expression_statement] = STATE(2326), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2326), - [sym_delete_statement] = STATE(2326), - [sym_raise_statement] = STATE(2326), - [sym_pass_statement] = STATE(2326), - [sym_break_statement] = STATE(2326), - [sym_continue_statement] = STATE(2326), - [sym_global_statement] = STATE(2326), - [sym_nonlocal_statement] = STATE(2326), - [sym_exec_statement] = STATE(2326), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_import_statement] = STATE(2325), + [sym_future_import_statement] = STATE(2325), + [sym_import_from_statement] = STATE(2325), + [sym_print_statement] = STATE(2325), + [sym_assert_statement] = STATE(2325), + [sym_expression_statement] = STATE(2325), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2325), + [sym_delete_statement] = STATE(2325), + [sym_raise_statement] = STATE(2325), + [sym_pass_statement] = STATE(2325), + [sym_break_statement] = STATE(2325), + [sym_continue_statement] = STATE(2325), + [sym_global_statement] = STATE(2325), + [sym_nonlocal_statement] = STATE(2325), + [sym_exec_statement] = STATE(2325), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(429), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(431), + [sym_string_start] = ACTIONS(115), }, [69] = { - [sym_import_statement] = STATE(2326), - [sym_future_import_statement] = STATE(2326), - [sym_import_from_statement] = STATE(2326), - [sym_print_statement] = STATE(2326), - [sym_assert_statement] = STATE(2326), - [sym_expression_statement] = STATE(2326), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2326), - [sym_delete_statement] = STATE(2326), - [sym_raise_statement] = STATE(2326), - [sym_pass_statement] = STATE(2326), - [sym_break_statement] = STATE(2326), - [sym_continue_statement] = STATE(2326), - [sym_global_statement] = STATE(2326), - [sym_nonlocal_statement] = STATE(2326), - [sym_exec_statement] = STATE(2326), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_import_statement] = STATE(2325), + [sym_future_import_statement] = STATE(2325), + [sym_import_from_statement] = STATE(2325), + [sym_print_statement] = STATE(2325), + [sym_assert_statement] = STATE(2325), + [sym_expression_statement] = STATE(2325), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2325), + [sym_delete_statement] = STATE(2325), + [sym_raise_statement] = STATE(2325), + [sym_pass_statement] = STATE(2325), + [sym_break_statement] = STATE(2325), + [sym_continue_statement] = STATE(2325), + [sym_global_statement] = STATE(2325), + [sym_nonlocal_statement] = STATE(2325), + [sym_exec_statement] = STATE(2325), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(431), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(433), + [sym_string_start] = ACTIONS(115), }, [70] = { - [sym_import_statement] = STATE(2326), - [sym_future_import_statement] = STATE(2326), - [sym_import_from_statement] = STATE(2326), - [sym_print_statement] = STATE(2326), - [sym_assert_statement] = STATE(2326), - [sym_expression_statement] = STATE(2326), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2326), - [sym_delete_statement] = STATE(2326), - [sym_raise_statement] = STATE(2326), - [sym_pass_statement] = STATE(2326), - [sym_break_statement] = STATE(2326), - [sym_continue_statement] = STATE(2326), - [sym_global_statement] = STATE(2326), - [sym_nonlocal_statement] = STATE(2326), - [sym_exec_statement] = STATE(2326), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_import_statement] = STATE(2325), + [sym_future_import_statement] = STATE(2325), + [sym_import_from_statement] = STATE(2325), + [sym_print_statement] = STATE(2325), + [sym_assert_statement] = STATE(2325), + [sym_expression_statement] = STATE(2325), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2325), + [sym_delete_statement] = STATE(2325), + [sym_raise_statement] = STATE(2325), + [sym_pass_statement] = STATE(2325), + [sym_break_statement] = STATE(2325), + [sym_continue_statement] = STATE(2325), + [sym_global_statement] = STATE(2325), + [sym_nonlocal_statement] = STATE(2325), + [sym_exec_statement] = STATE(2325), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(433), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(435), + [sym_string_start] = ACTIONS(115), }, [71] = { - [sym_import_statement] = STATE(2326), - [sym_future_import_statement] = STATE(2326), - [sym_import_from_statement] = STATE(2326), - [sym_print_statement] = STATE(2326), - [sym_assert_statement] = STATE(2326), - [sym_expression_statement] = STATE(2326), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2326), - [sym_delete_statement] = STATE(2326), - [sym_raise_statement] = STATE(2326), - [sym_pass_statement] = STATE(2326), - [sym_break_statement] = STATE(2326), - [sym_continue_statement] = STATE(2326), - [sym_global_statement] = STATE(2326), - [sym_nonlocal_statement] = STATE(2326), - [sym_exec_statement] = STATE(2326), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_import_statement] = STATE(2325), + [sym_future_import_statement] = STATE(2325), + [sym_import_from_statement] = STATE(2325), + [sym_print_statement] = STATE(2325), + [sym_assert_statement] = STATE(2325), + [sym_expression_statement] = STATE(2325), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2325), + [sym_delete_statement] = STATE(2325), + [sym_raise_statement] = STATE(2325), + [sym_pass_statement] = STATE(2325), + [sym_break_statement] = STATE(2325), + [sym_continue_statement] = STATE(2325), + [sym_global_statement] = STATE(2325), + [sym_nonlocal_statement] = STATE(2325), + [sym_exec_statement] = STATE(2325), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(435), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(437), + [sym_string_start] = ACTIONS(115), }, [72] = { - [sym_import_statement] = STATE(2326), - [sym_future_import_statement] = STATE(2326), - [sym_import_from_statement] = STATE(2326), - [sym_print_statement] = STATE(2326), - [sym_assert_statement] = STATE(2326), - [sym_expression_statement] = STATE(2326), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2326), - [sym_delete_statement] = STATE(2326), - [sym_raise_statement] = STATE(2326), - [sym_pass_statement] = STATE(2326), - [sym_break_statement] = STATE(2326), - [sym_continue_statement] = STATE(2326), - [sym_global_statement] = STATE(2326), - [sym_nonlocal_statement] = STATE(2326), - [sym_exec_statement] = STATE(2326), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_import_statement] = STATE(2325), + [sym_future_import_statement] = STATE(2325), + [sym_import_from_statement] = STATE(2325), + [sym_print_statement] = STATE(2325), + [sym_assert_statement] = STATE(2325), + [sym_expression_statement] = STATE(2325), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2325), + [sym_delete_statement] = STATE(2325), + [sym_raise_statement] = STATE(2325), + [sym_pass_statement] = STATE(2325), + [sym_break_statement] = STATE(2325), + [sym_continue_statement] = STATE(2325), + [sym_global_statement] = STATE(2325), + [sym_nonlocal_statement] = STATE(2325), + [sym_exec_statement] = STATE(2325), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(437), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(439), + [sym_string_start] = ACTIONS(115), }, [73] = { - [sym_import_statement] = STATE(2326), - [sym_future_import_statement] = STATE(2326), - [sym_import_from_statement] = STATE(2326), - [sym_print_statement] = STATE(2326), - [sym_assert_statement] = STATE(2326), - [sym_expression_statement] = STATE(2326), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2326), - [sym_delete_statement] = STATE(2326), - [sym_raise_statement] = STATE(2326), - [sym_pass_statement] = STATE(2326), - [sym_break_statement] = STATE(2326), - [sym_continue_statement] = STATE(2326), - [sym_global_statement] = STATE(2326), - [sym_nonlocal_statement] = STATE(2326), - [sym_exec_statement] = STATE(2326), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_import_statement] = STATE(2325), + [sym_future_import_statement] = STATE(2325), + [sym_import_from_statement] = STATE(2325), + [sym_print_statement] = STATE(2325), + [sym_assert_statement] = STATE(2325), + [sym_expression_statement] = STATE(2325), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2325), + [sym_delete_statement] = STATE(2325), + [sym_raise_statement] = STATE(2325), + [sym_pass_statement] = STATE(2325), + [sym_break_statement] = STATE(2325), + [sym_continue_statement] = STATE(2325), + [sym_global_statement] = STATE(2325), + [sym_nonlocal_statement] = STATE(2325), + [sym_exec_statement] = STATE(2325), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(439), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(441), + [sym_string_start] = ACTIONS(115), }, [74] = { - [sym_import_statement] = STATE(2326), - [sym_future_import_statement] = STATE(2326), - [sym_import_from_statement] = STATE(2326), - [sym_print_statement] = STATE(2326), - [sym_assert_statement] = STATE(2326), - [sym_expression_statement] = STATE(2326), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2326), - [sym_delete_statement] = STATE(2326), - [sym_raise_statement] = STATE(2326), - [sym_pass_statement] = STATE(2326), - [sym_break_statement] = STATE(2326), - [sym_continue_statement] = STATE(2326), - [sym_global_statement] = STATE(2326), - [sym_nonlocal_statement] = STATE(2326), - [sym_exec_statement] = STATE(2326), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_import_statement] = STATE(2325), + [sym_future_import_statement] = STATE(2325), + [sym_import_from_statement] = STATE(2325), + [sym_print_statement] = STATE(2325), + [sym_assert_statement] = STATE(2325), + [sym_expression_statement] = STATE(2325), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2325), + [sym_delete_statement] = STATE(2325), + [sym_raise_statement] = STATE(2325), + [sym_pass_statement] = STATE(2325), + [sym_break_statement] = STATE(2325), + [sym_continue_statement] = STATE(2325), + [sym_global_statement] = STATE(2325), + [sym_nonlocal_statement] = STATE(2325), + [sym_exec_statement] = STATE(2325), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(441), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(443), + [sym_string_start] = ACTIONS(115), }, [75] = { - [sym_import_statement] = STATE(2326), - [sym_future_import_statement] = STATE(2326), - [sym_import_from_statement] = STATE(2326), - [sym_print_statement] = STATE(2326), - [sym_assert_statement] = STATE(2326), - [sym_expression_statement] = STATE(2326), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2326), - [sym_delete_statement] = STATE(2326), - [sym_raise_statement] = STATE(2326), - [sym_pass_statement] = STATE(2326), - [sym_break_statement] = STATE(2326), - [sym_continue_statement] = STATE(2326), - [sym_global_statement] = STATE(2326), - [sym_nonlocal_statement] = STATE(2326), - [sym_exec_statement] = STATE(2326), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_import_statement] = STATE(2325), + [sym_future_import_statement] = STATE(2325), + [sym_import_from_statement] = STATE(2325), + [sym_print_statement] = STATE(2325), + [sym_assert_statement] = STATE(2325), + [sym_expression_statement] = STATE(2325), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2325), + [sym_delete_statement] = STATE(2325), + [sym_raise_statement] = STATE(2325), + [sym_pass_statement] = STATE(2325), + [sym_break_statement] = STATE(2325), + [sym_continue_statement] = STATE(2325), + [sym_global_statement] = STATE(2325), + [sym_nonlocal_statement] = STATE(2325), + [sym_exec_statement] = STATE(2325), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(443), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(445), + [sym_string_start] = ACTIONS(115), }, [76] = { - [sym_import_statement] = STATE(2326), - [sym_future_import_statement] = STATE(2326), - [sym_import_from_statement] = STATE(2326), - [sym_print_statement] = STATE(2326), - [sym_assert_statement] = STATE(2326), - [sym_expression_statement] = STATE(2326), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2326), - [sym_delete_statement] = STATE(2326), - [sym_raise_statement] = STATE(2326), - [sym_pass_statement] = STATE(2326), - [sym_break_statement] = STATE(2326), - [sym_continue_statement] = STATE(2326), - [sym_global_statement] = STATE(2326), - [sym_nonlocal_statement] = STATE(2326), - [sym_exec_statement] = STATE(2326), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_import_statement] = STATE(2325), + [sym_future_import_statement] = STATE(2325), + [sym_import_from_statement] = STATE(2325), + [sym_print_statement] = STATE(2325), + [sym_assert_statement] = STATE(2325), + [sym_expression_statement] = STATE(2325), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2325), + [sym_delete_statement] = STATE(2325), + [sym_raise_statement] = STATE(2325), + [sym_pass_statement] = STATE(2325), + [sym_break_statement] = STATE(2325), + [sym_continue_statement] = STATE(2325), + [sym_global_statement] = STATE(2325), + [sym_nonlocal_statement] = STATE(2325), + [sym_exec_statement] = STATE(2325), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(445), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(447), + [sym_string_start] = ACTIONS(115), }, [77] = { - [sym_import_statement] = STATE(2326), - [sym_future_import_statement] = STATE(2326), - [sym_import_from_statement] = STATE(2326), - [sym_print_statement] = STATE(2326), - [sym_assert_statement] = STATE(2326), - [sym_expression_statement] = STATE(2326), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2326), - [sym_delete_statement] = STATE(2326), - [sym_raise_statement] = STATE(2326), - [sym_pass_statement] = STATE(2326), - [sym_break_statement] = STATE(2326), - [sym_continue_statement] = STATE(2326), - [sym_global_statement] = STATE(2326), - [sym_nonlocal_statement] = STATE(2326), - [sym_exec_statement] = STATE(2326), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_import_statement] = STATE(2325), + [sym_future_import_statement] = STATE(2325), + [sym_import_from_statement] = STATE(2325), + [sym_print_statement] = STATE(2325), + [sym_assert_statement] = STATE(2325), + [sym_expression_statement] = STATE(2325), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2325), + [sym_delete_statement] = STATE(2325), + [sym_raise_statement] = STATE(2325), + [sym_pass_statement] = STATE(2325), + [sym_break_statement] = STATE(2325), + [sym_continue_statement] = STATE(2325), + [sym_global_statement] = STATE(2325), + [sym_nonlocal_statement] = STATE(2325), + [sym_exec_statement] = STATE(2325), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(449), + [sym_string_start] = ACTIONS(115), }, [78] = { - [sym_import_statement] = STATE(2326), - [sym_future_import_statement] = STATE(2326), - [sym_import_from_statement] = STATE(2326), - [sym_print_statement] = STATE(2326), - [sym_assert_statement] = STATE(2326), - [sym_expression_statement] = STATE(2326), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2326), - [sym_delete_statement] = STATE(2326), - [sym_raise_statement] = STATE(2326), - [sym_pass_statement] = STATE(2326), - [sym_break_statement] = STATE(2326), - [sym_continue_statement] = STATE(2326), - [sym_global_statement] = STATE(2326), - [sym_nonlocal_statement] = STATE(2326), - [sym_exec_statement] = STATE(2326), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_import_statement] = STATE(2325), + [sym_future_import_statement] = STATE(2325), + [sym_import_from_statement] = STATE(2325), + [sym_print_statement] = STATE(2325), + [sym_assert_statement] = STATE(2325), + [sym_expression_statement] = STATE(2325), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2325), + [sym_delete_statement] = STATE(2325), + [sym_raise_statement] = STATE(2325), + [sym_pass_statement] = STATE(2325), + [sym_break_statement] = STATE(2325), + [sym_continue_statement] = STATE(2325), + [sym_global_statement] = STATE(2325), + [sym_nonlocal_statement] = STATE(2325), + [sym_exec_statement] = STATE(2325), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(449), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(451), + [sym_string_start] = ACTIONS(115), }, [79] = { - [sym_import_statement] = STATE(2326), - [sym_future_import_statement] = STATE(2326), - [sym_import_from_statement] = STATE(2326), - [sym_print_statement] = STATE(2326), - [sym_assert_statement] = STATE(2326), - [sym_expression_statement] = STATE(2326), - [sym_named_expression] = STATE(1529), - [sym__named_expression_lhs] = STATE(2396), - [sym_return_statement] = STATE(2326), - [sym_delete_statement] = STATE(2326), - [sym_raise_statement] = STATE(2326), - [sym_pass_statement] = STATE(2326), - [sym_break_statement] = STATE(2326), - [sym_continue_statement] = STATE(2326), - [sym_global_statement] = STATE(2326), - [sym_nonlocal_statement] = STATE(2326), - [sym_exec_statement] = STATE(2326), - [sym_not_operator] = STATE(1529), - [sym_boolean_operator] = STATE(1529), - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_comparison_operator] = STATE(1529), - [sym_lambda] = STATE(1529), - [sym_assignment] = STATE(2327), - [sym_augmented_assignment] = STATE(2327), - [sym_pattern_list] = STATE(1514), - [sym_yield] = STATE(2327), - [sym_attribute] = STATE(550), - [sym_subscript] = STATE(550), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1491), - [sym_list_pattern] = STATE(1491), - [sym_list_splat_pattern] = STATE(566), - [sym_as_pattern] = STATE(1529), - [sym_expression] = STATE(1697), - [sym_primary_expression] = STATE(846), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_conditional_expression] = STATE(1529), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_import] = ACTIONS(47), - [anon_sym_from] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_print] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_del] = ACTIONS(59), - [anon_sym_raise] = ACTIONS(61), - [anon_sym_pass] = ACTIONS(63), - [anon_sym_break] = ACTIONS(65), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_global] = ACTIONS(69), - [anon_sym_nonlocal] = ACTIONS(71), - [anon_sym_exec] = ACTIONS(73), - [anon_sym_async] = ACTIONS(101), - [anon_sym_not] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_lambda] = ACTIONS(93), - [anon_sym_yield] = ACTIONS(95), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(99), - [anon_sym_match] = ACTIONS(101), - [anon_sym_type] = ACTIONS(103), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(107), + [sym_import_statement] = STATE(2325), + [sym_future_import_statement] = STATE(2325), + [sym_import_from_statement] = STATE(2325), + [sym_print_statement] = STATE(2325), + [sym_assert_statement] = STATE(2325), + [sym_expression_statement] = STATE(2325), + [sym_named_expression] = STATE(1526), + [sym__named_expression_lhs] = STATE(2402), + [sym_return_statement] = STATE(2325), + [sym_delete_statement] = STATE(2325), + [sym_raise_statement] = STATE(2325), + [sym_pass_statement] = STATE(2325), + [sym_break_statement] = STATE(2325), + [sym_continue_statement] = STATE(2325), + [sym_global_statement] = STATE(2325), + [sym_nonlocal_statement] = STATE(2325), + [sym_exec_statement] = STATE(2325), + [sym_not_operator] = STATE(1526), + [sym_boolean_operator] = STATE(1526), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_comparison_operator] = STATE(1526), + [sym_lambda] = STATE(1526), + [sym_assignment] = STATE(2331), + [sym_augmented_assignment] = STATE(2331), + [sym_pattern_list] = STATE(1512), + [sym_yield] = STATE(2331), + [sym_attribute] = STATE(568), + [sym_subscript] = STATE(568), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_pattern] = STATE(1504), + [sym_tuple_pattern] = STATE(1493), + [sym_list_pattern] = STATE(1493), + [sym_list_splat_pattern] = STATE(565), + [sym_as_pattern] = STATE(1526), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(895), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_conditional_expression] = STATE(1526), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_import] = ACTIONS(49), + [anon_sym_from] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_print] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_del] = ACTIONS(61), + [anon_sym_raise] = ACTIONS(63), + [anon_sym_pass] = ACTIONS(65), + [anon_sym_break] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(69), + [anon_sym_global] = ACTIONS(71), + [anon_sym_nonlocal] = ACTIONS(73), + [anon_sym_exec] = ACTIONS(75), + [anon_sym_async] = ACTIONS(103), + [anon_sym_not] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_lambda] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(97), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(101), + [anon_sym_match] = ACTIONS(103), + [anon_sym_type] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(109), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(113), + [sym_string_start] = ACTIONS(115), }, [80] = { - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_attribute] = STATE(971), - [sym_subscript] = STATE(971), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_list_splat_pattern] = STATE(989), - [sym_primary_expression] = STATE(859), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_PLUS_EQ] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(451), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(305), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(455), - [anon_sym_print] = ACTIONS(457), - [anon_sym_GT_GT] = ACTIONS(303), - [anon_sym_exec] = ACTIONS(457), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(457), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(91), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(303), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(303), - [anon_sym_SLASH_SLASH] = ACTIONS(303), - [anon_sym_STAR_STAR] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_AMP] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LT_LT] = ACTIONS(303), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [anon_sym_DASH_EQ] = ACTIONS(290), - [anon_sym_STAR_EQ] = ACTIONS(290), - [anon_sym_SLASH_EQ] = ACTIONS(290), - [anon_sym_AT_EQ] = ACTIONS(290), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(290), - [anon_sym_PERCENT_EQ] = ACTIONS(290), - [anon_sym_STAR_STAR_EQ] = ACTIONS(290), - [anon_sym_GT_GT_EQ] = ACTIONS(290), - [anon_sym_LT_LT_EQ] = ACTIONS(290), - [anon_sym_AMP_EQ] = ACTIONS(290), - [anon_sym_CARET_EQ] = ACTIONS(290), - [anon_sym_PIPE_EQ] = ACTIONS(290), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(459), - [anon_sym_match] = ACTIONS(457), - [anon_sym_type] = ACTIONS(109), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(105), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_attribute] = STATE(964), + [sym_subscript] = STATE(964), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_list_splat_pattern] = STATE(960), + [sym_primary_expression] = STATE(901), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_EQ] = ACTIONS(288), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_PLUS_EQ] = ACTIONS(292), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_COLON] = ACTIONS(326), + [anon_sym_LPAREN] = ACTIONS(455), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(304), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(457), + [anon_sym_print] = ACTIONS(459), + [anon_sym_GT_GT] = ACTIONS(302), + [anon_sym_exec] = ACTIONS(459), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(459), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(302), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(302), + [anon_sym_SLASH_SLASH] = ACTIONS(302), + [anon_sym_STAR_STAR] = ACTIONS(302), + [anon_sym_PIPE] = ACTIONS(302), + [anon_sym_AMP] = ACTIONS(302), + [anon_sym_CARET] = ACTIONS(302), + [anon_sym_LT_LT] = ACTIONS(302), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [anon_sym_DASH_EQ] = ACTIONS(292), + [anon_sym_STAR_EQ] = ACTIONS(292), + [anon_sym_SLASH_EQ] = ACTIONS(292), + [anon_sym_AT_EQ] = ACTIONS(292), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(292), + [anon_sym_PERCENT_EQ] = ACTIONS(292), + [anon_sym_STAR_STAR_EQ] = ACTIONS(292), + [anon_sym_GT_GT_EQ] = ACTIONS(292), + [anon_sym_LT_LT_EQ] = ACTIONS(292), + [anon_sym_AMP_EQ] = ACTIONS(292), + [anon_sym_CARET_EQ] = ACTIONS(292), + [anon_sym_PIPE_EQ] = ACTIONS(292), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(461), + [anon_sym_match] = ACTIONS(459), + [anon_sym_type] = ACTIONS(111), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(107), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(301), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(300), + [sym_string_start] = ACTIONS(115), }, [81] = { - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_attribute] = STATE(971), - [sym_subscript] = STATE(971), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_list_splat_pattern] = STATE(989), - [sym_primary_expression] = STATE(859), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_PLUS_EQ] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(451), - [anon_sym_COLON] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(305), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(455), - [anon_sym_print] = ACTIONS(457), - [anon_sym_GT_GT] = ACTIONS(303), - [anon_sym_exec] = ACTIONS(457), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(457), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(91), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(303), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(303), - [anon_sym_SLASH_SLASH] = ACTIONS(303), - [anon_sym_STAR_STAR] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_AMP] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LT_LT] = ACTIONS(303), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [anon_sym_DASH_EQ] = ACTIONS(290), - [anon_sym_STAR_EQ] = ACTIONS(290), - [anon_sym_SLASH_EQ] = ACTIONS(290), - [anon_sym_AT_EQ] = ACTIONS(290), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(290), - [anon_sym_PERCENT_EQ] = ACTIONS(290), - [anon_sym_STAR_STAR_EQ] = ACTIONS(290), - [anon_sym_GT_GT_EQ] = ACTIONS(290), - [anon_sym_LT_LT_EQ] = ACTIONS(290), - [anon_sym_AMP_EQ] = ACTIONS(290), - [anon_sym_CARET_EQ] = ACTIONS(290), - [anon_sym_PIPE_EQ] = ACTIONS(290), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(459), - [anon_sym_match] = ACTIONS(457), - [anon_sym_type] = ACTIONS(109), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(105), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_attribute] = STATE(964), + [sym_subscript] = STATE(964), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_list_splat_pattern] = STATE(960), + [sym_primary_expression] = STATE(901), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_EQ] = ACTIONS(288), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_PLUS_EQ] = ACTIONS(292), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_COLON] = ACTIONS(288), + [anon_sym_LPAREN] = ACTIONS(455), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(304), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(457), + [anon_sym_print] = ACTIONS(459), + [anon_sym_GT_GT] = ACTIONS(302), + [anon_sym_exec] = ACTIONS(459), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(459), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(302), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(302), + [anon_sym_SLASH_SLASH] = ACTIONS(302), + [anon_sym_STAR_STAR] = ACTIONS(302), + [anon_sym_PIPE] = ACTIONS(302), + [anon_sym_AMP] = ACTIONS(302), + [anon_sym_CARET] = ACTIONS(302), + [anon_sym_LT_LT] = ACTIONS(302), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [anon_sym_DASH_EQ] = ACTIONS(292), + [anon_sym_STAR_EQ] = ACTIONS(292), + [anon_sym_SLASH_EQ] = ACTIONS(292), + [anon_sym_AT_EQ] = ACTIONS(292), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(292), + [anon_sym_PERCENT_EQ] = ACTIONS(292), + [anon_sym_STAR_STAR_EQ] = ACTIONS(292), + [anon_sym_GT_GT_EQ] = ACTIONS(292), + [anon_sym_LT_LT_EQ] = ACTIONS(292), + [anon_sym_AMP_EQ] = ACTIONS(292), + [anon_sym_CARET_EQ] = ACTIONS(292), + [anon_sym_PIPE_EQ] = ACTIONS(292), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(461), + [anon_sym_match] = ACTIONS(459), + [anon_sym_type] = ACTIONS(111), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(107), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(301), - [sym_string_start] = ACTIONS(113), + [sym__newline] = ACTIONS(300), + [sym_string_start] = ACTIONS(115), }, [82] = { - [sym_binary_operator] = STATE(1266), - [sym_unary_operator] = STATE(1266), - [sym_attribute] = STATE(1266), - [sym_subscript] = STATE(1266), - [sym_call] = STATE(1266), - [sym_generator_expression] = STATE(1266), - [sym_parenthesized_expression] = STATE(1266), - [sym_list_splat_pattern] = STATE(1260), - [sym_primary_expression] = STATE(1475), - [sym_list] = STATE(1266), - [sym_set] = STATE(1266), - [sym_tuple] = STATE(1266), - [sym_dictionary] = STATE(1266), - [sym_list_comprehension] = STATE(1266), - [sym_dictionary_comprehension] = STATE(1266), - [sym_set_comprehension] = STATE(1266), - [sym_concatenated_string] = STATE(1266), - [sym_python_string] = STATE(868), - [sym_await] = STATE(1266), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_PLUS_EQ] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_COLON] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_SEMI] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(471), - [anon_sym_COMMA] = ACTIONS(463), - [anon_sym_as] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_print] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(471), - [anon_sym_exec] = ACTIONS(476), - [anon_sym_in] = ACTIONS(461), - [anon_sym_if] = ACTIONS(461), - [anon_sym_async] = ACTIONS(476), - [anon_sym_not] = ACTIONS(461), - [anon_sym_and] = ACTIONS(461), - [anon_sym_or] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(471), - [anon_sym_SLASH] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_SLASH_SLASH] = ACTIONS(471), - [anon_sym_STAR_STAR] = ACTIONS(471), - [anon_sym_PIPE] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_CARET] = ACTIONS(471), - [anon_sym_LT_LT] = ACTIONS(471), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_LT_EQ] = ACTIONS(463), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_LT_GT] = ACTIONS(463), - [anon_sym_is] = ACTIONS(461), - [anon_sym_DASH_EQ] = ACTIONS(463), - [anon_sym_STAR_EQ] = ACTIONS(463), - [anon_sym_SLASH_EQ] = ACTIONS(463), - [anon_sym_AT_EQ] = ACTIONS(463), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(463), - [anon_sym_PERCENT_EQ] = ACTIONS(463), - [anon_sym_STAR_STAR_EQ] = ACTIONS(463), - [anon_sym_GT_GT_EQ] = ACTIONS(463), - [anon_sym_LT_LT_EQ] = ACTIONS(463), - [anon_sym_AMP_EQ] = ACTIONS(463), - [anon_sym_CARET_EQ] = ACTIONS(463), - [anon_sym_PIPE_EQ] = ACTIONS(463), - [sym_ellipsis] = ACTIONS(482), - [anon_sym_await] = ACTIONS(484), - [anon_sym_match] = ACTIONS(476), - [anon_sym_type] = ACTIONS(486), - [sym_integer] = ACTIONS(488), - [sym_float] = ACTIONS(488), - [sym_true] = ACTIONS(488), - [sym_false] = ACTIONS(488), - [sym_none] = ACTIONS(488), - [sym_python_identifier] = ACTIONS(488), + [sym_binary_operator] = STATE(1278), + [sym_unary_operator] = STATE(1278), + [sym_attribute] = STATE(1278), + [sym_subscript] = STATE(1278), + [sym_call] = STATE(1278), + [sym_generator_expression] = STATE(1278), + [sym_parenthesized_expression] = STATE(1278), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1452), + [sym_list] = STATE(1278), + [sym_set] = STATE(1278), + [sym_tuple] = STATE(1278), + [sym_dictionary] = STATE(1278), + [sym_list_comprehension] = STATE(1278), + [sym_dictionary_comprehension] = STATE(1278), + [sym_set_comprehension] = STATE(1278), + [sym_concatenated_string] = STATE(1278), + [sym_python_string] = STATE(853), + [sym_await] = STATE(1278), + [anon_sym_EQ] = ACTIONS(463), + [anon_sym_PLUS_EQ] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_COLON] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_SEMI] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_as] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(476), + [anon_sym_print] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_exec] = ACTIONS(478), + [anon_sym_in] = ACTIONS(463), + [anon_sym_if] = ACTIONS(463), + [anon_sym_async] = ACTIONS(478), + [anon_sym_not] = ACTIONS(463), + [anon_sym_and] = ACTIONS(463), + [anon_sym_or] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(473), + [anon_sym_SLASH_SLASH] = ACTIONS(473), + [anon_sym_STAR_STAR] = ACTIONS(473), + [anon_sym_PIPE] = ACTIONS(473), + [anon_sym_AMP] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_LT_EQ] = ACTIONS(465), + [anon_sym_EQ_EQ] = ACTIONS(465), + [anon_sym_BANG_EQ] = ACTIONS(465), + [anon_sym_GT_EQ] = ACTIONS(465), + [anon_sym_GT] = ACTIONS(463), + [anon_sym_LT_GT] = ACTIONS(465), + [anon_sym_is] = ACTIONS(463), + [anon_sym_DASH_EQ] = ACTIONS(465), + [anon_sym_STAR_EQ] = ACTIONS(465), + [anon_sym_SLASH_EQ] = ACTIONS(465), + [anon_sym_AT_EQ] = ACTIONS(465), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(465), + [anon_sym_PERCENT_EQ] = ACTIONS(465), + [anon_sym_STAR_STAR_EQ] = ACTIONS(465), + [anon_sym_GT_GT_EQ] = ACTIONS(465), + [anon_sym_LT_LT_EQ] = ACTIONS(465), + [anon_sym_AMP_EQ] = ACTIONS(465), + [anon_sym_CARET_EQ] = ACTIONS(465), + [anon_sym_PIPE_EQ] = ACTIONS(465), + [sym_ellipsis] = ACTIONS(484), + [anon_sym_await] = ACTIONS(486), + [anon_sym_match] = ACTIONS(478), + [anon_sym_type] = ACTIONS(488), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(490), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_python_identifier] = ACTIONS(490), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(486), + [sym_identifier] = ACTIONS(488), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(463), - [sym_string_start] = ACTIONS(490), + [sym__newline] = ACTIONS(465), + [sym_string_start] = ACTIONS(492), }, [83] = { - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_attribute] = STATE(971), - [sym_subscript] = STATE(971), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_list_splat_pattern] = STATE(989), - [sym_primary_expression] = STATE(859), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_EQ] = ACTIONS(303), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(451), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(301), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(455), - [anon_sym_print] = ACTIONS(457), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(457), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(457), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(459), - [anon_sym_match] = ACTIONS(457), - [anon_sym_type] = ACTIONS(109), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(105), + [sym_binary_operator] = STATE(1136), + [sym_unary_operator] = STATE(1136), + [sym_attribute] = STATE(1136), + [sym_subscript] = STATE(1136), + [sym_call] = STATE(1136), + [sym_generator_expression] = STATE(1136), + [sym_parenthesized_expression] = STATE(1136), + [sym_list_splat_pattern] = STATE(1133), + [sym_primary_expression] = STATE(873), + [sym_list] = STATE(1136), + [sym_set] = STATE(1136), + [sym_tuple] = STATE(1136), + [sym_dictionary] = STATE(1136), + [sym_list_comprehension] = STATE(1136), + [sym_dictionary_comprehension] = STATE(1136), + [sym_set_comprehension] = STATE(1136), + [sym_concatenated_string] = STATE(1136), + [sym_python_string] = STATE(844), + [sym_await] = STATE(1136), + [anon_sym_EQ] = ACTIONS(302), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(494), + [anon_sym_COLON] = ACTIONS(302), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(300), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(304), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_print] = ACTIONS(502), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(502), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(502), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(508), + [sym_type_conversion] = ACTIONS(300), + [anon_sym_await] = ACTIONS(510), + [anon_sym_match] = ACTIONS(502), + [anon_sym_type] = ACTIONS(512), + [sym_integer] = ACTIONS(514), + [sym_float] = ACTIONS(514), + [sym_true] = ACTIONS(514), + [sym_false] = ACTIONS(514), + [sym_none] = ACTIONS(514), + [sym_python_identifier] = ACTIONS(514), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(512), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(301), - [sym_string_start] = ACTIONS(113), + [sym_string_start] = ACTIONS(516), }, [84] = { - [sym_binary_operator] = STATE(1026), - [sym_unary_operator] = STATE(1026), - [sym_attribute] = STATE(1026), - [sym_subscript] = STATE(1026), - [sym_call] = STATE(1026), - [sym_generator_expression] = STATE(1026), - [sym_parenthesized_expression] = STATE(1026), - [sym_list_splat_pattern] = STATE(1028), - [sym_primary_expression] = STATE(873), - [sym_list] = STATE(1026), - [sym_set] = STATE(1026), - [sym_tuple] = STATE(1026), - [sym_dictionary] = STATE(1026), - [sym_list_comprehension] = STATE(1026), - [sym_dictionary_comprehension] = STATE(1026), - [sym_set_comprehension] = STATE(1026), - [sym_concatenated_string] = STATE(1026), - [sym_python_string] = STATE(841), - [sym_await] = STATE(1026), - [anon_sym_EQ] = ACTIONS(303), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(492), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_RBRACE] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(301), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(500), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(500), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(502), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(506), - [sym_type_conversion] = ACTIONS(301), - [anon_sym_await] = ACTIONS(508), - [anon_sym_match] = ACTIONS(500), - [anon_sym_type] = ACTIONS(510), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_true] = ACTIONS(512), - [sym_false] = ACTIONS(512), - [sym_none] = ACTIONS(512), - [sym_python_identifier] = ACTIONS(512), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_attribute] = STATE(964), + [sym_subscript] = STATE(964), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_list_splat_pattern] = STATE(960), + [sym_primary_expression] = STATE(901), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_EQ] = ACTIONS(302), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_COLON] = ACTIONS(302), + [anon_sym_LPAREN] = ACTIONS(455), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(457), + [anon_sym_print] = ACTIONS(459), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(459), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(459), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(461), + [anon_sym_match] = ACTIONS(459), + [anon_sym_type] = ACTIONS(111), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(107), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(510), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(514), + [sym__newline] = ACTIONS(300), + [sym_string_start] = ACTIONS(115), }, [85] = { - [sym_binary_operator] = STATE(1026), - [sym_unary_operator] = STATE(1026), - [sym_attribute] = STATE(1026), - [sym_subscript] = STATE(1026), - [sym_call] = STATE(1026), - [sym_generator_expression] = STATE(1026), - [sym_parenthesized_expression] = STATE(1026), - [sym_list_splat_pattern] = STATE(1028), + [sym_binary_operator] = STATE(1136), + [sym_unary_operator] = STATE(1136), + [sym_attribute] = STATE(1136), + [sym_subscript] = STATE(1136), + [sym_call] = STATE(1136), + [sym_generator_expression] = STATE(1136), + [sym_parenthesized_expression] = STATE(1136), + [sym_list_splat_pattern] = STATE(1133), [sym_primary_expression] = STATE(873), - [sym_list] = STATE(1026), - [sym_set] = STATE(1026), - [sym_tuple] = STATE(1026), - [sym_dictionary] = STATE(1026), - [sym_list_comprehension] = STATE(1026), - [sym_dictionary_comprehension] = STATE(1026), - [sym_set_comprehension] = STATE(1026), - [sym_concatenated_string] = STATE(1026), - [sym_python_string] = STATE(841), - [sym_await] = STATE(1026), - [anon_sym_EQ] = ACTIONS(303), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(492), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_RBRACE] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(305), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(500), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(500), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(502), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(506), - [sym_type_conversion] = ACTIONS(301), - [anon_sym_await] = ACTIONS(508), - [anon_sym_match] = ACTIONS(500), - [anon_sym_type] = ACTIONS(510), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_true] = ACTIONS(512), - [sym_false] = ACTIONS(512), - [sym_none] = ACTIONS(512), - [sym_python_identifier] = ACTIONS(512), + [sym_list] = STATE(1136), + [sym_set] = STATE(1136), + [sym_tuple] = STATE(1136), + [sym_dictionary] = STATE(1136), + [sym_list_comprehension] = STATE(1136), + [sym_dictionary_comprehension] = STATE(1136), + [sym_set_comprehension] = STATE(1136), + [sym_concatenated_string] = STATE(1136), + [sym_python_string] = STATE(844), + [sym_await] = STATE(1136), + [anon_sym_EQ] = ACTIONS(302), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(494), + [anon_sym_COLON] = ACTIONS(302), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(300), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_print] = ACTIONS(502), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(502), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(502), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(508), + [sym_type_conversion] = ACTIONS(300), + [anon_sym_await] = ACTIONS(510), + [anon_sym_match] = ACTIONS(502), + [anon_sym_type] = ACTIONS(512), + [sym_integer] = ACTIONS(514), + [sym_float] = ACTIONS(514), + [sym_true] = ACTIONS(514), + [sym_false] = ACTIONS(514), + [sym_none] = ACTIONS(514), + [sym_python_identifier] = ACTIONS(514), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(510), + [sym_identifier] = ACTIONS(512), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(514), + [sym_string_start] = ACTIONS(516), }, [86] = { - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_attribute] = STATE(971), - [sym_subscript] = STATE(971), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_list_splat_pattern] = STATE(989), - [sym_primary_expression] = STATE(984), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_from] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(301), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(516), - [anon_sym_print] = ACTIONS(457), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(457), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(457), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(520), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(522), - [anon_sym_match] = ACTIONS(457), - [anon_sym_type] = ACTIONS(109), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(105), + [sym_binary_operator] = STATE(1136), + [sym_unary_operator] = STATE(1136), + [sym_attribute] = STATE(1136), + [sym_subscript] = STATE(1136), + [sym_call] = STATE(1136), + [sym_generator_expression] = STATE(1136), + [sym_parenthesized_expression] = STATE(1136), + [sym_list_splat_pattern] = STATE(1133), + [sym_primary_expression] = STATE(873), + [sym_list] = STATE(1136), + [sym_set] = STATE(1136), + [sym_tuple] = STATE(1136), + [sym_dictionary] = STATE(1136), + [sym_list_comprehension] = STATE(1136), + [sym_dictionary_comprehension] = STATE(1136), + [sym_set_comprehension] = STATE(1136), + [sym_concatenated_string] = STATE(1136), + [sym_python_string] = STATE(844), + [sym_await] = STATE(1136), + [anon_sym_EQ] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(494), + [anon_sym_COLON] = ACTIONS(300), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(300), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_print] = ACTIONS(502), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(502), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(502), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(508), + [sym_type_conversion] = ACTIONS(300), + [anon_sym_await] = ACTIONS(510), + [anon_sym_match] = ACTIONS(502), + [anon_sym_type] = ACTIONS(512), + [sym_integer] = ACTIONS(514), + [sym_float] = ACTIONS(514), + [sym_true] = ACTIONS(514), + [sym_false] = ACTIONS(514), + [sym_none] = ACTIONS(514), + [sym_python_identifier] = ACTIONS(514), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(512), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(301), - [sym_string_start] = ACTIONS(113), + [sym_string_start] = ACTIONS(516), }, [87] = { - [sym_binary_operator] = STATE(1026), - [sym_unary_operator] = STATE(1026), - [sym_attribute] = STATE(1026), - [sym_subscript] = STATE(1026), - [sym_call] = STATE(1026), - [sym_generator_expression] = STATE(1026), - [sym_parenthesized_expression] = STATE(1026), - [sym_list_splat_pattern] = STATE(1028), - [sym_primary_expression] = STATE(873), - [sym_list] = STATE(1026), - [sym_set] = STATE(1026), - [sym_tuple] = STATE(1026), - [sym_dictionary] = STATE(1026), - [sym_list_comprehension] = STATE(1026), - [sym_dictionary_comprehension] = STATE(1026), - [sym_set_comprehension] = STATE(1026), - [sym_concatenated_string] = STATE(1026), - [sym_python_string] = STATE(841), - [sym_await] = STATE(1026), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(492), - [anon_sym_COLON] = ACTIONS(461), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_RBRACE] = ACTIONS(524), - [anon_sym_DOT] = ACTIONS(471), - [anon_sym_COMMA] = ACTIONS(524), - [anon_sym_as] = ACTIONS(471), - [anon_sym_STAR] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_exec] = ACTIONS(500), - [anon_sym_in] = ACTIONS(471), - [anon_sym_if] = ACTIONS(471), - [anon_sym_async] = ACTIONS(500), - [anon_sym_for] = ACTIONS(461), - [anon_sym_not] = ACTIONS(471), - [anon_sym_and] = ACTIONS(471), - [anon_sym_or] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(502), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_AT] = ACTIONS(524), - [anon_sym_SLASH] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(524), - [anon_sym_SLASH_SLASH] = ACTIONS(524), - [anon_sym_STAR_STAR] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(471), - [anon_sym_LT_EQ] = ACTIONS(524), - [anon_sym_EQ_EQ] = ACTIONS(524), - [anon_sym_BANG_EQ] = ACTIONS(524), - [anon_sym_GT_EQ] = ACTIONS(524), - [anon_sym_GT] = ACTIONS(471), - [anon_sym_LT_GT] = ACTIONS(524), - [anon_sym_is] = ACTIONS(471), - [sym_ellipsis] = ACTIONS(506), - [anon_sym_await] = ACTIONS(508), - [anon_sym_match] = ACTIONS(500), - [anon_sym_type] = ACTIONS(510), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_true] = ACTIONS(512), - [sym_false] = ACTIONS(512), - [sym_none] = ACTIONS(512), - [sym_python_identifier] = ACTIONS(512), + [sym_binary_operator] = STATE(1235), + [sym_unary_operator] = STATE(1235), + [sym_attribute] = STATE(1235), + [sym_subscript] = STATE(1235), + [sym_call] = STATE(1235), + [sym_generator_expression] = STATE(1235), + [sym_parenthesized_expression] = STATE(1235), + [sym_list_splat_pattern] = STATE(1224), + [sym_primary_expression] = STATE(909), + [sym_list] = STATE(1235), + [sym_set] = STATE(1235), + [sym_tuple] = STATE(1235), + [sym_dictionary] = STATE(1235), + [sym_list_comprehension] = STATE(1235), + [sym_dictionary_comprehension] = STATE(1235), + [sym_set_comprehension] = STATE(1235), + [sym_concatenated_string] = STATE(1235), + [sym_python_string] = STATE(889), + [sym_await] = STATE(1235), + [anon_sym_EQ] = ACTIONS(302), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_COLON] = ACTIONS(302), + [anon_sym_LPAREN] = ACTIONS(520), + [anon_sym_RPAREN] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_print] = ACTIONS(526), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(526), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(526), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(528), + [anon_sym_DASH] = ACTIONS(530), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(528), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(532), + [anon_sym_await] = ACTIONS(534), + [anon_sym_match] = ACTIONS(526), + [anon_sym_type] = ACTIONS(536), + [sym_integer] = ACTIONS(538), + [sym_float] = ACTIONS(538), + [sym_true] = ACTIONS(538), + [sym_false] = ACTIONS(538), + [sym_none] = ACTIONS(538), + [sym_python_identifier] = ACTIONS(538), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(510), + [sym_identifier] = ACTIONS(536), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(514), + [sym_string_start] = ACTIONS(540), }, [88] = { - [sym_binary_operator] = STATE(1266), - [sym_unary_operator] = STATE(1266), - [sym_attribute] = STATE(1266), - [sym_subscript] = STATE(1266), - [sym_call] = STATE(1266), - [sym_generator_expression] = STATE(1266), - [sym_parenthesized_expression] = STATE(1266), - [sym_list_splat_pattern] = STATE(1260), - [sym_primary_expression] = STATE(1475), - [sym_list] = STATE(1266), - [sym_set] = STATE(1266), - [sym_tuple] = STATE(1266), - [sym_dictionary] = STATE(1266), - [sym_list_comprehension] = STATE(1266), - [sym_dictionary_comprehension] = STATE(1266), - [sym_set_comprehension] = STATE(1266), - [sym_concatenated_string] = STATE(1266), - [sym_python_string] = STATE(868), - [sym_await] = STATE(1266), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_COLON] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_SEMI] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(471), - [anon_sym_COMMA] = ACTIONS(463), - [anon_sym_as] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_print] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_exec] = ACTIONS(476), - [anon_sym_in] = ACTIONS(461), - [anon_sym_if] = ACTIONS(461), - [anon_sym_async] = ACTIONS(476), - [anon_sym_not] = ACTIONS(461), - [anon_sym_and] = ACTIONS(461), - [anon_sym_or] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(524), - [anon_sym_SLASH] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(524), - [anon_sym_SLASH_SLASH] = ACTIONS(524), - [anon_sym_STAR_STAR] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_LT_EQ] = ACTIONS(463), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_LT_GT] = ACTIONS(463), - [anon_sym_is] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(482), - [anon_sym_await] = ACTIONS(484), - [anon_sym_match] = ACTIONS(476), - [anon_sym_type] = ACTIONS(486), - [sym_integer] = ACTIONS(488), - [sym_float] = ACTIONS(488), - [sym_true] = ACTIONS(488), - [sym_false] = ACTIONS(488), - [sym_none] = ACTIONS(488), - [sym_python_identifier] = ACTIONS(488), + [sym_binary_operator] = STATE(1111), + [sym_unary_operator] = STATE(1111), + [sym_attribute] = STATE(1111), + [sym_subscript] = STATE(1111), + [sym_call] = STATE(1111), + [sym_generator_expression] = STATE(1111), + [sym_parenthesized_expression] = STATE(1111), + [sym_list_splat_pattern] = STATE(1103), + [sym_primary_expression] = STATE(879), + [sym_list] = STATE(1111), + [sym_set] = STATE(1111), + [sym_tuple] = STATE(1111), + [sym_dictionary] = STATE(1111), + [sym_list_comprehension] = STATE(1111), + [sym_dictionary_comprehension] = STATE(1111), + [sym_set_comprehension] = STATE(1111), + [sym_concatenated_string] = STATE(1111), + [sym_python_string] = STATE(840), + [sym_await] = STATE(1111), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(542), + [anon_sym_COLON] = ACTIONS(302), + [anon_sym_LPAREN] = ACTIONS(544), + [anon_sym_LBRACE] = ACTIONS(546), + [anon_sym_RBRACE] = ACTIONS(300), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_print] = ACTIONS(550), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(550), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(550), + [anon_sym_for] = ACTIONS(302), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(556), + [anon_sym_await] = ACTIONS(558), + [anon_sym_match] = ACTIONS(550), + [anon_sym_type] = ACTIONS(560), + [sym_integer] = ACTIONS(562), + [sym_float] = ACTIONS(562), + [sym_true] = ACTIONS(562), + [sym_false] = ACTIONS(562), + [sym_none] = ACTIONS(562), + [sym_python_identifier] = ACTIONS(562), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(486), + [sym_identifier] = ACTIONS(560), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(463), - [sym_string_start] = ACTIONS(490), + [sym_string_start] = ACTIONS(564), }, [89] = { - [sym_binary_operator] = STATE(1266), - [sym_unary_operator] = STATE(1266), - [sym_attribute] = STATE(1266), - [sym_subscript] = STATE(1266), - [sym_call] = STATE(1266), - [sym_generator_expression] = STATE(1266), - [sym_parenthesized_expression] = STATE(1266), - [sym_list_splat_pattern] = STATE(1260), - [sym_primary_expression] = STATE(1475), - [sym_list] = STATE(1266), - [sym_set] = STATE(1266), - [sym_tuple] = STATE(1266), - [sym_dictionary] = STATE(1266), - [sym_list_comprehension] = STATE(1266), - [sym_dictionary_comprehension] = STATE(1266), - [sym_set_comprehension] = STATE(1266), - [sym_concatenated_string] = STATE(1266), - [sym_python_string] = STATE(868), - [sym_await] = STATE(1266), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_COLON] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_RBRACE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(471), - [anon_sym_COMMA] = ACTIONS(463), - [anon_sym_as] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_print] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_exec] = ACTIONS(476), - [anon_sym_in] = ACTIONS(461), - [anon_sym_if] = ACTIONS(461), - [anon_sym_async] = ACTIONS(476), - [anon_sym_not] = ACTIONS(461), - [anon_sym_and] = ACTIONS(461), - [anon_sym_or] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(524), - [anon_sym_SLASH] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(524), - [anon_sym_SLASH_SLASH] = ACTIONS(524), - [anon_sym_STAR_STAR] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_LT_EQ] = ACTIONS(463), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_LT_GT] = ACTIONS(463), - [anon_sym_is] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(482), - [sym_type_conversion] = ACTIONS(463), - [anon_sym_await] = ACTIONS(484), - [anon_sym_match] = ACTIONS(476), - [anon_sym_type] = ACTIONS(486), - [sym_integer] = ACTIONS(488), - [sym_float] = ACTIONS(488), - [sym_true] = ACTIONS(488), - [sym_false] = ACTIONS(488), - [sym_none] = ACTIONS(488), - [sym_python_identifier] = ACTIONS(488), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_attribute] = STATE(964), + [sym_subscript] = STATE(964), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_list_splat_pattern] = STATE(960), + [sym_primary_expression] = STATE(901), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_EQ] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_COLON] = ACTIONS(300), + [anon_sym_LPAREN] = ACTIONS(455), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(457), + [anon_sym_print] = ACTIONS(459), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(459), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(459), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(461), + [anon_sym_match] = ACTIONS(459), + [anon_sym_type] = ACTIONS(111), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(107), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(486), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(490), + [sym__newline] = ACTIONS(300), + [sym_string_start] = ACTIONS(115), }, [90] = { - [sym_binary_operator] = STATE(1140), - [sym_unary_operator] = STATE(1140), - [sym_attribute] = STATE(1140), - [sym_subscript] = STATE(1140), - [sym_call] = STATE(1140), - [sym_generator_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_list_splat_pattern] = STATE(1136), - [sym_primary_expression] = STATE(852), - [sym_list] = STATE(1140), - [sym_set] = STATE(1140), - [sym_tuple] = STATE(1140), - [sym_dictionary] = STATE(1140), - [sym_list_comprehension] = STATE(1140), - [sym_dictionary_comprehension] = STATE(1140), - [sym_set_comprehension] = STATE(1140), - [sym_concatenated_string] = STATE(1140), - [sym_python_string] = STATE(838), - [sym_await] = STATE(1140), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_RBRACE] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(301), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(533), - [anon_sym_print] = ACTIONS(535), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(535), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(535), - [anon_sym_for] = ACTIONS(303), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(539), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(537), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(541), - [anon_sym_await] = ACTIONS(543), - [anon_sym_match] = ACTIONS(535), - [anon_sym_type] = ACTIONS(545), - [sym_integer] = ACTIONS(547), - [sym_float] = ACTIONS(547), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_none] = ACTIONS(547), - [sym_python_identifier] = ACTIONS(547), + [sym_binary_operator] = STATE(1278), + [sym_unary_operator] = STATE(1278), + [sym_attribute] = STATE(1278), + [sym_subscript] = STATE(1278), + [sym_call] = STATE(1278), + [sym_generator_expression] = STATE(1278), + [sym_parenthesized_expression] = STATE(1278), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1452), + [sym_list] = STATE(1278), + [sym_set] = STATE(1278), + [sym_tuple] = STATE(1278), + [sym_dictionary] = STATE(1278), + [sym_list_comprehension] = STATE(1278), + [sym_dictionary_comprehension] = STATE(1278), + [sym_set_comprehension] = STATE(1278), + [sym_concatenated_string] = STATE(1278), + [sym_python_string] = STATE(853), + [sym_await] = STATE(1278), + [anon_sym_EQ] = ACTIONS(463), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_COLON] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_SEMI] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_as] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(476), + [anon_sym_print] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_exec] = ACTIONS(478), + [anon_sym_in] = ACTIONS(463), + [anon_sym_if] = ACTIONS(463), + [anon_sym_async] = ACTIONS(478), + [anon_sym_not] = ACTIONS(463), + [anon_sym_and] = ACTIONS(463), + [anon_sym_or] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_SLASH_SLASH] = ACTIONS(566), + [anon_sym_STAR_STAR] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_LT_EQ] = ACTIONS(465), + [anon_sym_EQ_EQ] = ACTIONS(465), + [anon_sym_BANG_EQ] = ACTIONS(465), + [anon_sym_GT_EQ] = ACTIONS(465), + [anon_sym_GT] = ACTIONS(463), + [anon_sym_LT_GT] = ACTIONS(465), + [anon_sym_is] = ACTIONS(463), + [sym_ellipsis] = ACTIONS(484), + [anon_sym_await] = ACTIONS(486), + [anon_sym_match] = ACTIONS(478), + [anon_sym_type] = ACTIONS(488), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(490), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_python_identifier] = ACTIONS(490), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(545), + [sym_identifier] = ACTIONS(488), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(549), + [sym__newline] = ACTIONS(465), + [sym_string_start] = ACTIONS(492), }, [91] = { - [sym_binary_operator] = STATE(1026), - [sym_unary_operator] = STATE(1026), - [sym_attribute] = STATE(1026), - [sym_subscript] = STATE(1026), - [sym_call] = STATE(1026), - [sym_generator_expression] = STATE(1026), - [sym_parenthesized_expression] = STATE(1026), - [sym_list_splat_pattern] = STATE(1028), - [sym_primary_expression] = STATE(873), - [sym_list] = STATE(1026), - [sym_set] = STATE(1026), - [sym_tuple] = STATE(1026), - [sym_dictionary] = STATE(1026), - [sym_list_comprehension] = STATE(1026), - [sym_dictionary_comprehension] = STATE(1026), - [sym_set_comprehension] = STATE(1026), - [sym_concatenated_string] = STATE(1026), - [sym_python_string] = STATE(841), - [sym_await] = STATE(1026), - [anon_sym_EQ] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(492), - [anon_sym_COLON] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_RBRACE] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(301), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(500), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(500), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(502), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(506), - [sym_type_conversion] = ACTIONS(301), - [anon_sym_await] = ACTIONS(508), - [anon_sym_match] = ACTIONS(500), - [anon_sym_type] = ACTIONS(510), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_true] = ACTIONS(512), - [sym_false] = ACTIONS(512), - [sym_none] = ACTIONS(512), - [sym_python_identifier] = ACTIONS(512), + [sym_binary_operator] = STATE(1316), + [sym_unary_operator] = STATE(1316), + [sym_attribute] = STATE(1316), + [sym_subscript] = STATE(1316), + [sym_call] = STATE(1316), + [sym_generator_expression] = STATE(1316), + [sym_parenthesized_expression] = STATE(1316), + [sym_list_splat_pattern] = STATE(1320), + [sym_primary_expression] = STATE(978), + [sym_list] = STATE(1316), + [sym_set] = STATE(1316), + [sym_tuple] = STATE(1316), + [sym_dictionary] = STATE(1316), + [sym_list_comprehension] = STATE(1316), + [sym_dictionary_comprehension] = STATE(1316), + [sym_set_comprehension] = STATE(1316), + [sym_concatenated_string] = STATE(1316), + [sym_python_string] = STATE(894), + [sym_await] = STATE(1316), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_print] = ACTIONS(579), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(579), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(579), + [anon_sym_for] = ACTIONS(302), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(585), + [anon_sym_await] = ACTIONS(587), + [anon_sym_match] = ACTIONS(579), + [anon_sym_type] = ACTIONS(589), + [sym_integer] = ACTIONS(591), + [sym_float] = ACTIONS(591), + [sym_true] = ACTIONS(591), + [sym_false] = ACTIONS(591), + [sym_none] = ACTIONS(591), + [sym_python_identifier] = ACTIONS(591), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(510), + [sym_identifier] = ACTIONS(589), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(514), + [sym_string_start] = ACTIONS(593), }, [92] = { - [sym_binary_operator] = STATE(1223), - [sym_unary_operator] = STATE(1223), - [sym_attribute] = STATE(1223), - [sym_subscript] = STATE(1223), - [sym_call] = STATE(1223), - [sym_generator_expression] = STATE(1223), - [sym_parenthesized_expression] = STATE(1223), - [sym_list_splat_pattern] = STATE(1172), - [sym_primary_expression] = STATE(916), - [sym_list] = STATE(1223), - [sym_set] = STATE(1223), - [sym_tuple] = STATE(1223), - [sym_dictionary] = STATE(1223), - [sym_list_comprehension] = STATE(1223), - [sym_dictionary_comprehension] = STATE(1223), - [sym_set_comprehension] = STATE(1223), - [sym_concatenated_string] = STATE(1223), - [sym_python_string] = STATE(851), - [sym_await] = STATE(1223), - [anon_sym_EQ] = ACTIONS(551), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_RPAREN] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(557), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(301), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(561), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(561), - [anon_sym_for] = ACTIONS(303), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(567), - [anon_sym_await] = ACTIONS(569), - [anon_sym_match] = ACTIONS(561), - [anon_sym_type] = ACTIONS(571), - [sym_integer] = ACTIONS(573), - [sym_float] = ACTIONS(573), - [sym_true] = ACTIONS(573), - [sym_false] = ACTIONS(573), - [sym_none] = ACTIONS(573), - [sym_python_identifier] = ACTIONS(573), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_attribute] = STATE(964), + [sym_subscript] = STATE(964), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_list_splat_pattern] = STATE(960), + [sym_primary_expression] = STATE(932), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(455), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_from] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(595), + [anon_sym_print] = ACTIONS(459), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(459), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(459), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(601), + [anon_sym_match] = ACTIONS(459), + [anon_sym_type] = ACTIONS(111), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(107), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(571), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(575), + [sym__newline] = ACTIONS(300), + [sym_string_start] = ACTIONS(115), }, [93] = { - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_attribute] = STATE(971), - [sym_subscript] = STATE(971), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_list_splat_pattern] = STATE(989), - [sym_primary_expression] = STATE(859), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_EQ] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(451), - [anon_sym_COLON] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(301), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(455), - [anon_sym_print] = ACTIONS(457), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(457), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(457), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(459), - [anon_sym_match] = ACTIONS(457), - [anon_sym_type] = ACTIONS(109), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(105), + [sym_binary_operator] = STATE(1136), + [sym_unary_operator] = STATE(1136), + [sym_attribute] = STATE(1136), + [sym_subscript] = STATE(1136), + [sym_call] = STATE(1136), + [sym_generator_expression] = STATE(1136), + [sym_parenthesized_expression] = STATE(1136), + [sym_list_splat_pattern] = STATE(1133), + [sym_primary_expression] = STATE(873), + [sym_list] = STATE(1136), + [sym_set] = STATE(1136), + [sym_tuple] = STATE(1136), + [sym_dictionary] = STATE(1136), + [sym_list_comprehension] = STATE(1136), + [sym_dictionary_comprehension] = STATE(1136), + [sym_set_comprehension] = STATE(1136), + [sym_concatenated_string] = STATE(1136), + [sym_python_string] = STATE(844), + [sym_await] = STATE(1136), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(494), + [anon_sym_COLON] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_as] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_print] = ACTIONS(502), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_exec] = ACTIONS(502), + [anon_sym_in] = ACTIONS(473), + [anon_sym_if] = ACTIONS(473), + [anon_sym_async] = ACTIONS(502), + [anon_sym_for] = ACTIONS(463), + [anon_sym_not] = ACTIONS(473), + [anon_sym_and] = ACTIONS(473), + [anon_sym_or] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_AT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_SLASH_SLASH] = ACTIONS(566), + [anon_sym_STAR_STAR] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(566), + [anon_sym_is] = ACTIONS(473), + [sym_ellipsis] = ACTIONS(508), + [anon_sym_await] = ACTIONS(510), + [anon_sym_match] = ACTIONS(502), + [anon_sym_type] = ACTIONS(512), + [sym_integer] = ACTIONS(514), + [sym_float] = ACTIONS(514), + [sym_true] = ACTIONS(514), + [sym_false] = ACTIONS(514), + [sym_none] = ACTIONS(514), + [sym_python_identifier] = ACTIONS(514), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(512), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(301), - [sym_string_start] = ACTIONS(113), + [sym_string_start] = ACTIONS(516), }, [94] = { - [sym_binary_operator] = STATE(1222), - [sym_unary_operator] = STATE(1222), - [sym_attribute] = STATE(1222), - [sym_subscript] = STATE(1222), - [sym_call] = STATE(1222), - [sym_generator_expression] = STATE(1222), - [sym_parenthesized_expression] = STATE(1222), - [sym_list_splat_pattern] = STATE(1193), - [sym_primary_expression] = STATE(977), - [sym_list] = STATE(1222), - [sym_set] = STATE(1222), - [sym_tuple] = STATE(1222), - [sym_dictionary] = STATE(1222), - [sym_list_comprehension] = STATE(1222), - [sym_dictionary_comprehension] = STATE(1222), - [sym_set_comprehension] = STATE(1222), - [sym_concatenated_string] = STATE(1222), - [sym_python_string] = STATE(850), - [sym_await] = STATE(1222), - [anon_sym_EQ] = ACTIONS(303), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(577), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(579), - [anon_sym_RPAREN] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(301), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(583), - [anon_sym_print] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(585), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(585), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(587), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(591), - [anon_sym_await] = ACTIONS(593), - [anon_sym_match] = ACTIONS(585), - [anon_sym_type] = ACTIONS(595), - [sym_integer] = ACTIONS(597), - [sym_float] = ACTIONS(597), - [sym_true] = ACTIONS(597), - [sym_false] = ACTIONS(597), - [sym_none] = ACTIONS(597), - [sym_python_identifier] = ACTIONS(597), + [sym_binary_operator] = STATE(1278), + [sym_unary_operator] = STATE(1278), + [sym_attribute] = STATE(1278), + [sym_subscript] = STATE(1278), + [sym_call] = STATE(1278), + [sym_generator_expression] = STATE(1278), + [sym_parenthesized_expression] = STATE(1278), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1452), + [sym_list] = STATE(1278), + [sym_set] = STATE(1278), + [sym_tuple] = STATE(1278), + [sym_dictionary] = STATE(1278), + [sym_list_comprehension] = STATE(1278), + [sym_dictionary_comprehension] = STATE(1278), + [sym_set_comprehension] = STATE(1278), + [sym_concatenated_string] = STATE(1278), + [sym_python_string] = STATE(853), + [sym_await] = STATE(1278), + [anon_sym_EQ] = ACTIONS(463), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_COLON] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_as] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(476), + [anon_sym_print] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_exec] = ACTIONS(478), + [anon_sym_in] = ACTIONS(463), + [anon_sym_if] = ACTIONS(463), + [anon_sym_async] = ACTIONS(478), + [anon_sym_not] = ACTIONS(463), + [anon_sym_and] = ACTIONS(463), + [anon_sym_or] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_SLASH_SLASH] = ACTIONS(566), + [anon_sym_STAR_STAR] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_LT_EQ] = ACTIONS(465), + [anon_sym_EQ_EQ] = ACTIONS(465), + [anon_sym_BANG_EQ] = ACTIONS(465), + [anon_sym_GT_EQ] = ACTIONS(465), + [anon_sym_GT] = ACTIONS(463), + [anon_sym_LT_GT] = ACTIONS(465), + [anon_sym_is] = ACTIONS(463), + [sym_ellipsis] = ACTIONS(484), + [sym_type_conversion] = ACTIONS(465), + [anon_sym_await] = ACTIONS(486), + [anon_sym_match] = ACTIONS(478), + [anon_sym_type] = ACTIONS(488), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(490), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_python_identifier] = ACTIONS(490), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(595), + [sym_identifier] = ACTIONS(488), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(599), + [sym_string_start] = ACTIONS(492), }, [95] = { - [sym_binary_operator] = STATE(1266), - [sym_unary_operator] = STATE(1266), - [sym_attribute] = STATE(1266), - [sym_subscript] = STATE(1266), - [sym_call] = STATE(1266), - [sym_generator_expression] = STATE(1266), - [sym_parenthesized_expression] = STATE(1266), - [sym_list_splat_pattern] = STATE(1260), - [sym_primary_expression] = STATE(1475), - [sym_list] = STATE(1266), - [sym_set] = STATE(1266), - [sym_tuple] = STATE(1266), - [sym_dictionary] = STATE(1266), - [sym_list_comprehension] = STATE(1266), - [sym_dictionary_comprehension] = STATE(1266), - [sym_set_comprehension] = STATE(1266), - [sym_concatenated_string] = STATE(1266), - [sym_python_string] = STATE(868), - [sym_await] = STATE(1266), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_COLON] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_RPAREN] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_DOT] = ACTIONS(471), - [anon_sym_COMMA] = ACTIONS(463), - [anon_sym_as] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_print] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_exec] = ACTIONS(476), - [anon_sym_in] = ACTIONS(461), - [anon_sym_if] = ACTIONS(461), - [anon_sym_async] = ACTIONS(476), - [anon_sym_not] = ACTIONS(461), - [anon_sym_and] = ACTIONS(461), - [anon_sym_or] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(524), - [anon_sym_SLASH] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(524), - [anon_sym_SLASH_SLASH] = ACTIONS(524), - [anon_sym_STAR_STAR] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_LT_EQ] = ACTIONS(463), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_LT_GT] = ACTIONS(463), - [anon_sym_is] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(482), - [anon_sym_await] = ACTIONS(484), - [anon_sym_match] = ACTIONS(476), - [anon_sym_type] = ACTIONS(486), - [sym_integer] = ACTIONS(488), - [sym_float] = ACTIONS(488), - [sym_true] = ACTIONS(488), - [sym_false] = ACTIONS(488), - [sym_none] = ACTIONS(488), - [sym_python_identifier] = ACTIONS(488), + [sym_binary_operator] = STATE(1278), + [sym_unary_operator] = STATE(1278), + [sym_attribute] = STATE(1278), + [sym_subscript] = STATE(1278), + [sym_call] = STATE(1278), + [sym_generator_expression] = STATE(1278), + [sym_parenthesized_expression] = STATE(1278), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1452), + [sym_list] = STATE(1278), + [sym_set] = STATE(1278), + [sym_tuple] = STATE(1278), + [sym_dictionary] = STATE(1278), + [sym_list_comprehension] = STATE(1278), + [sym_dictionary_comprehension] = STATE(1278), + [sym_set_comprehension] = STATE(1278), + [sym_concatenated_string] = STATE(1278), + [sym_python_string] = STATE(853), + [sym_await] = STATE(1278), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_SEMI] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_from] = ACTIONS(463), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_as] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(476), + [anon_sym_print] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_exec] = ACTIONS(478), + [anon_sym_in] = ACTIONS(463), + [anon_sym_if] = ACTIONS(463), + [anon_sym_async] = ACTIONS(478), + [anon_sym_not] = ACTIONS(463), + [anon_sym_and] = ACTIONS(463), + [anon_sym_or] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_SLASH_SLASH] = ACTIONS(566), + [anon_sym_STAR_STAR] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_LT_EQ] = ACTIONS(465), + [anon_sym_EQ_EQ] = ACTIONS(465), + [anon_sym_BANG_EQ] = ACTIONS(465), + [anon_sym_GT_EQ] = ACTIONS(465), + [anon_sym_GT] = ACTIONS(463), + [anon_sym_LT_GT] = ACTIONS(465), + [anon_sym_is] = ACTIONS(463), + [sym_ellipsis] = ACTIONS(484), + [anon_sym_await] = ACTIONS(486), + [anon_sym_match] = ACTIONS(478), + [anon_sym_type] = ACTIONS(488), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(490), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_python_identifier] = ACTIONS(490), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(486), + [sym_identifier] = ACTIONS(488), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(490), + [sym__newline] = ACTIONS(465), + [sym_string_start] = ACTIONS(492), }, [96] = { - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1283), - [sym_attribute] = STATE(1283), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_generator_expression] = STATE(1283), - [sym_parenthesized_expression] = STATE(1283), - [sym_list_splat_pattern] = STATE(1163), - [sym_primary_expression] = STATE(955), - [sym_list] = STATE(1283), - [sym_set] = STATE(1283), - [sym_tuple] = STATE(1283), - [sym_dictionary] = STATE(1283), - [sym_list_comprehension] = STATE(1283), - [sym_dictionary_comprehension] = STATE(1283), - [sym_set_comprehension] = STATE(1283), - [sym_concatenated_string] = STATE(1283), - [sym_python_string] = STATE(857), - [sym_await] = STATE(1283), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(601), - [anon_sym_RBRACK] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(603), - [anon_sym_LBRACE] = ACTIONS(605), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(301), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(607), - [anon_sym_print] = ACTIONS(609), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(609), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(609), - [anon_sym_for] = ACTIONS(303), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(613), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(611), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(615), - [anon_sym_await] = ACTIONS(617), - [anon_sym_match] = ACTIONS(609), - [anon_sym_type] = ACTIONS(619), - [sym_integer] = ACTIONS(621), - [sym_float] = ACTIONS(621), - [sym_true] = ACTIONS(621), - [sym_false] = ACTIONS(621), - [sym_none] = ACTIONS(621), - [sym_python_identifier] = ACTIONS(621), + [sym_binary_operator] = STATE(1278), + [sym_unary_operator] = STATE(1278), + [sym_attribute] = STATE(1278), + [sym_subscript] = STATE(1278), + [sym_call] = STATE(1278), + [sym_generator_expression] = STATE(1278), + [sym_parenthesized_expression] = STATE(1278), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1452), + [sym_list] = STATE(1278), + [sym_set] = STATE(1278), + [sym_tuple] = STATE(1278), + [sym_dictionary] = STATE(1278), + [sym_list_comprehension] = STATE(1278), + [sym_dictionary_comprehension] = STATE(1278), + [sym_set_comprehension] = STATE(1278), + [sym_concatenated_string] = STATE(1278), + [sym_python_string] = STATE(853), + [sym_await] = STATE(1278), + [anon_sym_EQ] = ACTIONS(463), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_COLON] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_as] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(476), + [anon_sym_print] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_exec] = ACTIONS(478), + [anon_sym_in] = ACTIONS(463), + [anon_sym_if] = ACTIONS(463), + [anon_sym_async] = ACTIONS(478), + [anon_sym_not] = ACTIONS(463), + [anon_sym_and] = ACTIONS(463), + [anon_sym_or] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_SLASH_SLASH] = ACTIONS(566), + [anon_sym_STAR_STAR] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_LT_EQ] = ACTIONS(465), + [anon_sym_EQ_EQ] = ACTIONS(465), + [anon_sym_BANG_EQ] = ACTIONS(465), + [anon_sym_GT_EQ] = ACTIONS(465), + [anon_sym_GT] = ACTIONS(463), + [anon_sym_LT_GT] = ACTIONS(465), + [anon_sym_is] = ACTIONS(463), + [sym_ellipsis] = ACTIONS(484), + [anon_sym_await] = ACTIONS(486), + [anon_sym_match] = ACTIONS(478), + [anon_sym_type] = ACTIONS(488), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(490), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_python_identifier] = ACTIONS(490), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(619), + [sym_identifier] = ACTIONS(488), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(623), + [sym_string_start] = ACTIONS(492), }, [97] = { - [sym_binary_operator] = STATE(1222), - [sym_unary_operator] = STATE(1222), - [sym_attribute] = STATE(1222), - [sym_subscript] = STATE(1222), - [sym_call] = STATE(1222), - [sym_generator_expression] = STATE(1222), - [sym_parenthesized_expression] = STATE(1222), - [sym_list_splat_pattern] = STATE(1193), - [sym_primary_expression] = STATE(977), - [sym_list] = STATE(1222), - [sym_set] = STATE(1222), - [sym_tuple] = STATE(1222), - [sym_dictionary] = STATE(1222), - [sym_list_comprehension] = STATE(1222), - [sym_dictionary_comprehension] = STATE(1222), - [sym_set_comprehension] = STATE(1222), - [sym_concatenated_string] = STATE(1222), - [sym_python_string] = STATE(850), - [sym_await] = STATE(1222), - [anon_sym_EQ] = ACTIONS(551), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(577), - [anon_sym_LPAREN] = ACTIONS(579), - [anon_sym_RPAREN] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(301), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(583), - [anon_sym_print] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(585), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(585), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(587), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(591), - [anon_sym_await] = ACTIONS(593), - [anon_sym_match] = ACTIONS(585), - [anon_sym_type] = ACTIONS(595), - [sym_integer] = ACTIONS(597), - [sym_float] = ACTIONS(597), - [sym_true] = ACTIONS(597), - [sym_false] = ACTIONS(597), - [sym_none] = ACTIONS(597), - [sym_python_identifier] = ACTIONS(597), + [sym_binary_operator] = STATE(1351), + [sym_unary_operator] = STATE(1351), + [sym_attribute] = STATE(1351), + [sym_subscript] = STATE(1351), + [sym_call] = STATE(1351), + [sym_generator_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_list_splat_pattern] = STATE(1348), + [sym_primary_expression] = STATE(1132), + [sym_list] = STATE(1351), + [sym_set] = STATE(1351), + [sym_tuple] = STATE(1351), + [sym_dictionary] = STATE(1351), + [sym_list_comprehension] = STATE(1351), + [sym_dictionary_comprehension] = STATE(1351), + [sym_set_comprehension] = STATE(1351), + [sym_concatenated_string] = STATE(1351), + [sym_python_string] = STATE(952), + [sym_await] = STATE(1351), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_RBRACK] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_as] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(609), + [anon_sym_print] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_exec] = ACTIONS(611), + [anon_sym_in] = ACTIONS(473), + [anon_sym_if] = ACTIONS(473), + [anon_sym_async] = ACTIONS(611), + [anon_sym_for] = ACTIONS(463), + [anon_sym_not] = ACTIONS(473), + [anon_sym_and] = ACTIONS(473), + [anon_sym_or] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_SLASH_SLASH] = ACTIONS(566), + [anon_sym_STAR_STAR] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_TILDE] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(566), + [anon_sym_is] = ACTIONS(473), + [sym_ellipsis] = ACTIONS(617), + [anon_sym_await] = ACTIONS(619), + [anon_sym_match] = ACTIONS(611), + [anon_sym_type] = ACTIONS(621), + [sym_integer] = ACTIONS(623), + [sym_float] = ACTIONS(623), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), + [sym_none] = ACTIONS(623), + [sym_python_identifier] = ACTIONS(623), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(595), + [sym_identifier] = ACTIONS(621), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(599), + [sym_string_start] = ACTIONS(625), }, [98] = { - [sym_binary_operator] = STATE(1266), - [sym_unary_operator] = STATE(1266), - [sym_attribute] = STATE(1266), - [sym_subscript] = STATE(1266), - [sym_call] = STATE(1266), - [sym_generator_expression] = STATE(1266), - [sym_parenthesized_expression] = STATE(1266), - [sym_list_splat_pattern] = STATE(1260), - [sym_primary_expression] = STATE(1475), - [sym_list] = STATE(1266), - [sym_set] = STATE(1266), - [sym_tuple] = STATE(1266), - [sym_dictionary] = STATE(1266), - [sym_list_comprehension] = STATE(1266), - [sym_dictionary_comprehension] = STATE(1266), - [sym_set_comprehension] = STATE(1266), - [sym_concatenated_string] = STATE(1266), - [sym_python_string] = STATE(868), - [sym_await] = STATE(1266), - [anon_sym_EQ] = ACTIONS(290), - [anon_sym_PLUS_EQ] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_COLON] = ACTIONS(290), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_SEMI] = ACTIONS(290), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(290), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_print] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(303), - [anon_sym_exec] = ACTIONS(476), - [anon_sym_async] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(303), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(303), - [anon_sym_SLASH_SLASH] = ACTIONS(303), - [anon_sym_STAR_STAR] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_AMP] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LT_LT] = ACTIONS(303), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_DASH_EQ] = ACTIONS(290), - [anon_sym_STAR_EQ] = ACTIONS(290), - [anon_sym_SLASH_EQ] = ACTIONS(290), - [anon_sym_AT_EQ] = ACTIONS(290), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(290), - [anon_sym_PERCENT_EQ] = ACTIONS(290), - [anon_sym_STAR_STAR_EQ] = ACTIONS(290), - [anon_sym_GT_GT_EQ] = ACTIONS(290), - [anon_sym_LT_LT_EQ] = ACTIONS(290), - [anon_sym_AMP_EQ] = ACTIONS(290), - [anon_sym_CARET_EQ] = ACTIONS(290), - [anon_sym_PIPE_EQ] = ACTIONS(290), - [sym_ellipsis] = ACTIONS(482), - [anon_sym_await] = ACTIONS(484), - [anon_sym_match] = ACTIONS(476), - [anon_sym_type] = ACTIONS(486), - [sym_integer] = ACTIONS(488), - [sym_float] = ACTIONS(488), - [sym_true] = ACTIONS(488), - [sym_false] = ACTIONS(488), - [sym_none] = ACTIONS(488), - [sym_python_identifier] = ACTIONS(488), + [sym_binary_operator] = STATE(1235), + [sym_unary_operator] = STATE(1235), + [sym_attribute] = STATE(1235), + [sym_subscript] = STATE(1235), + [sym_call] = STATE(1235), + [sym_generator_expression] = STATE(1235), + [sym_parenthesized_expression] = STATE(1235), + [sym_list_splat_pattern] = STATE(1224), + [sym_primary_expression] = STATE(909), + [sym_list] = STATE(1235), + [sym_set] = STATE(1235), + [sym_tuple] = STATE(1235), + [sym_dictionary] = STATE(1235), + [sym_list_comprehension] = STATE(1235), + [sym_dictionary_comprehension] = STATE(1235), + [sym_set_comprehension] = STATE(1235), + [sym_concatenated_string] = STATE(1235), + [sym_python_string] = STATE(889), + [sym_await] = STATE(1235), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_LPAREN] = ACTIONS(520), + [anon_sym_RPAREN] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_print] = ACTIONS(526), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(526), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(526), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(528), + [anon_sym_DASH] = ACTIONS(530), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(528), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(532), + [anon_sym_await] = ACTIONS(534), + [anon_sym_match] = ACTIONS(526), + [anon_sym_type] = ACTIONS(536), + [sym_integer] = ACTIONS(538), + [sym_float] = ACTIONS(538), + [sym_true] = ACTIONS(538), + [sym_false] = ACTIONS(538), + [sym_none] = ACTIONS(538), + [sym_python_identifier] = ACTIONS(538), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(486), + [sym_identifier] = ACTIONS(536), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(290), - [sym_string_start] = ACTIONS(490), + [sym_string_start] = ACTIONS(540), }, [99] = { - [sym_binary_operator] = STATE(1379), - [sym_unary_operator] = STATE(1379), - [sym_attribute] = STATE(1379), - [sym_subscript] = STATE(1379), - [sym_call] = STATE(1379), - [sym_generator_expression] = STATE(1379), - [sym_parenthesized_expression] = STATE(1379), - [sym_list_splat_pattern] = STATE(1347), - [sym_primary_expression] = STATE(1029), - [sym_list] = STATE(1379), - [sym_set] = STATE(1379), - [sym_tuple] = STATE(1379), - [sym_dictionary] = STATE(1379), - [sym_list_comprehension] = STATE(1379), - [sym_dictionary_comprehension] = STATE(1379), - [sym_set_comprehension] = STATE(1379), - [sym_concatenated_string] = STATE(1379), - [sym_python_string] = STATE(1003), - [sym_await] = STATE(1379), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_RBRACK] = ACTIONS(524), - [anon_sym_LPAREN] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_DOT] = ACTIONS(471), - [anon_sym_COMMA] = ACTIONS(524), - [anon_sym_as] = ACTIONS(471), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_print] = ACTIONS(633), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_exec] = ACTIONS(633), - [anon_sym_in] = ACTIONS(471), - [anon_sym_if] = ACTIONS(471), - [anon_sym_async] = ACTIONS(633), - [anon_sym_for] = ACTIONS(461), - [anon_sym_not] = ACTIONS(471), - [anon_sym_and] = ACTIONS(471), - [anon_sym_or] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(524), - [anon_sym_SLASH] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(524), - [anon_sym_SLASH_SLASH] = ACTIONS(524), - [anon_sym_STAR_STAR] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(635), - [anon_sym_LT] = ACTIONS(471), - [anon_sym_LT_EQ] = ACTIONS(524), - [anon_sym_EQ_EQ] = ACTIONS(524), - [anon_sym_BANG_EQ] = ACTIONS(524), - [anon_sym_GT_EQ] = ACTIONS(524), - [anon_sym_GT] = ACTIONS(471), - [anon_sym_LT_GT] = ACTIONS(524), - [anon_sym_is] = ACTIONS(471), - [sym_ellipsis] = ACTIONS(639), - [anon_sym_await] = ACTIONS(641), - [anon_sym_match] = ACTIONS(633), - [anon_sym_type] = ACTIONS(643), - [sym_integer] = ACTIONS(645), - [sym_float] = ACTIONS(645), - [sym_true] = ACTIONS(645), - [sym_false] = ACTIONS(645), - [sym_none] = ACTIONS(645), - [sym_python_identifier] = ACTIONS(645), + [sym_binary_operator] = STATE(1235), + [sym_unary_operator] = STATE(1235), + [sym_attribute] = STATE(1235), + [sym_subscript] = STATE(1235), + [sym_call] = STATE(1235), + [sym_generator_expression] = STATE(1235), + [sym_parenthesized_expression] = STATE(1235), + [sym_list_splat_pattern] = STATE(1224), + [sym_primary_expression] = STATE(909), + [sym_list] = STATE(1235), + [sym_set] = STATE(1235), + [sym_tuple] = STATE(1235), + [sym_dictionary] = STATE(1235), + [sym_list_comprehension] = STATE(1235), + [sym_dictionary_comprehension] = STATE(1235), + [sym_set_comprehension] = STATE(1235), + [sym_concatenated_string] = STATE(1235), + [sym_python_string] = STATE(889), + [sym_await] = STATE(1235), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_LPAREN] = ACTIONS(520), + [anon_sym_RPAREN] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_as] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_print] = ACTIONS(526), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_exec] = ACTIONS(526), + [anon_sym_in] = ACTIONS(473), + [anon_sym_if] = ACTIONS(473), + [anon_sym_async] = ACTIONS(526), + [anon_sym_for] = ACTIONS(463), + [anon_sym_not] = ACTIONS(473), + [anon_sym_and] = ACTIONS(473), + [anon_sym_or] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(528), + [anon_sym_DASH] = ACTIONS(530), + [anon_sym_AT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_SLASH_SLASH] = ACTIONS(566), + [anon_sym_STAR_STAR] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_TILDE] = ACTIONS(528), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(566), + [anon_sym_is] = ACTIONS(473), + [sym_ellipsis] = ACTIONS(532), + [anon_sym_await] = ACTIONS(534), + [anon_sym_match] = ACTIONS(526), + [anon_sym_type] = ACTIONS(536), + [sym_integer] = ACTIONS(538), + [sym_float] = ACTIONS(538), + [sym_true] = ACTIONS(538), + [sym_false] = ACTIONS(538), + [sym_none] = ACTIONS(538), + [sym_python_identifier] = ACTIONS(538), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(643), + [sym_identifier] = ACTIONS(536), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(647), + [sym_string_start] = ACTIONS(540), }, [100] = { - [sym_binary_operator] = STATE(1266), - [sym_unary_operator] = STATE(1266), - [sym_attribute] = STATE(1266), - [sym_subscript] = STATE(1266), - [sym_call] = STATE(1266), - [sym_generator_expression] = STATE(1266), - [sym_parenthesized_expression] = STATE(1266), - [sym_list_splat_pattern] = STATE(1260), - [sym_primary_expression] = STATE(1118), - [sym_list] = STATE(1266), - [sym_set] = STATE(1266), - [sym_tuple] = STATE(1266), - [sym_dictionary] = STATE(1266), - [sym_list_comprehension] = STATE(1266), - [sym_dictionary_comprehension] = STATE(1266), - [sym_set_comprehension] = STATE(1266), - [sym_concatenated_string] = STATE(1266), - [sym_python_string] = STATE(868), - [sym_await] = STATE(1266), - [anon_sym_EQ] = ACTIONS(303), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(301), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(649), - [anon_sym_print] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(476), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(476), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(651), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(482), - [anon_sym_await] = ACTIONS(655), - [anon_sym_match] = ACTIONS(476), - [anon_sym_type] = ACTIONS(486), - [sym_integer] = ACTIONS(488), - [sym_float] = ACTIONS(488), - [sym_true] = ACTIONS(488), - [sym_false] = ACTIONS(488), - [sym_none] = ACTIONS(488), - [sym_python_identifier] = ACTIONS(488), + [sym_binary_operator] = STATE(1278), + [sym_unary_operator] = STATE(1278), + [sym_attribute] = STATE(1278), + [sym_subscript] = STATE(1278), + [sym_call] = STATE(1278), + [sym_generator_expression] = STATE(1278), + [sym_parenthesized_expression] = STATE(1278), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1452), + [sym_list] = STATE(1278), + [sym_set] = STATE(1278), + [sym_tuple] = STATE(1278), + [sym_dictionary] = STATE(1278), + [sym_list_comprehension] = STATE(1278), + [sym_dictionary_comprehension] = STATE(1278), + [sym_set_comprehension] = STATE(1278), + [sym_concatenated_string] = STATE(1278), + [sym_python_string] = STATE(853), + [sym_await] = STATE(1278), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_COLON] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_as] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(476), + [anon_sym_print] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_exec] = ACTIONS(478), + [anon_sym_in] = ACTIONS(463), + [anon_sym_if] = ACTIONS(463), + [anon_sym_async] = ACTIONS(478), + [anon_sym_for] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_and] = ACTIONS(463), + [anon_sym_or] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_SLASH_SLASH] = ACTIONS(566), + [anon_sym_STAR_STAR] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_LT_EQ] = ACTIONS(465), + [anon_sym_EQ_EQ] = ACTIONS(465), + [anon_sym_BANG_EQ] = ACTIONS(465), + [anon_sym_GT_EQ] = ACTIONS(465), + [anon_sym_GT] = ACTIONS(463), + [anon_sym_LT_GT] = ACTIONS(465), + [anon_sym_is] = ACTIONS(463), + [sym_ellipsis] = ACTIONS(484), + [anon_sym_await] = ACTIONS(486), + [anon_sym_match] = ACTIONS(478), + [anon_sym_type] = ACTIONS(488), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(490), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_python_identifier] = ACTIONS(490), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(486), + [sym_identifier] = ACTIONS(488), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(490), + [sym_string_start] = ACTIONS(492), }, [101] = { - [sym_binary_operator] = STATE(1223), - [sym_unary_operator] = STATE(1223), - [sym_attribute] = STATE(1223), - [sym_subscript] = STATE(1223), - [sym_call] = STATE(1223), - [sym_generator_expression] = STATE(1223), - [sym_parenthesized_expression] = STATE(1223), - [sym_list_splat_pattern] = STATE(1172), - [sym_primary_expression] = STATE(916), - [sym_list] = STATE(1223), - [sym_set] = STATE(1223), - [sym_tuple] = STATE(1223), - [sym_dictionary] = STATE(1223), - [sym_list_comprehension] = STATE(1223), - [sym_dictionary_comprehension] = STATE(1223), - [sym_set_comprehension] = STATE(1223), - [sym_concatenated_string] = STATE(1223), - [sym_python_string] = STATE(851), - [sym_await] = STATE(1223), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_RPAREN] = ACTIONS(305), - [anon_sym_LBRACE] = ACTIONS(557), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(305), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(561), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(561), - [anon_sym_for] = ACTIONS(303), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(567), - [anon_sym_await] = ACTIONS(569), - [anon_sym_match] = ACTIONS(561), - [anon_sym_type] = ACTIONS(571), - [sym_integer] = ACTIONS(573), - [sym_float] = ACTIONS(573), - [sym_true] = ACTIONS(573), - [sym_false] = ACTIONS(573), - [sym_none] = ACTIONS(573), - [sym_python_identifier] = ACTIONS(573), + [sym_binary_operator] = STATE(1278), + [sym_unary_operator] = STATE(1278), + [sym_attribute] = STATE(1278), + [sym_subscript] = STATE(1278), + [sym_call] = STATE(1278), + [sym_generator_expression] = STATE(1278), + [sym_parenthesized_expression] = STATE(1278), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1452), + [sym_list] = STATE(1278), + [sym_set] = STATE(1278), + [sym_tuple] = STATE(1278), + [sym_dictionary] = STATE(1278), + [sym_list_comprehension] = STATE(1278), + [sym_dictionary_comprehension] = STATE(1278), + [sym_set_comprehension] = STATE(1278), + [sym_concatenated_string] = STATE(1278), + [sym_python_string] = STATE(853), + [sym_await] = STATE(1278), + [anon_sym_EQ] = ACTIONS(292), + [anon_sym_PLUS_EQ] = ACTIONS(292), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_COLON] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_SEMI] = ACTIONS(292), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(292), + [anon_sym_STAR] = ACTIONS(476), + [anon_sym_print] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(302), + [anon_sym_exec] = ACTIONS(478), + [anon_sym_async] = ACTIONS(478), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(302), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(302), + [anon_sym_SLASH_SLASH] = ACTIONS(302), + [anon_sym_STAR_STAR] = ACTIONS(302), + [anon_sym_PIPE] = ACTIONS(302), + [anon_sym_AMP] = ACTIONS(302), + [anon_sym_CARET] = ACTIONS(302), + [anon_sym_LT_LT] = ACTIONS(302), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_DASH_EQ] = ACTIONS(292), + [anon_sym_STAR_EQ] = ACTIONS(292), + [anon_sym_SLASH_EQ] = ACTIONS(292), + [anon_sym_AT_EQ] = ACTIONS(292), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(292), + [anon_sym_PERCENT_EQ] = ACTIONS(292), + [anon_sym_STAR_STAR_EQ] = ACTIONS(292), + [anon_sym_GT_GT_EQ] = ACTIONS(292), + [anon_sym_LT_LT_EQ] = ACTIONS(292), + [anon_sym_AMP_EQ] = ACTIONS(292), + [anon_sym_CARET_EQ] = ACTIONS(292), + [anon_sym_PIPE_EQ] = ACTIONS(292), + [sym_ellipsis] = ACTIONS(484), + [anon_sym_await] = ACTIONS(486), + [anon_sym_match] = ACTIONS(478), + [anon_sym_type] = ACTIONS(488), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(490), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_python_identifier] = ACTIONS(490), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(571), + [sym_identifier] = ACTIONS(488), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(575), + [sym__newline] = ACTIONS(292), + [sym_string_start] = ACTIONS(492), }, [102] = { - [sym_binary_operator] = STATE(1223), - [sym_unary_operator] = STATE(1223), - [sym_attribute] = STATE(1223), - [sym_subscript] = STATE(1223), - [sym_call] = STATE(1223), - [sym_generator_expression] = STATE(1223), - [sym_parenthesized_expression] = STATE(1223), - [sym_list_splat_pattern] = STATE(1172), - [sym_primary_expression] = STATE(916), - [sym_list] = STATE(1223), - [sym_set] = STATE(1223), - [sym_tuple] = STATE(1223), - [sym_dictionary] = STATE(1223), - [sym_list_comprehension] = STATE(1223), - [sym_dictionary_comprehension] = STATE(1223), - [sym_set_comprehension] = STATE(1223), - [sym_concatenated_string] = STATE(1223), - [sym_python_string] = STATE(851), - [sym_await] = STATE(1223), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_RPAREN] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(557), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(301), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(561), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(561), - [anon_sym_for] = ACTIONS(303), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(567), - [anon_sym_await] = ACTIONS(569), - [anon_sym_match] = ACTIONS(561), - [anon_sym_type] = ACTIONS(571), - [sym_integer] = ACTIONS(573), - [sym_float] = ACTIONS(573), - [sym_true] = ACTIONS(573), - [sym_false] = ACTIONS(573), - [sym_none] = ACTIONS(573), - [sym_python_identifier] = ACTIONS(573), + [sym_binary_operator] = STATE(1316), + [sym_unary_operator] = STATE(1316), + [sym_attribute] = STATE(1316), + [sym_subscript] = STATE(1316), + [sym_call] = STATE(1316), + [sym_generator_expression] = STATE(1316), + [sym_parenthesized_expression] = STATE(1316), + [sym_list_splat_pattern] = STATE(1320), + [sym_primary_expression] = STATE(978), + [sym_list] = STATE(1316), + [sym_set] = STATE(1316), + [sym_tuple] = STATE(1316), + [sym_dictionary] = STATE(1316), + [sym_list_comprehension] = STATE(1316), + [sym_dictionary_comprehension] = STATE(1316), + [sym_set_comprehension] = STATE(1316), + [sym_concatenated_string] = STATE(1316), + [sym_python_string] = STATE(894), + [sym_await] = STATE(1316), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(304), + [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(304), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_print] = ACTIONS(579), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(579), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(579), + [anon_sym_for] = ACTIONS(302), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(585), + [anon_sym_await] = ACTIONS(587), + [anon_sym_match] = ACTIONS(579), + [anon_sym_type] = ACTIONS(589), + [sym_integer] = ACTIONS(591), + [sym_float] = ACTIONS(591), + [sym_true] = ACTIONS(591), + [sym_false] = ACTIONS(591), + [sym_none] = ACTIONS(591), + [sym_python_identifier] = ACTIONS(591), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(571), + [sym_identifier] = ACTIONS(589), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(575), + [sym_string_start] = ACTIONS(593), }, [103] = { - [sym_binary_operator] = STATE(1266), - [sym_unary_operator] = STATE(1266), - [sym_attribute] = STATE(1266), - [sym_subscript] = STATE(1266), - [sym_call] = STATE(1266), - [sym_generator_expression] = STATE(1266), - [sym_parenthesized_expression] = STATE(1266), - [sym_list_splat_pattern] = STATE(1260), - [sym_primary_expression] = STATE(1475), - [sym_list] = STATE(1266), - [sym_set] = STATE(1266), - [sym_tuple] = STATE(1266), - [sym_dictionary] = STATE(1266), - [sym_list_comprehension] = STATE(1266), - [sym_dictionary_comprehension] = STATE(1266), - [sym_set_comprehension] = STATE(1266), - [sym_concatenated_string] = STATE(1266), - [sym_python_string] = STATE(868), - [sym_await] = STATE(1266), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_COLON] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_RBRACE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(471), - [anon_sym_COMMA] = ACTIONS(463), - [anon_sym_as] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_print] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_exec] = ACTIONS(476), - [anon_sym_in] = ACTIONS(461), - [anon_sym_if] = ACTIONS(461), - [anon_sym_async] = ACTIONS(476), - [anon_sym_for] = ACTIONS(461), - [anon_sym_not] = ACTIONS(461), - [anon_sym_and] = ACTIONS(461), - [anon_sym_or] = ACTIONS(461), + [sym_binary_operator] = STATE(1278), + [sym_unary_operator] = STATE(1278), + [sym_attribute] = STATE(1278), + [sym_subscript] = STATE(1278), + [sym_call] = STATE(1278), + [sym_generator_expression] = STATE(1278), + [sym_parenthesized_expression] = STATE(1278), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1452), + [sym_list] = STATE(1278), + [sym_set] = STATE(1278), + [sym_tuple] = STATE(1278), + [sym_dictionary] = STATE(1278), + [sym_list_comprehension] = STATE(1278), + [sym_dictionary_comprehension] = STATE(1278), + [sym_set_comprehension] = STATE(1278), + [sym_concatenated_string] = STATE(1278), + [sym_python_string] = STATE(853), + [sym_await] = STATE(1278), + [anon_sym_EQ] = ACTIONS(465), + [anon_sym_PLUS_EQ] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_COLON] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_SEMI] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(476), + [anon_sym_print] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_exec] = ACTIONS(478), + [anon_sym_async] = ACTIONS(478), [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(524), - [anon_sym_SLASH] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(524), - [anon_sym_SLASH_SLASH] = ACTIONS(524), - [anon_sym_STAR_STAR] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_LT_EQ] = ACTIONS(463), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_LT_GT] = ACTIONS(463), - [anon_sym_is] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(482), - [anon_sym_await] = ACTIONS(484), - [anon_sym_match] = ACTIONS(476), - [anon_sym_type] = ACTIONS(486), - [sym_integer] = ACTIONS(488), - [sym_float] = ACTIONS(488), - [sym_true] = ACTIONS(488), - [sym_false] = ACTIONS(488), - [sym_none] = ACTIONS(488), - [sym_python_identifier] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(473), + [anon_sym_SLASH_SLASH] = ACTIONS(473), + [anon_sym_STAR_STAR] = ACTIONS(473), + [anon_sym_PIPE] = ACTIONS(473), + [anon_sym_AMP] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_DASH_EQ] = ACTIONS(465), + [anon_sym_STAR_EQ] = ACTIONS(465), + [anon_sym_SLASH_EQ] = ACTIONS(465), + [anon_sym_AT_EQ] = ACTIONS(465), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(465), + [anon_sym_PERCENT_EQ] = ACTIONS(465), + [anon_sym_STAR_STAR_EQ] = ACTIONS(465), + [anon_sym_GT_GT_EQ] = ACTIONS(465), + [anon_sym_LT_LT_EQ] = ACTIONS(465), + [anon_sym_AMP_EQ] = ACTIONS(465), + [anon_sym_CARET_EQ] = ACTIONS(465), + [anon_sym_PIPE_EQ] = ACTIONS(465), + [sym_ellipsis] = ACTIONS(484), + [anon_sym_await] = ACTIONS(486), + [anon_sym_match] = ACTIONS(478), + [anon_sym_type] = ACTIONS(488), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(490), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_python_identifier] = ACTIONS(490), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(486), + [sym_identifier] = ACTIONS(488), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(490), + [sym__newline] = ACTIONS(465), + [sym_string_start] = ACTIONS(492), }, [104] = { - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1283), - [sym_attribute] = STATE(1283), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_generator_expression] = STATE(1283), - [sym_parenthesized_expression] = STATE(1283), - [sym_list_splat_pattern] = STATE(1163), - [sym_primary_expression] = STATE(955), - [sym_list] = STATE(1283), - [sym_set] = STATE(1283), - [sym_tuple] = STATE(1283), - [sym_dictionary] = STATE(1283), - [sym_list_comprehension] = STATE(1283), - [sym_dictionary_comprehension] = STATE(1283), - [sym_set_comprehension] = STATE(1283), - [sym_concatenated_string] = STATE(1283), - [sym_python_string] = STATE(857), - [sym_await] = STATE(1283), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(601), - [anon_sym_RBRACK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(603), - [anon_sym_LBRACE] = ACTIONS(605), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(305), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(607), - [anon_sym_print] = ACTIONS(609), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(609), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(609), - [anon_sym_for] = ACTIONS(303), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(613), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(611), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(615), - [anon_sym_await] = ACTIONS(617), - [anon_sym_match] = ACTIONS(609), - [anon_sym_type] = ACTIONS(619), - [sym_integer] = ACTIONS(621), - [sym_float] = ACTIONS(621), - [sym_true] = ACTIONS(621), - [sym_false] = ACTIONS(621), - [sym_none] = ACTIONS(621), - [sym_python_identifier] = ACTIONS(621), + [sym_binary_operator] = STATE(1111), + [sym_unary_operator] = STATE(1111), + [sym_attribute] = STATE(1111), + [sym_subscript] = STATE(1111), + [sym_call] = STATE(1111), + [sym_generator_expression] = STATE(1111), + [sym_parenthesized_expression] = STATE(1111), + [sym_list_splat_pattern] = STATE(1103), + [sym_primary_expression] = STATE(879), + [sym_list] = STATE(1111), + [sym_set] = STATE(1111), + [sym_tuple] = STATE(1111), + [sym_dictionary] = STATE(1111), + [sym_list_comprehension] = STATE(1111), + [sym_dictionary_comprehension] = STATE(1111), + [sym_set_comprehension] = STATE(1111), + [sym_concatenated_string] = STATE(1111), + [sym_python_string] = STATE(840), + [sym_await] = STATE(1111), + [anon_sym_LBRACK] = ACTIONS(542), + [anon_sym_COLON] = ACTIONS(300), + [anon_sym_LPAREN] = ACTIONS(544), + [anon_sym_LBRACE] = ACTIONS(546), + [anon_sym_RBRACE] = ACTIONS(300), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_print] = ACTIONS(550), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(550), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(550), + [anon_sym_for] = ACTIONS(302), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(556), + [anon_sym_await] = ACTIONS(558), + [anon_sym_match] = ACTIONS(550), + [anon_sym_type] = ACTIONS(560), + [sym_integer] = ACTIONS(562), + [sym_float] = ACTIONS(562), + [sym_true] = ACTIONS(562), + [sym_false] = ACTIONS(562), + [sym_none] = ACTIONS(562), + [sym_python_identifier] = ACTIONS(562), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(619), + [sym_identifier] = ACTIONS(560), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(623), + [sym_string_start] = ACTIONS(564), }, [105] = { - [sym_binary_operator] = STATE(1222), - [sym_unary_operator] = STATE(1222), - [sym_attribute] = STATE(1222), - [sym_subscript] = STATE(1222), - [sym_call] = STATE(1222), - [sym_generator_expression] = STATE(1222), - [sym_parenthesized_expression] = STATE(1222), - [sym_list_splat_pattern] = STATE(1193), - [sym_primary_expression] = STATE(977), - [sym_list] = STATE(1222), - [sym_set] = STATE(1222), - [sym_tuple] = STATE(1222), - [sym_dictionary] = STATE(1222), - [sym_list_comprehension] = STATE(1222), - [sym_dictionary_comprehension] = STATE(1222), - [sym_set_comprehension] = STATE(1222), - [sym_concatenated_string] = STATE(1222), - [sym_python_string] = STATE(850), - [sym_await] = STATE(1222), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(577), - [anon_sym_LPAREN] = ACTIONS(579), - [anon_sym_RPAREN] = ACTIONS(524), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_DOT] = ACTIONS(471), - [anon_sym_COMMA] = ACTIONS(524), - [anon_sym_as] = ACTIONS(471), - [anon_sym_STAR] = ACTIONS(583), - [anon_sym_print] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_exec] = ACTIONS(585), - [anon_sym_in] = ACTIONS(471), - [anon_sym_if] = ACTIONS(471), - [anon_sym_async] = ACTIONS(585), - [anon_sym_for] = ACTIONS(461), - [anon_sym_not] = ACTIONS(471), - [anon_sym_and] = ACTIONS(471), - [anon_sym_or] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_AT] = ACTIONS(524), - [anon_sym_SLASH] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(524), - [anon_sym_SLASH_SLASH] = ACTIONS(524), - [anon_sym_STAR_STAR] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(587), - [anon_sym_LT] = ACTIONS(471), - [anon_sym_LT_EQ] = ACTIONS(524), - [anon_sym_EQ_EQ] = ACTIONS(524), - [anon_sym_BANG_EQ] = ACTIONS(524), - [anon_sym_GT_EQ] = ACTIONS(524), - [anon_sym_GT] = ACTIONS(471), - [anon_sym_LT_GT] = ACTIONS(524), - [anon_sym_is] = ACTIONS(471), - [sym_ellipsis] = ACTIONS(591), - [anon_sym_await] = ACTIONS(593), - [anon_sym_match] = ACTIONS(585), - [anon_sym_type] = ACTIONS(595), - [sym_integer] = ACTIONS(597), - [sym_float] = ACTIONS(597), - [sym_true] = ACTIONS(597), - [sym_false] = ACTIONS(597), - [sym_none] = ACTIONS(597), - [sym_python_identifier] = ACTIONS(597), + [sym_binary_operator] = STATE(1301), + [sym_unary_operator] = STATE(1301), + [sym_attribute] = STATE(1301), + [sym_subscript] = STATE(1301), + [sym_call] = STATE(1301), + [sym_generator_expression] = STATE(1301), + [sym_parenthesized_expression] = STATE(1301), + [sym_list_splat_pattern] = STATE(1294), + [sym_primary_expression] = STATE(975), + [sym_list] = STATE(1301), + [sym_set] = STATE(1301), + [sym_tuple] = STATE(1301), + [sym_dictionary] = STATE(1301), + [sym_list_comprehension] = STATE(1301), + [sym_dictionary_comprehension] = STATE(1301), + [sym_set_comprehension] = STATE(1301), + [sym_concatenated_string] = STATE(1301), + [sym_python_string] = STATE(859), + [sym_await] = STATE(1301), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(627), + [anon_sym_RBRACK] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(631), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(304), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(633), + [anon_sym_print] = ACTIONS(635), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(635), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(635), + [anon_sym_for] = ACTIONS(302), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(641), + [anon_sym_await] = ACTIONS(643), + [anon_sym_match] = ACTIONS(635), + [anon_sym_type] = ACTIONS(645), + [sym_integer] = ACTIONS(647), + [sym_float] = ACTIONS(647), + [sym_true] = ACTIONS(647), + [sym_false] = ACTIONS(647), + [sym_none] = ACTIONS(647), + [sym_python_identifier] = ACTIONS(647), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(595), + [sym_identifier] = ACTIONS(645), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(599), + [sym_string_start] = ACTIONS(649), }, [106] = { - [sym_binary_operator] = STATE(1140), - [sym_unary_operator] = STATE(1140), - [sym_attribute] = STATE(1140), - [sym_subscript] = STATE(1140), - [sym_call] = STATE(1140), - [sym_generator_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_list_splat_pattern] = STATE(1136), - [sym_primary_expression] = STATE(852), - [sym_list] = STATE(1140), - [sym_set] = STATE(1140), - [sym_tuple] = STATE(1140), - [sym_dictionary] = STATE(1140), - [sym_list_comprehension] = STATE(1140), - [sym_dictionary_comprehension] = STATE(1140), - [sym_set_comprehension] = STATE(1140), - [sym_concatenated_string] = STATE(1140), - [sym_python_string] = STATE(838), - [sym_await] = STATE(1140), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_COLON] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_RBRACE] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(301), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(533), - [anon_sym_print] = ACTIONS(535), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(535), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(535), - [anon_sym_for] = ACTIONS(303), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(539), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(537), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(541), - [anon_sym_await] = ACTIONS(543), - [anon_sym_match] = ACTIONS(535), - [anon_sym_type] = ACTIONS(545), - [sym_integer] = ACTIONS(547), - [sym_float] = ACTIONS(547), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_none] = ACTIONS(547), - [sym_python_identifier] = ACTIONS(547), + [sym_binary_operator] = STATE(1316), + [sym_unary_operator] = STATE(1316), + [sym_attribute] = STATE(1316), + [sym_subscript] = STATE(1316), + [sym_call] = STATE(1316), + [sym_generator_expression] = STATE(1316), + [sym_parenthesized_expression] = STATE(1316), + [sym_list_splat_pattern] = STATE(1320), + [sym_primary_expression] = STATE(978), + [sym_list] = STATE(1316), + [sym_set] = STATE(1316), + [sym_tuple] = STATE(1316), + [sym_dictionary] = STATE(1316), + [sym_list_comprehension] = STATE(1316), + [sym_dictionary_comprehension] = STATE(1316), + [sym_set_comprehension] = STATE(1316), + [sym_concatenated_string] = STATE(1316), + [sym_python_string] = STATE(894), + [sym_await] = STATE(1316), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_print] = ACTIONS(579), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(579), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(579), + [anon_sym_for] = ACTIONS(302), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(585), + [anon_sym_await] = ACTIONS(587), + [anon_sym_match] = ACTIONS(579), + [anon_sym_type] = ACTIONS(589), + [sym_integer] = ACTIONS(591), + [sym_float] = ACTIONS(591), + [sym_true] = ACTIONS(591), + [sym_false] = ACTIONS(591), + [sym_none] = ACTIONS(591), + [sym_python_identifier] = ACTIONS(591), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(545), + [sym_identifier] = ACTIONS(589), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(549), + [sym_string_start] = ACTIONS(593), }, [107] = { - [sym_binary_operator] = STATE(1379), - [sym_unary_operator] = STATE(1379), - [sym_attribute] = STATE(1379), - [sym_subscript] = STATE(1379), - [sym_call] = STATE(1379), - [sym_generator_expression] = STATE(1379), - [sym_parenthesized_expression] = STATE(1379), - [sym_list_splat_pattern] = STATE(1347), - [sym_primary_expression] = STATE(1029), - [sym_list] = STATE(1379), - [sym_set] = STATE(1379), - [sym_tuple] = STATE(1379), - [sym_dictionary] = STATE(1379), - [sym_list_comprehension] = STATE(1379), - [sym_dictionary_comprehension] = STATE(1379), - [sym_set_comprehension] = STATE(1379), - [sym_concatenated_string] = STATE(1379), - [sym_python_string] = STATE(1003), - [sym_await] = STATE(1379), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_RBRACK] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(301), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_print] = ACTIONS(633), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(633), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(633), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(635), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(639), - [anon_sym_await] = ACTIONS(641), - [anon_sym_match] = ACTIONS(633), - [anon_sym_type] = ACTIONS(643), - [sym_integer] = ACTIONS(645), - [sym_float] = ACTIONS(645), - [sym_true] = ACTIONS(645), - [sym_false] = ACTIONS(645), - [sym_none] = ACTIONS(645), - [sym_python_identifier] = ACTIONS(645), + [sym_binary_operator] = STATE(964), + [sym_unary_operator] = STATE(964), + [sym_attribute] = STATE(964), + [sym_subscript] = STATE(964), + [sym_call] = STATE(964), + [sym_generator_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_list_splat_pattern] = STATE(960), + [sym_primary_expression] = STATE(932), + [sym_list] = STATE(964), + [sym_set] = STATE(964), + [sym_tuple] = STATE(964), + [sym_dictionary] = STATE(964), + [sym_list_comprehension] = STATE(964), + [sym_dictionary_comprehension] = STATE(964), + [sym_set_comprehension] = STATE(964), + [sym_concatenated_string] = STATE(964), + [sym_python_string] = STATE(833), + [sym_await] = STATE(964), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(455), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_from] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(595), + [anon_sym_print] = ACTIONS(459), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(459), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(459), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(99), + [anon_sym_await] = ACTIONS(601), + [anon_sym_match] = ACTIONS(459), + [anon_sym_type] = ACTIONS(111), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(107), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_python_identifier] = ACTIONS(107), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(643), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(647), + [sym__newline] = ACTIONS(300), + [sym_string_start] = ACTIONS(115), }, [108] = { - [sym_binary_operator] = STATE(971), - [sym_unary_operator] = STATE(971), - [sym_attribute] = STATE(971), - [sym_subscript] = STATE(971), - [sym_call] = STATE(971), - [sym_generator_expression] = STATE(971), - [sym_parenthesized_expression] = STATE(971), - [sym_list_splat_pattern] = STATE(989), - [sym_primary_expression] = STATE(984), - [sym_list] = STATE(971), - [sym_set] = STATE(971), - [sym_tuple] = STATE(971), - [sym_dictionary] = STATE(971), - [sym_list_comprehension] = STATE(971), - [sym_dictionary_comprehension] = STATE(971), - [sym_set_comprehension] = STATE(971), - [sym_concatenated_string] = STATE(971), - [sym_python_string] = STATE(834), - [sym_await] = STATE(971), - [anon_sym_LBRACK] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_SEMI] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_from] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(301), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(516), - [anon_sym_print] = ACTIONS(457), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(457), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(457), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(520), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(97), - [anon_sym_await] = ACTIONS(522), - [anon_sym_match] = ACTIONS(457), - [anon_sym_type] = ACTIONS(109), - [sym_integer] = ACTIONS(105), - [sym_float] = ACTIONS(105), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_none] = ACTIONS(105), - [sym_python_identifier] = ACTIONS(105), + [sym_binary_operator] = STATE(1301), + [sym_unary_operator] = STATE(1301), + [sym_attribute] = STATE(1301), + [sym_subscript] = STATE(1301), + [sym_call] = STATE(1301), + [sym_generator_expression] = STATE(1301), + [sym_parenthesized_expression] = STATE(1301), + [sym_list_splat_pattern] = STATE(1294), + [sym_primary_expression] = STATE(975), + [sym_list] = STATE(1301), + [sym_set] = STATE(1301), + [sym_tuple] = STATE(1301), + [sym_dictionary] = STATE(1301), + [sym_list_comprehension] = STATE(1301), + [sym_dictionary_comprehension] = STATE(1301), + [sym_set_comprehension] = STATE(1301), + [sym_concatenated_string] = STATE(1301), + [sym_python_string] = STATE(859), + [sym_await] = STATE(1301), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(627), + [anon_sym_RBRACK] = ACTIONS(300), + [anon_sym_LPAREN] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(631), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(633), + [anon_sym_print] = ACTIONS(635), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(635), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(635), + [anon_sym_for] = ACTIONS(302), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(641), + [anon_sym_await] = ACTIONS(643), + [anon_sym_match] = ACTIONS(635), + [anon_sym_type] = ACTIONS(645), + [sym_integer] = ACTIONS(647), + [sym_float] = ACTIONS(647), + [sym_true] = ACTIONS(647), + [sym_false] = ACTIONS(647), + [sym_none] = ACTIONS(647), + [sym_python_identifier] = ACTIONS(647), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(109), + [sym_identifier] = ACTIONS(645), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(301), - [sym_string_start] = ACTIONS(113), + [sym_string_start] = ACTIONS(649), }, [109] = { - [sym_binary_operator] = STATE(1222), - [sym_unary_operator] = STATE(1222), - [sym_attribute] = STATE(1222), - [sym_subscript] = STATE(1222), - [sym_call] = STATE(1222), - [sym_generator_expression] = STATE(1222), - [sym_parenthesized_expression] = STATE(1222), - [sym_list_splat_pattern] = STATE(1193), - [sym_primary_expression] = STATE(977), - [sym_list] = STATE(1222), - [sym_set] = STATE(1222), - [sym_tuple] = STATE(1222), - [sym_dictionary] = STATE(1222), - [sym_list_comprehension] = STATE(1222), - [sym_dictionary_comprehension] = STATE(1222), - [sym_set_comprehension] = STATE(1222), - [sym_concatenated_string] = STATE(1222), - [sym_python_string] = STATE(850), - [sym_await] = STATE(1222), - [anon_sym_EQ] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(577), - [anon_sym_COLON] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(579), - [anon_sym_RPAREN] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(301), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(583), - [anon_sym_print] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(585), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(585), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(587), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(591), - [anon_sym_await] = ACTIONS(593), - [anon_sym_match] = ACTIONS(585), - [anon_sym_type] = ACTIONS(595), - [sym_integer] = ACTIONS(597), - [sym_float] = ACTIONS(597), - [sym_true] = ACTIONS(597), - [sym_false] = ACTIONS(597), - [sym_none] = ACTIONS(597), - [sym_python_identifier] = ACTIONS(597), + [sym_binary_operator] = STATE(1278), + [sym_unary_operator] = STATE(1278), + [sym_attribute] = STATE(1278), + [sym_subscript] = STATE(1278), + [sym_call] = STATE(1278), + [sym_generator_expression] = STATE(1278), + [sym_parenthesized_expression] = STATE(1278), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1143), + [sym_list] = STATE(1278), + [sym_set] = STATE(1278), + [sym_tuple] = STATE(1278), + [sym_dictionary] = STATE(1278), + [sym_list_comprehension] = STATE(1278), + [sym_dictionary_comprehension] = STATE(1278), + [sym_set_comprehension] = STATE(1278), + [sym_concatenated_string] = STATE(1278), + [sym_python_string] = STATE(853), + [sym_await] = STATE(1278), + [anon_sym_EQ] = ACTIONS(302), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_COLON] = ACTIONS(302), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_print] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(478), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(478), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(484), + [anon_sym_await] = ACTIONS(657), + [anon_sym_match] = ACTIONS(478), + [anon_sym_type] = ACTIONS(488), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(490), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_python_identifier] = ACTIONS(490), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(595), + [sym_identifier] = ACTIONS(488), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(599), + [sym_string_start] = ACTIONS(492), }, [110] = { - [sym_binary_operator] = STATE(1266), - [sym_unary_operator] = STATE(1266), - [sym_attribute] = STATE(1266), - [sym_subscript] = STATE(1266), - [sym_call] = STATE(1266), - [sym_generator_expression] = STATE(1266), - [sym_parenthesized_expression] = STATE(1266), - [sym_list_splat_pattern] = STATE(1260), - [sym_primary_expression] = STATE(1475), - [sym_list] = STATE(1266), - [sym_set] = STATE(1266), - [sym_tuple] = STATE(1266), - [sym_dictionary] = STATE(1266), - [sym_list_comprehension] = STATE(1266), - [sym_dictionary_comprehension] = STATE(1266), - [sym_set_comprehension] = STATE(1266), - [sym_concatenated_string] = STATE(1266), - [sym_python_string] = STATE(868), - [sym_await] = STATE(1266), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_SEMI] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(471), - [anon_sym_from] = ACTIONS(461), - [anon_sym_COMMA] = ACTIONS(463), - [anon_sym_as] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_print] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_exec] = ACTIONS(476), - [anon_sym_in] = ACTIONS(461), - [anon_sym_if] = ACTIONS(461), - [anon_sym_async] = ACTIONS(476), - [anon_sym_not] = ACTIONS(461), - [anon_sym_and] = ACTIONS(461), - [anon_sym_or] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(524), - [anon_sym_SLASH] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(524), - [anon_sym_SLASH_SLASH] = ACTIONS(524), - [anon_sym_STAR_STAR] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_LT_EQ] = ACTIONS(463), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_LT_GT] = ACTIONS(463), - [anon_sym_is] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(482), - [anon_sym_await] = ACTIONS(484), - [anon_sym_match] = ACTIONS(476), - [anon_sym_type] = ACTIONS(486), - [sym_integer] = ACTIONS(488), - [sym_float] = ACTIONS(488), - [sym_true] = ACTIONS(488), - [sym_false] = ACTIONS(488), - [sym_none] = ACTIONS(488), - [sym_python_identifier] = ACTIONS(488), + [sym_binary_operator] = STATE(1235), + [sym_unary_operator] = STATE(1235), + [sym_attribute] = STATE(1235), + [sym_subscript] = STATE(1235), + [sym_call] = STATE(1235), + [sym_generator_expression] = STATE(1235), + [sym_parenthesized_expression] = STATE(1235), + [sym_list_splat_pattern] = STATE(1224), + [sym_primary_expression] = STATE(909), + [sym_list] = STATE(1235), + [sym_set] = STATE(1235), + [sym_tuple] = STATE(1235), + [sym_dictionary] = STATE(1235), + [sym_list_comprehension] = STATE(1235), + [sym_dictionary_comprehension] = STATE(1235), + [sym_set_comprehension] = STATE(1235), + [sym_concatenated_string] = STATE(1235), + [sym_python_string] = STATE(889), + [sym_await] = STATE(1235), + [anon_sym_EQ] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_COLON] = ACTIONS(300), + [anon_sym_LPAREN] = ACTIONS(520), + [anon_sym_RPAREN] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_print] = ACTIONS(526), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(526), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(526), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(528), + [anon_sym_DASH] = ACTIONS(530), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(528), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(532), + [anon_sym_await] = ACTIONS(534), + [anon_sym_match] = ACTIONS(526), + [anon_sym_type] = ACTIONS(536), + [sym_integer] = ACTIONS(538), + [sym_float] = ACTIONS(538), + [sym_true] = ACTIONS(538), + [sym_false] = ACTIONS(538), + [sym_none] = ACTIONS(538), + [sym_python_identifier] = ACTIONS(538), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(486), + [sym_identifier] = ACTIONS(536), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(463), - [sym_string_start] = ACTIONS(490), + [sym_string_start] = ACTIONS(540), }, [111] = { - [sym_binary_operator] = STATE(1266), - [sym_unary_operator] = STATE(1266), - [sym_attribute] = STATE(1266), - [sym_subscript] = STATE(1266), - [sym_call] = STATE(1266), - [sym_generator_expression] = STATE(1266), - [sym_parenthesized_expression] = STATE(1266), - [sym_list_splat_pattern] = STATE(1260), - [sym_primary_expression] = STATE(1475), - [sym_list] = STATE(1266), - [sym_set] = STATE(1266), - [sym_tuple] = STATE(1266), - [sym_dictionary] = STATE(1266), - [sym_list_comprehension] = STATE(1266), - [sym_dictionary_comprehension] = STATE(1266), - [sym_set_comprehension] = STATE(1266), - [sym_concatenated_string] = STATE(1266), - [sym_python_string] = STATE(868), - [sym_await] = STATE(1266), - [anon_sym_EQ] = ACTIONS(463), - [anon_sym_PLUS_EQ] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_COLON] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_SEMI] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(471), - [anon_sym_COMMA] = ACTIONS(463), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_print] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(471), - [anon_sym_exec] = ACTIONS(476), - [anon_sym_async] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(471), - [anon_sym_SLASH] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_SLASH_SLASH] = ACTIONS(471), - [anon_sym_STAR_STAR] = ACTIONS(471), - [anon_sym_PIPE] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_CARET] = ACTIONS(471), - [anon_sym_LT_LT] = ACTIONS(471), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_DASH_EQ] = ACTIONS(463), - [anon_sym_STAR_EQ] = ACTIONS(463), - [anon_sym_SLASH_EQ] = ACTIONS(463), - [anon_sym_AT_EQ] = ACTIONS(463), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(463), - [anon_sym_PERCENT_EQ] = ACTIONS(463), - [anon_sym_STAR_STAR_EQ] = ACTIONS(463), - [anon_sym_GT_GT_EQ] = ACTIONS(463), - [anon_sym_LT_LT_EQ] = ACTIONS(463), - [anon_sym_AMP_EQ] = ACTIONS(463), - [anon_sym_CARET_EQ] = ACTIONS(463), - [anon_sym_PIPE_EQ] = ACTIONS(463), - [sym_ellipsis] = ACTIONS(482), - [anon_sym_await] = ACTIONS(484), - [anon_sym_match] = ACTIONS(476), - [anon_sym_type] = ACTIONS(486), - [sym_integer] = ACTIONS(488), - [sym_float] = ACTIONS(488), - [sym_true] = ACTIONS(488), - [sym_false] = ACTIONS(488), - [sym_none] = ACTIONS(488), - [sym_python_identifier] = ACTIONS(488), + [sym_binary_operator] = STATE(1351), + [sym_unary_operator] = STATE(1351), + [sym_attribute] = STATE(1351), + [sym_subscript] = STATE(1351), + [sym_call] = STATE(1351), + [sym_generator_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_list_splat_pattern] = STATE(1348), + [sym_primary_expression] = STATE(1132), + [sym_list] = STATE(1351), + [sym_set] = STATE(1351), + [sym_tuple] = STATE(1351), + [sym_dictionary] = STATE(1351), + [sym_list_comprehension] = STATE(1351), + [sym_dictionary_comprehension] = STATE(1351), + [sym_set_comprehension] = STATE(1351), + [sym_concatenated_string] = STATE(1351), + [sym_python_string] = STATE(952), + [sym_await] = STATE(1351), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_RBRACK] = ACTIONS(300), + [anon_sym_COLON] = ACTIONS(302), + [anon_sym_LPAREN] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(609), + [anon_sym_print] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(611), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(611), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(617), + [anon_sym_await] = ACTIONS(619), + [anon_sym_match] = ACTIONS(611), + [anon_sym_type] = ACTIONS(621), + [sym_integer] = ACTIONS(623), + [sym_float] = ACTIONS(623), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), + [sym_none] = ACTIONS(623), + [sym_python_identifier] = ACTIONS(623), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(486), + [sym_identifier] = ACTIONS(621), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(463), - [sym_string_start] = ACTIONS(490), + [sym_string_start] = ACTIONS(625), }, [112] = { - [sym_binary_operator] = STATE(1266), - [sym_unary_operator] = STATE(1266), - [sym_attribute] = STATE(1266), - [sym_subscript] = STATE(1266), - [sym_call] = STATE(1266), - [sym_generator_expression] = STATE(1266), - [sym_parenthesized_expression] = STATE(1266), - [sym_list_splat_pattern] = STATE(1260), - [sym_primary_expression] = STATE(1475), - [sym_list] = STATE(1266), - [sym_set] = STATE(1266), - [sym_tuple] = STATE(1266), - [sym_dictionary] = STATE(1266), - [sym_list_comprehension] = STATE(1266), - [sym_dictionary_comprehension] = STATE(1266), - [sym_set_comprehension] = STATE(1266), - [sym_concatenated_string] = STATE(1266), - [sym_python_string] = STATE(868), - [sym_await] = STATE(1266), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_RPAREN] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_DOT] = ACTIONS(471), - [anon_sym_COMMA] = ACTIONS(463), - [anon_sym_as] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_print] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_exec] = ACTIONS(476), - [anon_sym_in] = ACTIONS(461), - [anon_sym_if] = ACTIONS(461), - [anon_sym_async] = ACTIONS(476), - [anon_sym_for] = ACTIONS(461), - [anon_sym_not] = ACTIONS(461), - [anon_sym_and] = ACTIONS(461), - [anon_sym_or] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(524), - [anon_sym_SLASH] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(524), - [anon_sym_SLASH_SLASH] = ACTIONS(524), - [anon_sym_STAR_STAR] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_LT_EQ] = ACTIONS(463), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_LT_GT] = ACTIONS(463), - [anon_sym_is] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(482), - [anon_sym_await] = ACTIONS(484), - [anon_sym_match] = ACTIONS(476), - [anon_sym_type] = ACTIONS(486), - [sym_integer] = ACTIONS(488), - [sym_float] = ACTIONS(488), - [sym_true] = ACTIONS(488), - [sym_false] = ACTIONS(488), - [sym_none] = ACTIONS(488), - [sym_python_identifier] = ACTIONS(488), + [sym_binary_operator] = STATE(1278), + [sym_unary_operator] = STATE(1278), + [sym_attribute] = STATE(1278), + [sym_subscript] = STATE(1278), + [sym_call] = STATE(1278), + [sym_generator_expression] = STATE(1278), + [sym_parenthesized_expression] = STATE(1278), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1452), + [sym_list] = STATE(1278), + [sym_set] = STATE(1278), + [sym_tuple] = STATE(1278), + [sym_dictionary] = STATE(1278), + [sym_list_comprehension] = STATE(1278), + [sym_dictionary_comprehension] = STATE(1278), + [sym_set_comprehension] = STATE(1278), + [sym_concatenated_string] = STATE(1278), + [sym_python_string] = STATE(853), + [sym_await] = STATE(1278), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_RBRACK] = ACTIONS(465), + [anon_sym_COLON] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_as] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(476), + [anon_sym_print] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_exec] = ACTIONS(478), + [anon_sym_in] = ACTIONS(463), + [anon_sym_if] = ACTIONS(463), + [anon_sym_async] = ACTIONS(478), + [anon_sym_not] = ACTIONS(463), + [anon_sym_and] = ACTIONS(463), + [anon_sym_or] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_SLASH_SLASH] = ACTIONS(566), + [anon_sym_STAR_STAR] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_LT_EQ] = ACTIONS(465), + [anon_sym_EQ_EQ] = ACTIONS(465), + [anon_sym_BANG_EQ] = ACTIONS(465), + [anon_sym_GT_EQ] = ACTIONS(465), + [anon_sym_GT] = ACTIONS(463), + [anon_sym_LT_GT] = ACTIONS(465), + [anon_sym_is] = ACTIONS(463), + [sym_ellipsis] = ACTIONS(484), + [anon_sym_await] = ACTIONS(486), + [anon_sym_match] = ACTIONS(478), + [anon_sym_type] = ACTIONS(488), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(490), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_python_identifier] = ACTIONS(490), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(486), + [sym_identifier] = ACTIONS(488), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(490), + [sym_string_start] = ACTIONS(492), }, [113] = { - [sym_binary_operator] = STATE(1266), - [sym_unary_operator] = STATE(1266), - [sym_attribute] = STATE(1266), - [sym_subscript] = STATE(1266), - [sym_call] = STATE(1266), - [sym_generator_expression] = STATE(1266), - [sym_parenthesized_expression] = STATE(1266), - [sym_list_splat_pattern] = STATE(1260), - [sym_primary_expression] = STATE(1475), - [sym_list] = STATE(1266), - [sym_set] = STATE(1266), - [sym_tuple] = STATE(1266), - [sym_dictionary] = STATE(1266), - [sym_list_comprehension] = STATE(1266), - [sym_dictionary_comprehension] = STATE(1266), - [sym_set_comprehension] = STATE(1266), - [sym_concatenated_string] = STATE(1266), - [sym_python_string] = STATE(868), - [sym_await] = STATE(1266), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_COLON] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_DOT] = ACTIONS(471), - [anon_sym_COMMA] = ACTIONS(463), - [anon_sym_as] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_print] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_exec] = ACTIONS(476), - [anon_sym_in] = ACTIONS(461), - [anon_sym_if] = ACTIONS(461), - [anon_sym_async] = ACTIONS(476), - [anon_sym_not] = ACTIONS(461), - [anon_sym_and] = ACTIONS(461), - [anon_sym_or] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(524), - [anon_sym_SLASH] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(524), - [anon_sym_SLASH_SLASH] = ACTIONS(524), - [anon_sym_STAR_STAR] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_LT_EQ] = ACTIONS(463), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_LT_GT] = ACTIONS(463), - [anon_sym_is] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(482), - [anon_sym_await] = ACTIONS(484), - [anon_sym_match] = ACTIONS(476), - [anon_sym_type] = ACTIONS(486), - [sym_integer] = ACTIONS(488), - [sym_float] = ACTIONS(488), - [sym_true] = ACTIONS(488), - [sym_false] = ACTIONS(488), - [sym_none] = ACTIONS(488), - [sym_python_identifier] = ACTIONS(488), + [sym_binary_operator] = STATE(1301), + [sym_unary_operator] = STATE(1301), + [sym_attribute] = STATE(1301), + [sym_subscript] = STATE(1301), + [sym_call] = STATE(1301), + [sym_generator_expression] = STATE(1301), + [sym_parenthesized_expression] = STATE(1301), + [sym_list_splat_pattern] = STATE(1294), + [sym_primary_expression] = STATE(975), + [sym_list] = STATE(1301), + [sym_set] = STATE(1301), + [sym_tuple] = STATE(1301), + [sym_dictionary] = STATE(1301), + [sym_list_comprehension] = STATE(1301), + [sym_dictionary_comprehension] = STATE(1301), + [sym_set_comprehension] = STATE(1301), + [sym_concatenated_string] = STATE(1301), + [sym_python_string] = STATE(859), + [sym_await] = STATE(1301), + [anon_sym_LBRACK] = ACTIONS(627), + [anon_sym_RBRACK] = ACTIONS(300), + [anon_sym_LPAREN] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(631), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(633), + [anon_sym_print] = ACTIONS(635), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(635), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(635), + [anon_sym_for] = ACTIONS(302), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(641), + [anon_sym_await] = ACTIONS(643), + [anon_sym_match] = ACTIONS(635), + [anon_sym_type] = ACTIONS(645), + [sym_integer] = ACTIONS(647), + [sym_float] = ACTIONS(647), + [sym_true] = ACTIONS(647), + [sym_false] = ACTIONS(647), + [sym_none] = ACTIONS(647), + [sym_python_identifier] = ACTIONS(647), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(486), + [sym_identifier] = ACTIONS(645), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(490), + [sym_string_start] = ACTIONS(649), }, [114] = { - [sym_binary_operator] = STATE(1222), - [sym_unary_operator] = STATE(1222), - [sym_attribute] = STATE(1222), - [sym_subscript] = STATE(1222), - [sym_call] = STATE(1222), - [sym_generator_expression] = STATE(1222), - [sym_parenthesized_expression] = STATE(1222), - [sym_list_splat_pattern] = STATE(1193), - [sym_primary_expression] = STATE(977), - [sym_list] = STATE(1222), - [sym_set] = STATE(1222), - [sym_tuple] = STATE(1222), - [sym_dictionary] = STATE(1222), - [sym_list_comprehension] = STATE(1222), - [sym_dictionary_comprehension] = STATE(1222), - [sym_set_comprehension] = STATE(1222), - [sym_concatenated_string] = STATE(1222), - [sym_python_string] = STATE(850), - [sym_await] = STATE(1222), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(577), - [anon_sym_LPAREN] = ACTIONS(579), - [anon_sym_RPAREN] = ACTIONS(524), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_DOT] = ACTIONS(471), - [anon_sym_COMMA] = ACTIONS(524), - [anon_sym_as] = ACTIONS(471), - [anon_sym_STAR] = ACTIONS(583), - [anon_sym_print] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_exec] = ACTIONS(585), - [anon_sym_in] = ACTIONS(471), - [anon_sym_if] = ACTIONS(471), - [anon_sym_async] = ACTIONS(585), - [anon_sym_not] = ACTIONS(471), - [anon_sym_and] = ACTIONS(471), - [anon_sym_or] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_AT] = ACTIONS(524), - [anon_sym_SLASH] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(524), - [anon_sym_SLASH_SLASH] = ACTIONS(524), - [anon_sym_STAR_STAR] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(587), - [anon_sym_LT] = ACTIONS(471), - [anon_sym_LT_EQ] = ACTIONS(524), - [anon_sym_EQ_EQ] = ACTIONS(524), - [anon_sym_BANG_EQ] = ACTIONS(524), - [anon_sym_GT_EQ] = ACTIONS(524), - [anon_sym_GT] = ACTIONS(471), - [anon_sym_LT_GT] = ACTIONS(524), - [anon_sym_is] = ACTIONS(471), - [sym_ellipsis] = ACTIONS(591), - [anon_sym_await] = ACTIONS(593), - [anon_sym_match] = ACTIONS(585), - [anon_sym_type] = ACTIONS(595), - [sym_integer] = ACTIONS(597), - [sym_float] = ACTIONS(597), - [sym_true] = ACTIONS(597), - [sym_false] = ACTIONS(597), - [sym_none] = ACTIONS(597), - [sym_python_identifier] = ACTIONS(597), + [sym_binary_operator] = STATE(1278), + [sym_unary_operator] = STATE(1278), + [sym_attribute] = STATE(1278), + [sym_subscript] = STATE(1278), + [sym_call] = STATE(1278), + [sym_generator_expression] = STATE(1278), + [sym_parenthesized_expression] = STATE(1278), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1143), + [sym_list] = STATE(1278), + [sym_set] = STATE(1278), + [sym_tuple] = STATE(1278), + [sym_dictionary] = STATE(1278), + [sym_list_comprehension] = STATE(1278), + [sym_dictionary_comprehension] = STATE(1278), + [sym_set_comprehension] = STATE(1278), + [sym_concatenated_string] = STATE(1278), + [sym_python_string] = STATE(853), + [sym_await] = STATE(1278), + [anon_sym_EQ] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_COLON] = ACTIONS(300), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_print] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(478), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(478), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(484), + [anon_sym_await] = ACTIONS(657), + [anon_sym_match] = ACTIONS(478), + [anon_sym_type] = ACTIONS(488), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(490), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_python_identifier] = ACTIONS(490), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(595), + [sym_identifier] = ACTIONS(488), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(599), + [sym_string_start] = ACTIONS(492), }, [115] = { - [sym_binary_operator] = STATE(1379), - [sym_unary_operator] = STATE(1379), - [sym_attribute] = STATE(1379), - [sym_subscript] = STATE(1379), - [sym_call] = STATE(1379), - [sym_generator_expression] = STATE(1379), - [sym_parenthesized_expression] = STATE(1379), - [sym_list_splat_pattern] = STATE(1347), - [sym_primary_expression] = STATE(1029), - [sym_list] = STATE(1379), - [sym_set] = STATE(1379), - [sym_tuple] = STATE(1379), - [sym_dictionary] = STATE(1379), - [sym_list_comprehension] = STATE(1379), - [sym_dictionary_comprehension] = STATE(1379), - [sym_set_comprehension] = STATE(1379), - [sym_concatenated_string] = STATE(1379), - [sym_python_string] = STATE(1003), - [sym_await] = STATE(1379), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_RBRACK] = ACTIONS(301), - [anon_sym_COLON] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(301), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_print] = ACTIONS(633), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(633), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(633), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(635), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(639), - [anon_sym_await] = ACTIONS(641), - [anon_sym_match] = ACTIONS(633), - [anon_sym_type] = ACTIONS(643), - [sym_integer] = ACTIONS(645), - [sym_float] = ACTIONS(645), - [sym_true] = ACTIONS(645), - [sym_false] = ACTIONS(645), - [sym_none] = ACTIONS(645), - [sym_python_identifier] = ACTIONS(645), + [sym_binary_operator] = STATE(1278), + [sym_unary_operator] = STATE(1278), + [sym_attribute] = STATE(1278), + [sym_subscript] = STATE(1278), + [sym_call] = STATE(1278), + [sym_generator_expression] = STATE(1278), + [sym_parenthesized_expression] = STATE(1278), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1452), + [sym_list] = STATE(1278), + [sym_set] = STATE(1278), + [sym_tuple] = STATE(1278), + [sym_dictionary] = STATE(1278), + [sym_list_comprehension] = STATE(1278), + [sym_dictionary_comprehension] = STATE(1278), + [sym_set_comprehension] = STATE(1278), + [sym_concatenated_string] = STATE(1278), + [sym_python_string] = STATE(853), + [sym_await] = STATE(1278), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_as] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(476), + [anon_sym_print] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_exec] = ACTIONS(478), + [anon_sym_in] = ACTIONS(463), + [anon_sym_if] = ACTIONS(463), + [anon_sym_async] = ACTIONS(478), + [anon_sym_for] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_and] = ACTIONS(463), + [anon_sym_or] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_SLASH_SLASH] = ACTIONS(566), + [anon_sym_STAR_STAR] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_LT_EQ] = ACTIONS(465), + [anon_sym_EQ_EQ] = ACTIONS(465), + [anon_sym_BANG_EQ] = ACTIONS(465), + [anon_sym_GT_EQ] = ACTIONS(465), + [anon_sym_GT] = ACTIONS(463), + [anon_sym_LT_GT] = ACTIONS(465), + [anon_sym_is] = ACTIONS(463), + [sym_ellipsis] = ACTIONS(484), + [anon_sym_await] = ACTIONS(486), + [anon_sym_match] = ACTIONS(478), + [anon_sym_type] = ACTIONS(488), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(490), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_python_identifier] = ACTIONS(490), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(643), + [sym_identifier] = ACTIONS(488), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(647), + [sym_string_start] = ACTIONS(492), }, [116] = { - [sym_binary_operator] = STATE(1266), - [sym_unary_operator] = STATE(1266), - [sym_attribute] = STATE(1266), - [sym_subscript] = STATE(1266), - [sym_call] = STATE(1266), - [sym_generator_expression] = STATE(1266), - [sym_parenthesized_expression] = STATE(1266), - [sym_list_splat_pattern] = STATE(1260), - [sym_primary_expression] = STATE(1475), - [sym_list] = STATE(1266), - [sym_set] = STATE(1266), - [sym_tuple] = STATE(1266), - [sym_dictionary] = STATE(1266), - [sym_list_comprehension] = STATE(1266), - [sym_dictionary_comprehension] = STATE(1266), - [sym_set_comprehension] = STATE(1266), - [sym_concatenated_string] = STATE(1266), - [sym_python_string] = STATE(868), - [sym_await] = STATE(1266), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_RBRACK] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_DOT] = ACTIONS(471), - [anon_sym_COMMA] = ACTIONS(463), - [anon_sym_as] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_print] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_exec] = ACTIONS(476), - [anon_sym_in] = ACTIONS(461), - [anon_sym_if] = ACTIONS(461), - [anon_sym_async] = ACTIONS(476), - [anon_sym_for] = ACTIONS(461), - [anon_sym_not] = ACTIONS(461), - [anon_sym_and] = ACTIONS(461), - [anon_sym_or] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(524), - [anon_sym_SLASH] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(524), - [anon_sym_SLASH_SLASH] = ACTIONS(524), - [anon_sym_STAR_STAR] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_LT_EQ] = ACTIONS(463), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_LT_GT] = ACTIONS(463), - [anon_sym_is] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(482), - [anon_sym_await] = ACTIONS(484), - [anon_sym_match] = ACTIONS(476), - [anon_sym_type] = ACTIONS(486), - [sym_integer] = ACTIONS(488), - [sym_float] = ACTIONS(488), - [sym_true] = ACTIONS(488), - [sym_false] = ACTIONS(488), - [sym_none] = ACTIONS(488), - [sym_python_identifier] = ACTIONS(488), + [sym_binary_operator] = STATE(1278), + [sym_unary_operator] = STATE(1278), + [sym_attribute] = STATE(1278), + [sym_subscript] = STATE(1278), + [sym_call] = STATE(1278), + [sym_generator_expression] = STATE(1278), + [sym_parenthesized_expression] = STATE(1278), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1452), + [sym_list] = STATE(1278), + [sym_set] = STATE(1278), + [sym_tuple] = STATE(1278), + [sym_dictionary] = STATE(1278), + [sym_list_comprehension] = STATE(1278), + [sym_dictionary_comprehension] = STATE(1278), + [sym_set_comprehension] = STATE(1278), + [sym_concatenated_string] = STATE(1278), + [sym_python_string] = STATE(853), + [sym_await] = STATE(1278), + [anon_sym_EQ] = ACTIONS(463), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_COLON] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_as] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(476), + [anon_sym_print] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_exec] = ACTIONS(478), + [anon_sym_in] = ACTIONS(463), + [anon_sym_if] = ACTIONS(463), + [anon_sym_async] = ACTIONS(478), + [anon_sym_not] = ACTIONS(463), + [anon_sym_and] = ACTIONS(463), + [anon_sym_or] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_SLASH_SLASH] = ACTIONS(566), + [anon_sym_STAR_STAR] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_LT_EQ] = ACTIONS(465), + [anon_sym_EQ_EQ] = ACTIONS(465), + [anon_sym_BANG_EQ] = ACTIONS(465), + [anon_sym_GT_EQ] = ACTIONS(465), + [anon_sym_GT] = ACTIONS(463), + [anon_sym_LT_GT] = ACTIONS(465), + [anon_sym_is] = ACTIONS(463), + [sym_ellipsis] = ACTIONS(484), + [anon_sym_await] = ACTIONS(486), + [anon_sym_match] = ACTIONS(478), + [anon_sym_type] = ACTIONS(488), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(490), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_python_identifier] = ACTIONS(490), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(486), + [sym_identifier] = ACTIONS(488), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(490), + [sym_string_start] = ACTIONS(492), }, [117] = { - [sym_binary_operator] = STATE(1266), - [sym_unary_operator] = STATE(1266), - [sym_attribute] = STATE(1266), - [sym_subscript] = STATE(1266), - [sym_call] = STATE(1266), - [sym_generator_expression] = STATE(1266), - [sym_parenthesized_expression] = STATE(1266), - [sym_list_splat_pattern] = STATE(1260), - [sym_primary_expression] = STATE(1118), - [sym_list] = STATE(1266), - [sym_set] = STATE(1266), - [sym_tuple] = STATE(1266), - [sym_dictionary] = STATE(1266), - [sym_list_comprehension] = STATE(1266), - [sym_dictionary_comprehension] = STATE(1266), - [sym_set_comprehension] = STATE(1266), - [sym_concatenated_string] = STATE(1266), - [sym_python_string] = STATE(868), - [sym_await] = STATE(1266), - [anon_sym_EQ] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_COLON] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(301), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(649), - [anon_sym_print] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(476), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(476), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(651), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(482), - [anon_sym_await] = ACTIONS(655), - [anon_sym_match] = ACTIONS(476), - [anon_sym_type] = ACTIONS(486), - [sym_integer] = ACTIONS(488), - [sym_float] = ACTIONS(488), - [sym_true] = ACTIONS(488), - [sym_false] = ACTIONS(488), - [sym_none] = ACTIONS(488), - [sym_python_identifier] = ACTIONS(488), + [sym_binary_operator] = STATE(1278), + [sym_unary_operator] = STATE(1278), + [sym_attribute] = STATE(1278), + [sym_subscript] = STATE(1278), + [sym_call] = STATE(1278), + [sym_generator_expression] = STATE(1278), + [sym_parenthesized_expression] = STATE(1278), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1452), + [sym_list] = STATE(1278), + [sym_set] = STATE(1278), + [sym_tuple] = STATE(1278), + [sym_dictionary] = STATE(1278), + [sym_list_comprehension] = STATE(1278), + [sym_dictionary_comprehension] = STATE(1278), + [sym_set_comprehension] = STATE(1278), + [sym_concatenated_string] = STATE(1278), + [sym_python_string] = STATE(853), + [sym_await] = STATE(1278), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_RBRACK] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_as] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(476), + [anon_sym_print] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_exec] = ACTIONS(478), + [anon_sym_in] = ACTIONS(463), + [anon_sym_if] = ACTIONS(463), + [anon_sym_async] = ACTIONS(478), + [anon_sym_for] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_and] = ACTIONS(463), + [anon_sym_or] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_SLASH_SLASH] = ACTIONS(566), + [anon_sym_STAR_STAR] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_LT_EQ] = ACTIONS(465), + [anon_sym_EQ_EQ] = ACTIONS(465), + [anon_sym_BANG_EQ] = ACTIONS(465), + [anon_sym_GT_EQ] = ACTIONS(465), + [anon_sym_GT] = ACTIONS(463), + [anon_sym_LT_GT] = ACTIONS(465), + [anon_sym_is] = ACTIONS(463), + [sym_ellipsis] = ACTIONS(484), + [anon_sym_await] = ACTIONS(486), + [anon_sym_match] = ACTIONS(478), + [anon_sym_type] = ACTIONS(488), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(490), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_python_identifier] = ACTIONS(490), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(486), + [sym_identifier] = ACTIONS(488), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(490), + [sym_string_start] = ACTIONS(492), }, [118] = { - [sym_binary_operator] = STATE(1379), - [sym_unary_operator] = STATE(1379), - [sym_attribute] = STATE(1379), - [sym_subscript] = STATE(1379), - [sym_call] = STATE(1379), - [sym_generator_expression] = STATE(1379), - [sym_parenthesized_expression] = STATE(1379), - [sym_list_splat_pattern] = STATE(1347), - [sym_primary_expression] = STATE(1029), - [sym_list] = STATE(1379), - [sym_set] = STATE(1379), - [sym_tuple] = STATE(1379), - [sym_dictionary] = STATE(1379), - [sym_list_comprehension] = STATE(1379), - [sym_dictionary_comprehension] = STATE(1379), - [sym_set_comprehension] = STATE(1379), - [sym_concatenated_string] = STATE(1379), - [sym_python_string] = STATE(1003), - [sym_await] = STATE(1379), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_RBRACK] = ACTIONS(524), - [anon_sym_LPAREN] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_DOT] = ACTIONS(471), - [anon_sym_COMMA] = ACTIONS(524), - [anon_sym_as] = ACTIONS(471), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_print] = ACTIONS(633), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_exec] = ACTIONS(633), - [anon_sym_in] = ACTIONS(471), - [anon_sym_if] = ACTIONS(471), - [anon_sym_async] = ACTIONS(633), - [anon_sym_not] = ACTIONS(471), - [anon_sym_and] = ACTIONS(471), - [anon_sym_or] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(524), - [anon_sym_SLASH] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(524), - [anon_sym_SLASH_SLASH] = ACTIONS(524), - [anon_sym_STAR_STAR] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(635), - [anon_sym_LT] = ACTIONS(471), - [anon_sym_LT_EQ] = ACTIONS(524), - [anon_sym_EQ_EQ] = ACTIONS(524), - [anon_sym_BANG_EQ] = ACTIONS(524), - [anon_sym_GT_EQ] = ACTIONS(524), - [anon_sym_GT] = ACTIONS(471), - [anon_sym_LT_GT] = ACTIONS(524), - [anon_sym_is] = ACTIONS(471), - [sym_ellipsis] = ACTIONS(639), - [anon_sym_await] = ACTIONS(641), - [anon_sym_match] = ACTIONS(633), - [anon_sym_type] = ACTIONS(643), - [sym_integer] = ACTIONS(645), - [sym_float] = ACTIONS(645), - [sym_true] = ACTIONS(645), - [sym_false] = ACTIONS(645), - [sym_none] = ACTIONS(645), - [sym_python_identifier] = ACTIONS(645), + [sym_binary_operator] = STATE(1316), + [sym_unary_operator] = STATE(1316), + [sym_attribute] = STATE(1316), + [sym_subscript] = STATE(1316), + [sym_call] = STATE(1316), + [sym_generator_expression] = STATE(1316), + [sym_parenthesized_expression] = STATE(1316), + [sym_list_splat_pattern] = STATE(1320), + [sym_primary_expression] = STATE(978), + [sym_list] = STATE(1316), + [sym_set] = STATE(1316), + [sym_tuple] = STATE(1316), + [sym_dictionary] = STATE(1316), + [sym_list_comprehension] = STATE(1316), + [sym_dictionary_comprehension] = STATE(1316), + [sym_set_comprehension] = STATE(1316), + [sym_concatenated_string] = STATE(1316), + [sym_python_string] = STATE(894), + [sym_await] = STATE(1316), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_print] = ACTIONS(579), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(579), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(579), + [anon_sym_for] = ACTIONS(302), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(585), + [anon_sym_await] = ACTIONS(587), + [anon_sym_match] = ACTIONS(579), + [anon_sym_type] = ACTIONS(589), + [sym_integer] = ACTIONS(591), + [sym_float] = ACTIONS(591), + [sym_true] = ACTIONS(591), + [sym_false] = ACTIONS(591), + [sym_none] = ACTIONS(591), + [sym_python_identifier] = ACTIONS(591), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(643), + [sym_identifier] = ACTIONS(589), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(647), + [sym_string_start] = ACTIONS(593), }, [119] = { - [sym_binary_operator] = STATE(1223), - [sym_unary_operator] = STATE(1223), - [sym_attribute] = STATE(1223), - [sym_subscript] = STATE(1223), - [sym_call] = STATE(1223), - [sym_generator_expression] = STATE(1223), - [sym_parenthesized_expression] = STATE(1223), - [sym_list_splat_pattern] = STATE(1172), - [sym_primary_expression] = STATE(916), - [sym_list] = STATE(1223), - [sym_set] = STATE(1223), - [sym_tuple] = STATE(1223), - [sym_dictionary] = STATE(1223), - [sym_list_comprehension] = STATE(1223), - [sym_dictionary_comprehension] = STATE(1223), - [sym_set_comprehension] = STATE(1223), - [sym_concatenated_string] = STATE(1223), - [sym_python_string] = STATE(851), - [sym_await] = STATE(1223), - [anon_sym_LBRACK] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_RPAREN] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(557), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(301), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(561), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(561), - [anon_sym_for] = ACTIONS(303), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(567), - [anon_sym_await] = ACTIONS(569), - [anon_sym_match] = ACTIONS(561), - [anon_sym_type] = ACTIONS(571), - [sym_integer] = ACTIONS(573), - [sym_float] = ACTIONS(573), - [sym_true] = ACTIONS(573), - [sym_false] = ACTIONS(573), - [sym_none] = ACTIONS(573), - [sym_python_identifier] = ACTIONS(573), + [sym_binary_operator] = STATE(1136), + [sym_unary_operator] = STATE(1136), + [sym_attribute] = STATE(1136), + [sym_subscript] = STATE(1136), + [sym_call] = STATE(1136), + [sym_generator_expression] = STATE(1136), + [sym_parenthesized_expression] = STATE(1136), + [sym_list_splat_pattern] = STATE(1133), + [sym_primary_expression] = STATE(873), + [sym_list] = STATE(1136), + [sym_set] = STATE(1136), + [sym_tuple] = STATE(1136), + [sym_dictionary] = STATE(1136), + [sym_list_comprehension] = STATE(1136), + [sym_dictionary_comprehension] = STATE(1136), + [sym_set_comprehension] = STATE(1136), + [sym_concatenated_string] = STATE(1136), + [sym_python_string] = STATE(844), + [sym_await] = STATE(1136), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(494), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_as] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_print] = ACTIONS(502), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_exec] = ACTIONS(502), + [anon_sym_in] = ACTIONS(473), + [anon_sym_if] = ACTIONS(473), + [anon_sym_async] = ACTIONS(502), + [anon_sym_not] = ACTIONS(473), + [anon_sym_and] = ACTIONS(473), + [anon_sym_or] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_AT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_SLASH_SLASH] = ACTIONS(566), + [anon_sym_STAR_STAR] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(566), + [anon_sym_is] = ACTIONS(473), + [sym_ellipsis] = ACTIONS(508), + [anon_sym_await] = ACTIONS(510), + [anon_sym_match] = ACTIONS(502), + [anon_sym_type] = ACTIONS(512), + [sym_integer] = ACTIONS(514), + [sym_float] = ACTIONS(514), + [sym_true] = ACTIONS(514), + [sym_false] = ACTIONS(514), + [sym_none] = ACTIONS(514), + [sym_python_identifier] = ACTIONS(514), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(571), + [sym_identifier] = ACTIONS(512), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(575), + [sym_string_start] = ACTIONS(516), }, [120] = { - [sym_binary_operator] = STATE(1266), - [sym_unary_operator] = STATE(1266), - [sym_attribute] = STATE(1266), - [sym_subscript] = STATE(1266), - [sym_call] = STATE(1266), - [sym_generator_expression] = STATE(1266), - [sym_parenthesized_expression] = STATE(1266), - [sym_list_splat_pattern] = STATE(1260), - [sym_primary_expression] = STATE(1475), - [sym_list] = STATE(1266), - [sym_set] = STATE(1266), - [sym_tuple] = STATE(1266), - [sym_dictionary] = STATE(1266), - [sym_list_comprehension] = STATE(1266), - [sym_dictionary_comprehension] = STATE(1266), - [sym_set_comprehension] = STATE(1266), - [sym_concatenated_string] = STATE(1266), - [sym_python_string] = STATE(868), - [sym_await] = STATE(1266), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_RBRACK] = ACTIONS(463), - [anon_sym_COLON] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_DOT] = ACTIONS(471), - [anon_sym_COMMA] = ACTIONS(463), - [anon_sym_as] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_print] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_exec] = ACTIONS(476), - [anon_sym_in] = ACTIONS(461), - [anon_sym_if] = ACTIONS(461), - [anon_sym_async] = ACTIONS(476), - [anon_sym_not] = ACTIONS(461), - [anon_sym_and] = ACTIONS(461), - [anon_sym_or] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(524), - [anon_sym_SLASH] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(524), - [anon_sym_SLASH_SLASH] = ACTIONS(524), - [anon_sym_STAR_STAR] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_LT_EQ] = ACTIONS(463), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_LT_GT] = ACTIONS(463), - [anon_sym_is] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(482), - [anon_sym_await] = ACTIONS(484), - [anon_sym_match] = ACTIONS(476), - [anon_sym_type] = ACTIONS(486), - [sym_integer] = ACTIONS(488), - [sym_float] = ACTIONS(488), - [sym_true] = ACTIONS(488), - [sym_false] = ACTIONS(488), - [sym_none] = ACTIONS(488), - [sym_python_identifier] = ACTIONS(488), + [sym_binary_operator] = STATE(1351), + [sym_unary_operator] = STATE(1351), + [sym_attribute] = STATE(1351), + [sym_subscript] = STATE(1351), + [sym_call] = STATE(1351), + [sym_generator_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_list_splat_pattern] = STATE(1348), + [sym_primary_expression] = STATE(1132), + [sym_list] = STATE(1351), + [sym_set] = STATE(1351), + [sym_tuple] = STATE(1351), + [sym_dictionary] = STATE(1351), + [sym_list_comprehension] = STATE(1351), + [sym_dictionary_comprehension] = STATE(1351), + [sym_set_comprehension] = STATE(1351), + [sym_concatenated_string] = STATE(1351), + [sym_python_string] = STATE(952), + [sym_await] = STATE(1351), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_RBRACK] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_as] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(609), + [anon_sym_print] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_exec] = ACTIONS(611), + [anon_sym_in] = ACTIONS(473), + [anon_sym_if] = ACTIONS(473), + [anon_sym_async] = ACTIONS(611), + [anon_sym_not] = ACTIONS(473), + [anon_sym_and] = ACTIONS(473), + [anon_sym_or] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_SLASH_SLASH] = ACTIONS(566), + [anon_sym_STAR_STAR] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_TILDE] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(566), + [anon_sym_is] = ACTIONS(473), + [sym_ellipsis] = ACTIONS(617), + [anon_sym_await] = ACTIONS(619), + [anon_sym_match] = ACTIONS(611), + [anon_sym_type] = ACTIONS(621), + [sym_integer] = ACTIONS(623), + [sym_float] = ACTIONS(623), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), + [sym_none] = ACTIONS(623), + [sym_python_identifier] = ACTIONS(623), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(486), + [sym_identifier] = ACTIONS(621), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(490), + [sym_string_start] = ACTIONS(625), }, [121] = { - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1283), - [sym_attribute] = STATE(1283), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_generator_expression] = STATE(1283), - [sym_parenthesized_expression] = STATE(1283), - [sym_list_splat_pattern] = STATE(1163), - [sym_primary_expression] = STATE(955), - [sym_list] = STATE(1283), - [sym_set] = STATE(1283), - [sym_tuple] = STATE(1283), - [sym_dictionary] = STATE(1283), - [sym_list_comprehension] = STATE(1283), - [sym_dictionary_comprehension] = STATE(1283), - [sym_set_comprehension] = STATE(1283), - [sym_concatenated_string] = STATE(1283), - [sym_python_string] = STATE(857), - [sym_await] = STATE(1283), - [anon_sym_LBRACK] = ACTIONS(601), - [anon_sym_RBRACK] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(603), - [anon_sym_LBRACE] = ACTIONS(605), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(301), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(607), - [anon_sym_print] = ACTIONS(609), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(609), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_async] = ACTIONS(609), - [anon_sym_for] = ACTIONS(303), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(613), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(611), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(615), - [anon_sym_await] = ACTIONS(617), - [anon_sym_match] = ACTIONS(609), - [anon_sym_type] = ACTIONS(619), - [sym_integer] = ACTIONS(621), - [sym_float] = ACTIONS(621), - [sym_true] = ACTIONS(621), - [sym_false] = ACTIONS(621), - [sym_none] = ACTIONS(621), - [sym_python_identifier] = ACTIONS(621), + [sym_binary_operator] = STATE(1351), + [sym_unary_operator] = STATE(1351), + [sym_attribute] = STATE(1351), + [sym_subscript] = STATE(1351), + [sym_call] = STATE(1351), + [sym_generator_expression] = STATE(1351), + [sym_parenthesized_expression] = STATE(1351), + [sym_list_splat_pattern] = STATE(1348), + [sym_primary_expression] = STATE(1132), + [sym_list] = STATE(1351), + [sym_set] = STATE(1351), + [sym_tuple] = STATE(1351), + [sym_dictionary] = STATE(1351), + [sym_list_comprehension] = STATE(1351), + [sym_dictionary_comprehension] = STATE(1351), + [sym_set_comprehension] = STATE(1351), + [sym_concatenated_string] = STATE(1351), + [sym_python_string] = STATE(952), + [sym_await] = STATE(1351), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_RBRACK] = ACTIONS(300), + [anon_sym_COLON] = ACTIONS(300), + [anon_sym_LPAREN] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(609), + [anon_sym_print] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(611), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_async] = ACTIONS(611), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(617), + [anon_sym_await] = ACTIONS(619), + [anon_sym_match] = ACTIONS(611), + [anon_sym_type] = ACTIONS(621), + [sym_integer] = ACTIONS(623), + [sym_float] = ACTIONS(623), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), + [sym_none] = ACTIONS(623), + [sym_python_identifier] = ACTIONS(623), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(619), + [sym_identifier] = ACTIONS(621), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(623), + [sym_string_start] = ACTIONS(625), }, [122] = { - [sym_binary_operator] = STATE(1026), - [sym_unary_operator] = STATE(1026), - [sym_attribute] = STATE(1026), - [sym_subscript] = STATE(1026), - [sym_call] = STATE(1026), - [sym_generator_expression] = STATE(1026), - [sym_parenthesized_expression] = STATE(1026), - [sym_list_splat_pattern] = STATE(1028), - [sym_primary_expression] = STATE(873), - [sym_list] = STATE(1026), - [sym_set] = STATE(1026), - [sym_tuple] = STATE(1026), - [sym_dictionary] = STATE(1026), - [sym_list_comprehension] = STATE(1026), - [sym_dictionary_comprehension] = STATE(1026), - [sym_set_comprehension] = STATE(1026), - [sym_concatenated_string] = STATE(1026), - [sym_python_string] = STATE(841), - [sym_await] = STATE(1026), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(492), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_RBRACE] = ACTIONS(524), - [anon_sym_DOT] = ACTIONS(471), - [anon_sym_COMMA] = ACTIONS(524), - [anon_sym_as] = ACTIONS(471), - [anon_sym_STAR] = ACTIONS(498), - [anon_sym_print] = ACTIONS(500), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_exec] = ACTIONS(500), - [anon_sym_in] = ACTIONS(471), - [anon_sym_if] = ACTIONS(471), - [anon_sym_async] = ACTIONS(500), - [anon_sym_not] = ACTIONS(471), - [anon_sym_and] = ACTIONS(471), - [anon_sym_or] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(502), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_AT] = ACTIONS(524), - [anon_sym_SLASH] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(524), - [anon_sym_SLASH_SLASH] = ACTIONS(524), - [anon_sym_STAR_STAR] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(471), - [anon_sym_LT_EQ] = ACTIONS(524), - [anon_sym_EQ_EQ] = ACTIONS(524), - [anon_sym_BANG_EQ] = ACTIONS(524), - [anon_sym_GT_EQ] = ACTIONS(524), - [anon_sym_GT] = ACTIONS(471), - [anon_sym_LT_GT] = ACTIONS(524), - [anon_sym_is] = ACTIONS(471), - [sym_ellipsis] = ACTIONS(506), - [anon_sym_await] = ACTIONS(508), - [anon_sym_match] = ACTIONS(500), - [anon_sym_type] = ACTIONS(510), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_true] = ACTIONS(512), - [sym_false] = ACTIONS(512), - [sym_none] = ACTIONS(512), - [sym_python_identifier] = ACTIONS(512), + [sym_binary_operator] = STATE(1235), + [sym_unary_operator] = STATE(1235), + [sym_attribute] = STATE(1235), + [sym_subscript] = STATE(1235), + [sym_call] = STATE(1235), + [sym_generator_expression] = STATE(1235), + [sym_parenthesized_expression] = STATE(1235), + [sym_list_splat_pattern] = STATE(1224), + [sym_primary_expression] = STATE(909), + [sym_list] = STATE(1235), + [sym_set] = STATE(1235), + [sym_tuple] = STATE(1235), + [sym_dictionary] = STATE(1235), + [sym_list_comprehension] = STATE(1235), + [sym_dictionary_comprehension] = STATE(1235), + [sym_set_comprehension] = STATE(1235), + [sym_concatenated_string] = STATE(1235), + [sym_python_string] = STATE(889), + [sym_await] = STATE(1235), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_LPAREN] = ACTIONS(520), + [anon_sym_RPAREN] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_as] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_print] = ACTIONS(526), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_exec] = ACTIONS(526), + [anon_sym_in] = ACTIONS(473), + [anon_sym_if] = ACTIONS(473), + [anon_sym_async] = ACTIONS(526), + [anon_sym_not] = ACTIONS(473), + [anon_sym_and] = ACTIONS(473), + [anon_sym_or] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(528), + [anon_sym_DASH] = ACTIONS(530), + [anon_sym_AT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_SLASH_SLASH] = ACTIONS(566), + [anon_sym_STAR_STAR] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_TILDE] = ACTIONS(528), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(566), + [anon_sym_is] = ACTIONS(473), + [sym_ellipsis] = ACTIONS(532), + [anon_sym_await] = ACTIONS(534), + [anon_sym_match] = ACTIONS(526), + [anon_sym_type] = ACTIONS(536), + [sym_integer] = ACTIONS(538), + [sym_float] = ACTIONS(538), + [sym_true] = ACTIONS(538), + [sym_false] = ACTIONS(538), + [sym_none] = ACTIONS(538), + [sym_python_identifier] = ACTIONS(538), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(510), + [sym_identifier] = ACTIONS(536), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(514), + [sym_string_start] = ACTIONS(540), }, [123] = { - [sym_binary_operator] = STATE(1266), - [sym_unary_operator] = STATE(1266), - [sym_attribute] = STATE(1266), - [sym_subscript] = STATE(1266), - [sym_call] = STATE(1266), - [sym_generator_expression] = STATE(1266), - [sym_parenthesized_expression] = STATE(1266), - [sym_list_splat_pattern] = STATE(1260), - [sym_primary_expression] = STATE(1475), - [sym_list] = STATE(1266), - [sym_set] = STATE(1266), - [sym_tuple] = STATE(1266), - [sym_dictionary] = STATE(1266), - [sym_list_comprehension] = STATE(1266), - [sym_dictionary_comprehension] = STATE(1266), - [sym_set_comprehension] = STATE(1266), - [sym_concatenated_string] = STATE(1266), - [sym_python_string] = STATE(868), - [sym_await] = STATE(1266), - [anon_sym_EQ] = ACTIONS(290), - [anon_sym_PLUS_EQ] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_COLON] = ACTIONS(290), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(290), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_print] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(303), - [anon_sym_exec] = ACTIONS(476), - [anon_sym_async] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(303), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(303), - [anon_sym_SLASH_SLASH] = ACTIONS(303), - [anon_sym_STAR_STAR] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(303), - [anon_sym_AMP] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(303), - [anon_sym_LT_LT] = ACTIONS(303), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_DASH_EQ] = ACTIONS(290), - [anon_sym_STAR_EQ] = ACTIONS(290), - [anon_sym_SLASH_EQ] = ACTIONS(290), - [anon_sym_AT_EQ] = ACTIONS(290), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(290), - [anon_sym_PERCENT_EQ] = ACTIONS(290), - [anon_sym_STAR_STAR_EQ] = ACTIONS(290), - [anon_sym_GT_GT_EQ] = ACTIONS(290), - [anon_sym_LT_LT_EQ] = ACTIONS(290), - [anon_sym_AMP_EQ] = ACTIONS(290), - [anon_sym_CARET_EQ] = ACTIONS(290), - [anon_sym_PIPE_EQ] = ACTIONS(290), - [sym_ellipsis] = ACTIONS(482), - [anon_sym_await] = ACTIONS(484), - [anon_sym_match] = ACTIONS(476), - [anon_sym_type] = ACTIONS(486), - [sym_integer] = ACTIONS(488), - [sym_float] = ACTIONS(488), - [sym_true] = ACTIONS(488), - [sym_false] = ACTIONS(488), - [sym_none] = ACTIONS(488), - [sym_python_identifier] = ACTIONS(488), + [sym_binary_operator] = STATE(1278), + [sym_unary_operator] = STATE(1278), + [sym_attribute] = STATE(1278), + [sym_subscript] = STATE(1278), + [sym_call] = STATE(1278), + [sym_generator_expression] = STATE(1278), + [sym_parenthesized_expression] = STATE(1278), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1372), + [sym_list] = STATE(1278), + [sym_set] = STATE(1278), + [sym_tuple] = STATE(1278), + [sym_dictionary] = STATE(1278), + [sym_list_comprehension] = STATE(1278), + [sym_dictionary_comprehension] = STATE(1278), + [sym_set_comprehension] = STATE(1278), + [sym_concatenated_string] = STATE(1278), + [sym_python_string] = STATE(853), + [sym_await] = STATE(1278), + [anon_sym_COLON_EQ] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(659), + [anon_sym_print] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(478), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_else] = ACTIONS(302), + [anon_sym_async] = ACTIONS(478), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(484), + [anon_sym_await] = ACTIONS(665), + [anon_sym_match] = ACTIONS(478), + [anon_sym_type] = ACTIONS(488), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(490), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_python_identifier] = ACTIONS(490), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(486), + [sym_identifier] = ACTIONS(488), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(490), + [sym_string_start] = ACTIONS(492), }, [124] = { - [sym_binary_operator] = STATE(1266), - [sym_unary_operator] = STATE(1266), - [sym_attribute] = STATE(1266), - [sym_subscript] = STATE(1266), - [sym_call] = STATE(1266), - [sym_generator_expression] = STATE(1266), - [sym_parenthesized_expression] = STATE(1266), - [sym_list_splat_pattern] = STATE(1260), - [sym_primary_expression] = STATE(1475), - [sym_list] = STATE(1266), - [sym_set] = STATE(1266), - [sym_tuple] = STATE(1266), - [sym_dictionary] = STATE(1266), - [sym_list_comprehension] = STATE(1266), - [sym_dictionary_comprehension] = STATE(1266), - [sym_set_comprehension] = STATE(1266), - [sym_concatenated_string] = STATE(1266), - [sym_python_string] = STATE(868), - [sym_await] = STATE(1266), - [anon_sym_EQ] = ACTIONS(463), - [anon_sym_PLUS_EQ] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_COLON] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_DOT] = ACTIONS(471), - [anon_sym_COMMA] = ACTIONS(463), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_print] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(471), - [anon_sym_exec] = ACTIONS(476), - [anon_sym_async] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(471), - [anon_sym_SLASH] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_SLASH_SLASH] = ACTIONS(471), - [anon_sym_STAR_STAR] = ACTIONS(471), - [anon_sym_PIPE] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_CARET] = ACTIONS(471), - [anon_sym_LT_LT] = ACTIONS(471), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_DASH_EQ] = ACTIONS(463), - [anon_sym_STAR_EQ] = ACTIONS(463), - [anon_sym_SLASH_EQ] = ACTIONS(463), - [anon_sym_AT_EQ] = ACTIONS(463), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(463), - [anon_sym_PERCENT_EQ] = ACTIONS(463), - [anon_sym_STAR_STAR_EQ] = ACTIONS(463), - [anon_sym_GT_GT_EQ] = ACTIONS(463), - [anon_sym_LT_LT_EQ] = ACTIONS(463), - [anon_sym_AMP_EQ] = ACTIONS(463), - [anon_sym_CARET_EQ] = ACTIONS(463), - [anon_sym_PIPE_EQ] = ACTIONS(463), - [sym_ellipsis] = ACTIONS(482), - [anon_sym_await] = ACTIONS(484), - [anon_sym_match] = ACTIONS(476), - [anon_sym_type] = ACTIONS(486), - [sym_integer] = ACTIONS(488), - [sym_float] = ACTIONS(488), - [sym_true] = ACTIONS(488), - [sym_false] = ACTIONS(488), - [sym_none] = ACTIONS(488), - [sym_python_identifier] = ACTIONS(488), + [sym_binary_operator] = STATE(1278), + [sym_unary_operator] = STATE(1278), + [sym_attribute] = STATE(1278), + [sym_subscript] = STATE(1278), + [sym_call] = STATE(1278), + [sym_generator_expression] = STATE(1278), + [sym_parenthesized_expression] = STATE(1278), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1452), + [sym_list] = STATE(1278), + [sym_set] = STATE(1278), + [sym_tuple] = STATE(1278), + [sym_dictionary] = STATE(1278), + [sym_list_comprehension] = STATE(1278), + [sym_dictionary_comprehension] = STATE(1278), + [sym_set_comprehension] = STATE(1278), + [sym_concatenated_string] = STATE(1278), + [sym_python_string] = STATE(853), + [sym_await] = STATE(1278), + [anon_sym_EQ] = ACTIONS(292), + [anon_sym_PLUS_EQ] = ACTIONS(292), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_COLON] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(292), + [anon_sym_STAR] = ACTIONS(476), + [anon_sym_print] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(302), + [anon_sym_exec] = ACTIONS(478), + [anon_sym_async] = ACTIONS(478), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(302), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(302), + [anon_sym_SLASH_SLASH] = ACTIONS(302), + [anon_sym_STAR_STAR] = ACTIONS(302), + [anon_sym_PIPE] = ACTIONS(302), + [anon_sym_AMP] = ACTIONS(302), + [anon_sym_CARET] = ACTIONS(302), + [anon_sym_LT_LT] = ACTIONS(302), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_DASH_EQ] = ACTIONS(292), + [anon_sym_STAR_EQ] = ACTIONS(292), + [anon_sym_SLASH_EQ] = ACTIONS(292), + [anon_sym_AT_EQ] = ACTIONS(292), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(292), + [anon_sym_PERCENT_EQ] = ACTIONS(292), + [anon_sym_STAR_STAR_EQ] = ACTIONS(292), + [anon_sym_GT_GT_EQ] = ACTIONS(292), + [anon_sym_LT_LT_EQ] = ACTIONS(292), + [anon_sym_AMP_EQ] = ACTIONS(292), + [anon_sym_CARET_EQ] = ACTIONS(292), + [anon_sym_PIPE_EQ] = ACTIONS(292), + [sym_ellipsis] = ACTIONS(484), + [anon_sym_await] = ACTIONS(486), + [anon_sym_match] = ACTIONS(478), + [anon_sym_type] = ACTIONS(488), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(490), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_python_identifier] = ACTIONS(490), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(486), + [sym_identifier] = ACTIONS(488), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(490), + [sym_string_start] = ACTIONS(492), }, [125] = { - [sym_binary_operator] = STATE(1266), - [sym_unary_operator] = STATE(1266), - [sym_attribute] = STATE(1266), - [sym_subscript] = STATE(1266), - [sym_call] = STATE(1266), - [sym_generator_expression] = STATE(1266), - [sym_parenthesized_expression] = STATE(1266), - [sym_list_splat_pattern] = STATE(1260), - [sym_primary_expression] = STATE(1341), - [sym_list] = STATE(1266), - [sym_set] = STATE(1266), - [sym_tuple] = STATE(1266), - [sym_dictionary] = STATE(1266), - [sym_list_comprehension] = STATE(1266), - [sym_dictionary_comprehension] = STATE(1266), - [sym_set_comprehension] = STATE(1266), - [sym_concatenated_string] = STATE(1266), - [sym_python_string] = STATE(868), - [sym_await] = STATE(1266), - [anon_sym_COLON_EQ] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(657), - [anon_sym_print] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(476), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_else] = ACTIONS(303), - [anon_sym_async] = ACTIONS(476), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(659), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(482), - [anon_sym_await] = ACTIONS(663), - [anon_sym_match] = ACTIONS(476), - [anon_sym_type] = ACTIONS(486), - [sym_integer] = ACTIONS(488), - [sym_float] = ACTIONS(488), - [sym_true] = ACTIONS(488), - [sym_false] = ACTIONS(488), - [sym_none] = ACTIONS(488), - [sym_python_identifier] = ACTIONS(488), + [sym_binary_operator] = STATE(1278), + [sym_unary_operator] = STATE(1278), + [sym_attribute] = STATE(1278), + [sym_subscript] = STATE(1278), + [sym_call] = STATE(1278), + [sym_generator_expression] = STATE(1278), + [sym_parenthesized_expression] = STATE(1278), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1452), + [sym_list] = STATE(1278), + [sym_set] = STATE(1278), + [sym_tuple] = STATE(1278), + [sym_dictionary] = STATE(1278), + [sym_list_comprehension] = STATE(1278), + [sym_dictionary_comprehension] = STATE(1278), + [sym_set_comprehension] = STATE(1278), + [sym_concatenated_string] = STATE(1278), + [sym_python_string] = STATE(853), + [sym_await] = STATE(1278), + [anon_sym_EQ] = ACTIONS(465), + [anon_sym_PLUS_EQ] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_COLON] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(476), + [anon_sym_print] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_exec] = ACTIONS(478), + [anon_sym_async] = ACTIONS(478), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(473), + [anon_sym_SLASH_SLASH] = ACTIONS(473), + [anon_sym_STAR_STAR] = ACTIONS(473), + [anon_sym_PIPE] = ACTIONS(473), + [anon_sym_AMP] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_DASH_EQ] = ACTIONS(465), + [anon_sym_STAR_EQ] = ACTIONS(465), + [anon_sym_SLASH_EQ] = ACTIONS(465), + [anon_sym_AT_EQ] = ACTIONS(465), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(465), + [anon_sym_PERCENT_EQ] = ACTIONS(465), + [anon_sym_STAR_STAR_EQ] = ACTIONS(465), + [anon_sym_GT_GT_EQ] = ACTIONS(465), + [anon_sym_LT_LT_EQ] = ACTIONS(465), + [anon_sym_AMP_EQ] = ACTIONS(465), + [anon_sym_CARET_EQ] = ACTIONS(465), + [anon_sym_PIPE_EQ] = ACTIONS(465), + [sym_ellipsis] = ACTIONS(484), + [anon_sym_await] = ACTIONS(486), + [anon_sym_match] = ACTIONS(478), + [anon_sym_type] = ACTIONS(488), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(490), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_python_identifier] = ACTIONS(490), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(486), + [sym_identifier] = ACTIONS(488), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(490), + [sym_string_start] = ACTIONS(492), }, [126] = { - [sym_binary_operator] = STATE(1266), - [sym_unary_operator] = STATE(1266), - [sym_attribute] = STATE(1266), - [sym_subscript] = STATE(1266), - [sym_call] = STATE(1266), - [sym_generator_expression] = STATE(1266), - [sym_parenthesized_expression] = STATE(1266), - [sym_list_splat_pattern] = STATE(1260), - [sym_primary_expression] = STATE(1341), - [sym_list] = STATE(1266), - [sym_set] = STATE(1266), - [sym_tuple] = STATE(1266), - [sym_dictionary] = STATE(1266), - [sym_list_comprehension] = STATE(1266), - [sym_dictionary_comprehension] = STATE(1266), - [sym_set_comprehension] = STATE(1266), - [sym_concatenated_string] = STATE(1266), - [sym_python_string] = STATE(868), - [sym_await] = STATE(1266), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_as] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(657), - [anon_sym_print] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(301), - [anon_sym_exec] = ACTIONS(476), - [anon_sym_in] = ACTIONS(303), - [anon_sym_if] = ACTIONS(303), - [anon_sym_else] = ACTIONS(303), - [anon_sym_async] = ACTIONS(476), - [anon_sym_not] = ACTIONS(303), - [anon_sym_and] = ACTIONS(303), - [anon_sym_or] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(301), - [anon_sym_SLASH_SLASH] = ACTIONS(301), - [anon_sym_STAR_STAR] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_AMP] = ACTIONS(301), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_LT_LT] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(659), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LT_EQ] = ACTIONS(301), - [anon_sym_EQ_EQ] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_LT_GT] = ACTIONS(301), - [anon_sym_is] = ACTIONS(303), - [sym_ellipsis] = ACTIONS(482), - [anon_sym_await] = ACTIONS(663), - [anon_sym_match] = ACTIONS(476), - [anon_sym_type] = ACTIONS(486), - [sym_integer] = ACTIONS(488), - [sym_float] = ACTIONS(488), - [sym_true] = ACTIONS(488), - [sym_false] = ACTIONS(488), - [sym_none] = ACTIONS(488), - [sym_python_identifier] = ACTIONS(488), + [sym_binary_operator] = STATE(1278), + [sym_unary_operator] = STATE(1278), + [sym_attribute] = STATE(1278), + [sym_subscript] = STATE(1278), + [sym_call] = STATE(1278), + [sym_generator_expression] = STATE(1278), + [sym_parenthesized_expression] = STATE(1278), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1452), + [sym_list] = STATE(1278), + [sym_set] = STATE(1278), + [sym_tuple] = STATE(1278), + [sym_dictionary] = STATE(1278), + [sym_list_comprehension] = STATE(1278), + [sym_dictionary_comprehension] = STATE(1278), + [sym_set_comprehension] = STATE(1278), + [sym_concatenated_string] = STATE(1278), + [sym_python_string] = STATE(853), + [sym_await] = STATE(1278), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_as] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(476), + [anon_sym_print] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_exec] = ACTIONS(478), + [anon_sym_in] = ACTIONS(463), + [anon_sym_if] = ACTIONS(463), + [anon_sym_else] = ACTIONS(463), + [anon_sym_async] = ACTIONS(478), + [anon_sym_not] = ACTIONS(463), + [anon_sym_and] = ACTIONS(463), + [anon_sym_or] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_SLASH_SLASH] = ACTIONS(566), + [anon_sym_STAR_STAR] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_LT_EQ] = ACTIONS(465), + [anon_sym_EQ_EQ] = ACTIONS(465), + [anon_sym_BANG_EQ] = ACTIONS(465), + [anon_sym_GT_EQ] = ACTIONS(465), + [anon_sym_GT] = ACTIONS(463), + [anon_sym_LT_GT] = ACTIONS(465), + [anon_sym_is] = ACTIONS(463), + [sym_ellipsis] = ACTIONS(484), + [anon_sym_await] = ACTIONS(486), + [anon_sym_match] = ACTIONS(478), + [anon_sym_type] = ACTIONS(488), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(490), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_python_identifier] = ACTIONS(490), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(486), + [sym_identifier] = ACTIONS(488), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(490), + [sym_string_start] = ACTIONS(492), }, [127] = { - [sym_binary_operator] = STATE(1266), - [sym_unary_operator] = STATE(1266), - [sym_attribute] = STATE(1266), - [sym_subscript] = STATE(1266), - [sym_call] = STATE(1266), - [sym_generator_expression] = STATE(1266), - [sym_parenthesized_expression] = STATE(1266), - [sym_list_splat_pattern] = STATE(1260), - [sym_primary_expression] = STATE(1475), - [sym_list] = STATE(1266), - [sym_set] = STATE(1266), - [sym_tuple] = STATE(1266), - [sym_dictionary] = STATE(1266), - [sym_list_comprehension] = STATE(1266), - [sym_dictionary_comprehension] = STATE(1266), - [sym_set_comprehension] = STATE(1266), - [sym_concatenated_string] = STATE(1266), - [sym_python_string] = STATE(868), - [sym_await] = STATE(1266), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_DOT] = ACTIONS(471), - [anon_sym_as] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_print] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_exec] = ACTIONS(476), - [anon_sym_in] = ACTIONS(461), - [anon_sym_if] = ACTIONS(461), - [anon_sym_else] = ACTIONS(461), - [anon_sym_async] = ACTIONS(476), - [anon_sym_not] = ACTIONS(461), - [anon_sym_and] = ACTIONS(461), - [anon_sym_or] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(524), - [anon_sym_SLASH] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(524), - [anon_sym_SLASH_SLASH] = ACTIONS(524), - [anon_sym_STAR_STAR] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_LT_EQ] = ACTIONS(463), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_LT_GT] = ACTIONS(463), - [anon_sym_is] = ACTIONS(461), - [sym_ellipsis] = ACTIONS(482), - [anon_sym_await] = ACTIONS(484), - [anon_sym_match] = ACTIONS(476), - [anon_sym_type] = ACTIONS(486), - [sym_integer] = ACTIONS(488), - [sym_float] = ACTIONS(488), - [sym_true] = ACTIONS(488), - [sym_false] = ACTIONS(488), - [sym_none] = ACTIONS(488), - [sym_python_identifier] = ACTIONS(488), + [sym_binary_operator] = STATE(1278), + [sym_unary_operator] = STATE(1278), + [sym_attribute] = STATE(1278), + [sym_subscript] = STATE(1278), + [sym_call] = STATE(1278), + [sym_generator_expression] = STATE(1278), + [sym_parenthesized_expression] = STATE(1278), + [sym_list_splat_pattern] = STATE(1269), + [sym_primary_expression] = STATE(1372), + [sym_list] = STATE(1278), + [sym_set] = STATE(1278), + [sym_tuple] = STATE(1278), + [sym_dictionary] = STATE(1278), + [sym_list_comprehension] = STATE(1278), + [sym_dictionary_comprehension] = STATE(1278), + [sym_set_comprehension] = STATE(1278), + [sym_concatenated_string] = STATE(1278), + [sym_python_string] = STATE(853), + [sym_await] = STATE(1278), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_DOT] = ACTIONS(302), + [anon_sym_as] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(659), + [anon_sym_print] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(300), + [anon_sym_exec] = ACTIONS(478), + [anon_sym_in] = ACTIONS(302), + [anon_sym_if] = ACTIONS(302), + [anon_sym_else] = ACTIONS(302), + [anon_sym_async] = ACTIONS(478), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(302), + [anon_sym_or] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(302), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_SLASH_SLASH] = ACTIONS(300), + [anon_sym_STAR_STAR] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(300), + [anon_sym_CARET] = ACTIONS(300), + [anon_sym_LT_LT] = ACTIONS(300), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT_GT] = ACTIONS(300), + [anon_sym_is] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(484), + [anon_sym_await] = ACTIONS(665), + [anon_sym_match] = ACTIONS(478), + [anon_sym_type] = ACTIONS(488), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(490), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_python_identifier] = ACTIONS(490), [sym_line_continuation] = ACTIONS(3), - [sym_identifier] = ACTIONS(486), + [sym_identifier] = ACTIONS(488), [sym_comment] = ACTIONS(3), - [sym_string_start] = ACTIONS(490), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 33, - ACTIONS(557), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_DASH, - ACTIONS(567), 1, - sym_ellipsis, - ACTIONS(571), 1, - sym_identifier, - ACTIONS(575), 1, - sym_string_start, - ACTIONS(665), 1, - anon_sym_LBRACK, - ACTIONS(667), 1, - anon_sym_LPAREN, - ACTIONS(669), 1, - anon_sym_RPAREN, - ACTIONS(671), 1, - anon_sym_STAR, - ACTIONS(675), 1, - anon_sym_not, - ACTIONS(677), 1, - anon_sym_lambda, - ACTIONS(679), 1, - anon_sym_yield, - ACTIONS(681), 1, - anon_sym_await, - ACTIONS(683), 1, - anon_sym_type, - ACTIONS(685), 1, - sym_python_identifier, - STATE(851), 1, - sym_python_string, - STATE(874), 1, - sym_primary_expression, - STATE(1217), 1, - sym_list_splat_pattern, - STATE(1552), 1, - sym_expression, - STATE(2169), 1, - sym_pattern, - STATE(2201), 1, - sym_yield, - STATE(2388), 1, - sym__patterns, - STATE(2400), 1, - sym__collection_elements, - STATE(2497), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(563), 2, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1221), 2, - sym_attribute, - sym_subscript, - STATE(2133), 2, - sym_parenthesized_list_splat, - sym_list_splat, - STATE(2261), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(673), 4, - anon_sym_print, - anon_sym_exec, - anon_sym_async, - anon_sym_match, - ACTIONS(573), 5, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - STATE(1736), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_as_pattern, - sym_conditional_expression, - STATE(1223), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_generator_expression, - sym_parenthesized_expression, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_concatenated_string, - sym_await, - [131] = 32, - ACTIONS(605), 1, + [sym_string_start] = ACTIONS(492), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 32, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(687), 1, + ACTIONS(667), 1, anon_sym_LBRACK, - ACTIONS(689), 1, + ACTIONS(669), 1, anon_sym_RBRACK, - ACTIONS(691), 1, + ACTIONS(671), 1, anon_sym_LPAREN, - ACTIONS(693), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(697), 1, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(679), 1, anon_sym_lambda, - ACTIONS(701), 1, + ACTIONS(681), 1, anon_sym_yield, - ACTIONS(703), 1, + ACTIONS(683), 1, anon_sym_await, - ACTIONS(705), 1, + ACTIONS(685), 1, anon_sym_type, - ACTIONS(707), 1, + ACTIONS(687), 1, sym_python_identifier, - STATE(857), 1, + STATE(859), 1, sym_python_string, - STATE(858), 1, + STATE(860), 1, sym_primary_expression, - STATE(1271), 1, + STATE(1273), 1, sym_list_splat_pattern, - STATE(1571), 1, + STATE(1566), 1, sym_expression, - STATE(2156), 1, + STATE(2128), 1, sym_pattern, - STATE(2418), 1, - sym__collection_elements, - STATE(2536), 1, + STATE(2387), 1, sym__patterns, - STATE(2557), 1, + STATE(2404), 1, + sym__collection_elements, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1269), 2, + STATE(1271), 2, sym_attribute, sym_subscript, - STATE(2284), 2, + STATE(2294), 2, sym_tuple_pattern, sym_list_pattern, - STATE(2077), 3, + STATE(2131), 3, sym_parenthesized_list_splat, sym_yield, sym_list_splat, - ACTIONS(695), 4, + ACTIONS(675), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -34995,7 +35619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 14, + STATE(1301), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -35010,79 +35634,79 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [260] = 30, - ACTIONS(39), 1, - anon_sym_LBRACK, + [129] = 30, ACTIONS(41), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(43), 1, + anon_sym_LPAREN, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(51), 1, + ACTIONS(53), 1, anon_sym_STAR, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_not, - ACTIONS(91), 1, - anon_sym_DASH, ACTIONS(93), 1, - anon_sym_lambda, + anon_sym_DASH, ACTIONS(95), 1, - anon_sym_yield, + anon_sym_lambda, ACTIONS(97), 1, - sym_ellipsis, + anon_sym_yield, ACTIONS(99), 1, + sym_ellipsis, + ACTIONS(101), 1, anon_sym_await, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_type, - ACTIONS(107), 1, - sym_python_identifier, ACTIONS(109), 1, + sym_python_identifier, + ACTIONS(111), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(115), 1, sym_string_start, - STATE(566), 1, + STATE(565), 1, sym_list_splat_pattern, - STATE(834), 1, + STATE(833), 1, sym_python_string, - STATE(846), 1, + STATE(895), 1, sym_primary_expression, - STATE(1494), 1, + STATE(1490), 1, sym_pattern, - STATE(1498), 1, + STATE(1494), 1, sym_pattern_list, - STATE(1701), 1, + STATE(1732), 1, sym_expression, - STATE(2396), 1, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(550), 2, + STATE(568), 2, sym_attribute, sym_subscript, - STATE(1491), 2, + STATE(1493), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(101), 4, + ACTIONS(103), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(2329), 5, + STATE(2328), 5, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, sym_expression_list, - STATE(1529), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -35090,7 +35714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 14, + STATE(964), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -35105,82 +35729,81 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [385] = 33, - ACTIONS(557), 1, + [254] = 32, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(665), 1, - anon_sym_LBRACK, ACTIONS(667), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(671), 1, + anon_sym_LPAREN, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(675), 1, - anon_sym_not, ACTIONS(677), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(679), 1, - anon_sym_yield, + anon_sym_lambda, ACTIONS(681), 1, - anon_sym_await, + anon_sym_yield, ACTIONS(683), 1, - anon_sym_type, + anon_sym_await, ACTIONS(685), 1, + anon_sym_type, + ACTIONS(687), 1, sym_python_identifier, - ACTIONS(709), 1, - anon_sym_RPAREN, - STATE(851), 1, + ACTIONS(689), 1, + anon_sym_RBRACK, + STATE(859), 1, sym_python_string, - STATE(874), 1, + STATE(860), 1, sym_primary_expression, - STATE(1217), 1, + STATE(1273), 1, sym_list_splat_pattern, - STATE(1557), 1, + STATE(1539), 1, sym_expression, - STATE(2169), 1, + STATE(2128), 1, sym_pattern, - STATE(2221), 1, - sym_yield, - STATE(2388), 1, - sym__patterns, - STATE(2415), 1, + STATE(2424), 1, sym__collection_elements, - STATE(2497), 1, + STATE(2482), 1, sym__named_expression_lhs, + STATE(2501), 1, + sym__patterns, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1221), 2, + STATE(1271), 2, sym_attribute, sym_subscript, - STATE(2133), 2, - sym_parenthesized_list_splat, - sym_list_splat, - STATE(2261), 2, + STATE(2294), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(673), 4, + STATE(2131), 3, + sym_parenthesized_list_splat, + sym_yield, + sym_list_splat, + ACTIONS(675), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -35188,7 +35811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 14, + STATE(1301), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -35203,79 +35826,79 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [516] = 32, - ACTIONS(527), 1, + [383] = 32, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(531), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(560), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(711), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(713), 1, + ACTIONS(693), 1, anon_sym_RBRACE, - ACTIONS(715), 1, + ACTIONS(695), 1, anon_sym_COMMA, - ACTIONS(717), 1, + ACTIONS(697), 1, anon_sym_STAR, - ACTIONS(721), 1, + ACTIONS(701), 1, anon_sym_not, - ACTIONS(723), 1, + ACTIONS(703), 1, anon_sym_STAR_STAR, - ACTIONS(725), 1, + ACTIONS(705), 1, anon_sym_lambda, - ACTIONS(727), 1, + ACTIONS(707), 1, anon_sym_yield, - ACTIONS(729), 1, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(711), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(713), 1, sym_python_identifier, - STATE(838), 1, - sym_python_string, STATE(839), 1, sym_primary_expression, - STATE(1136), 1, + STATE(840), 1, + sym_python_string, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1532), 1, + STATE(1528), 1, sym_expression, - STATE(1746), 1, + STATE(1764), 1, sym_pair, - STATE(2010), 1, + STATE(2121), 1, sym_dictionary_splat, - STATE(2350), 1, - sym__collection_elements, - STATE(2454), 1, + STATE(2469), 1, sym__named_expression_lhs, + STATE(2500), 1, + sym__collection_elements, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2101), 3, + STATE(2094), 3, sym_parenthesized_list_splat, sym_yield, sym_list_splat, - ACTIONS(719), 4, + ACTIONS(699), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 5, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -35283,7 +35906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35300,79 +35923,174 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [645] = 32, - ACTIONS(527), 1, + [512] = 30, + ACTIONS(41), 1, anon_sym_LBRACK, - ACTIONS(531), 1, + ACTIONS(43), 1, + anon_sym_LPAREN, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(53), 1, + anon_sym_STAR, + ACTIONS(89), 1, + anon_sym_not, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(95), 1, + anon_sym_lambda, + ACTIONS(97), 1, + anon_sym_yield, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(101), 1, + anon_sym_await, + ACTIONS(105), 1, + anon_sym_type, + ACTIONS(109), 1, + sym_python_identifier, + ACTIONS(111), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(711), 1, + STATE(565), 1, + sym_list_splat_pattern, + STATE(833), 1, + sym_python_string, + STATE(895), 1, + sym_primary_expression, + STATE(1490), 1, + sym_pattern, + STATE(1494), 1, + sym_pattern_list, + STATE(1732), 1, + sym_expression, + STATE(2402), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(91), 2, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(568), 2, + sym_attribute, + sym_subscript, + STATE(1493), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(103), 4, + anon_sym_print, + anon_sym_exec, + anon_sym_async, + anon_sym_match, + ACTIONS(107), 5, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + STATE(2327), 5, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + sym_expression_list, + STATE(1526), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_as_pattern, + sym_conditional_expression, + STATE(964), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_generator_expression, + sym_parenthesized_expression, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_concatenated_string, + sym_await, + [637] = 32, + ACTIONS(542), 1, + anon_sym_LBRACK, + ACTIONS(546), 1, + anon_sym_LBRACE, + ACTIONS(554), 1, + anon_sym_DASH, + ACTIONS(556), 1, + sym_ellipsis, + ACTIONS(560), 1, + sym_identifier, + ACTIONS(564), 1, + sym_string_start, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(717), 1, + ACTIONS(697), 1, anon_sym_STAR, - ACTIONS(721), 1, + ACTIONS(701), 1, anon_sym_not, - ACTIONS(723), 1, + ACTIONS(703), 1, anon_sym_STAR_STAR, - ACTIONS(725), 1, + ACTIONS(705), 1, anon_sym_lambda, - ACTIONS(727), 1, + ACTIONS(707), 1, anon_sym_yield, - ACTIONS(729), 1, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(711), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(713), 1, sym_python_identifier, - ACTIONS(735), 1, + ACTIONS(715), 1, anon_sym_RBRACE, - ACTIONS(737), 1, + ACTIONS(717), 1, anon_sym_COMMA, - STATE(838), 1, - sym_python_string, STATE(839), 1, sym_primary_expression, - STATE(1136), 1, + STATE(840), 1, + sym_python_string, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1537), 1, + STATE(1534), 1, sym_expression, - STATE(1765), 1, + STATE(1754), 1, sym_pair, - STATE(2057), 1, + STATE(2022), 1, sym_dictionary_splat, - STATE(2454), 1, - sym__named_expression_lhs, - STATE(2551), 1, + STATE(2354), 1, sym__collection_elements, + STATE(2469), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2101), 3, + STATE(2094), 3, sym_parenthesized_list_splat, sym_yield, sym_list_splat, - ACTIONS(719), 4, + ACTIONS(699), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 5, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -35380,7 +36098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35397,82 +36115,82 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [774] = 33, - ACTIONS(557), 1, + [766] = 33, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(665), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(667), 1, + ACTIONS(721), 1, anon_sym_LPAREN, - ACTIONS(671), 1, + ACTIONS(723), 1, + anon_sym_RPAREN, + ACTIONS(725), 1, anon_sym_STAR, - ACTIONS(675), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(679), 1, + ACTIONS(733), 1, anon_sym_yield, - ACTIONS(681), 1, + ACTIONS(735), 1, anon_sym_await, - ACTIONS(683), 1, + ACTIONS(737), 1, anon_sym_type, - ACTIONS(685), 1, - sym_python_identifier, ACTIONS(739), 1, - anon_sym_RPAREN, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + sym_python_identifier, + STATE(893), 1, sym_primary_expression, - STATE(1217), 1, + STATE(894), 1, + sym_python_string, + STATE(1242), 1, sym_list_splat_pattern, - STATE(1552), 1, + STATE(1548), 1, sym_expression, - STATE(2169), 1, + STATE(2118), 1, sym_pattern, - STATE(2201), 1, + STATE(2226), 1, sym_yield, - STATE(2388), 1, - sym__patterns, - STATE(2400), 1, + STATE(2421), 1, sym__collection_elements, - STATE(2497), 1, + STATE(2543), 1, sym__named_expression_lhs, + STATE(2555), 1, + sym__patterns, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1221), 2, + STATE(1243), 2, sym_attribute, sym_subscript, - STATE(2133), 2, + STATE(2212), 2, sym_parenthesized_list_splat, sym_list_splat, - STATE(2261), 2, + STATE(2260), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(673), 4, + ACTIONS(727), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -35480,7 +36198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 14, + STATE(1316), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -35495,81 +36213,79 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [905] = 32, - ACTIONS(605), 1, - anon_sym_LBRACE, - ACTIONS(613), 1, - anon_sym_DASH, - ACTIONS(615), 1, - sym_ellipsis, - ACTIONS(619), 1, - sym_identifier, - ACTIONS(623), 1, - sym_string_start, - ACTIONS(687), 1, + [897] = 30, + ACTIONS(41), 1, anon_sym_LBRACK, - ACTIONS(691), 1, + ACTIONS(43), 1, anon_sym_LPAREN, - ACTIONS(693), 1, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, anon_sym_STAR, - ACTIONS(697), 1, + ACTIONS(89), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(93), 1, + anon_sym_DASH, + ACTIONS(95), 1, anon_sym_lambda, - ACTIONS(701), 1, + ACTIONS(97), 1, anon_sym_yield, - ACTIONS(703), 1, + ACTIONS(99), 1, + sym_ellipsis, + ACTIONS(101), 1, anon_sym_await, - ACTIONS(705), 1, + ACTIONS(105), 1, anon_sym_type, - ACTIONS(707), 1, + ACTIONS(109), 1, sym_python_identifier, - ACTIONS(741), 1, - anon_sym_RBRACK, - STATE(857), 1, + ACTIONS(111), 1, + sym_identifier, + ACTIONS(115), 1, + sym_string_start, + STATE(565), 1, + sym_list_splat_pattern, + STATE(833), 1, sym_python_string, - STATE(858), 1, + STATE(895), 1, sym_primary_expression, - STATE(1271), 1, - sym_list_splat_pattern, - STATE(1571), 1, - sym_expression, - STATE(2156), 1, + STATE(1490), 1, sym_pattern, - STATE(2382), 1, - sym__patterns, - STATE(2418), 1, - sym__collection_elements, - STATE(2557), 1, + STATE(1494), 1, + sym_pattern_list, + STATE(1732), 1, + sym_expression, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1269), 2, + STATE(568), 2, sym_attribute, sym_subscript, - STATE(2284), 2, + STATE(1493), 2, sym_tuple_pattern, sym_list_pattern, - STATE(2077), 3, - sym_parenthesized_list_splat, - sym_yield, - sym_list_splat, - ACTIONS(695), 4, + ACTIONS(103), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, + STATE(2259), 5, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + sym_expression_list, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -35577,7 +36293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 14, + STATE(964), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -35592,82 +36308,83 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [1034] = 33, - ACTIONS(557), 1, + [1022] = 34, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(665), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(667), 1, + ACTIONS(721), 1, anon_sym_LPAREN, - ACTIONS(671), 1, + ACTIONS(725), 1, anon_sym_STAR, - ACTIONS(675), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(679), 1, + ACTIONS(733), 1, anon_sym_yield, - ACTIONS(681), 1, + ACTIONS(735), 1, anon_sym_await, - ACTIONS(683), 1, + ACTIONS(737), 1, anon_sym_type, - ACTIONS(685), 1, + ACTIONS(739), 1, sym_python_identifier, - ACTIONS(743), 1, + ACTIONS(741), 1, anon_sym_RPAREN, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(893), 1, sym_primary_expression, - STATE(1217), 1, + STATE(894), 1, + sym_python_string, + STATE(1242), 1, sym_list_splat_pattern, - STATE(1557), 1, + STATE(1567), 1, sym_expression, - STATE(2169), 1, - sym_pattern, - STATE(2221), 1, + STATE(2079), 1, + sym_list_splat, + STATE(2082), 1, sym_yield, - STATE(2415), 1, + STATE(2084), 1, + sym_parenthesized_list_splat, + STATE(2118), 1, + sym_pattern, + STATE(2535), 1, sym__collection_elements, - STATE(2432), 1, - sym__patterns, - STATE(2497), 1, + STATE(2543), 1, sym__named_expression_lhs, + STATE(2555), 1, + sym__patterns, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1221), 2, + STATE(1243), 2, sym_attribute, sym_subscript, - STATE(2133), 2, - sym_parenthesized_list_splat, - sym_list_splat, - STATE(2261), 2, + STATE(2260), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(673), 4, + ACTIONS(727), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -35675,7 +36392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 14, + STATE(1316), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -35690,81 +36407,79 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [1165] = 32, - ACTIONS(605), 1, + [1155] = 32, + ACTIONS(542), 1, + anon_sym_LBRACK, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(560), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(687), 1, - anon_sym_LBRACK, ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(693), 1, - anon_sym_STAR, ACTIONS(697), 1, + anon_sym_STAR, + ACTIONS(701), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(703), 1, + anon_sym_STAR_STAR, + ACTIONS(705), 1, anon_sym_lambda, - ACTIONS(701), 1, + ACTIONS(707), 1, anon_sym_yield, - ACTIONS(703), 1, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(705), 1, + ACTIONS(711), 1, anon_sym_type, - ACTIONS(707), 1, + ACTIONS(713), 1, sym_python_identifier, + ACTIONS(743), 1, + anon_sym_RBRACE, ACTIONS(745), 1, - anon_sym_RBRACK, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + anon_sym_COMMA, + STATE(839), 1, sym_primary_expression, - STATE(1271), 1, + STATE(840), 1, + sym_python_string, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1571), 1, + STATE(1536), 1, sym_expression, - STATE(2156), 1, - sym_pattern, - STATE(2418), 1, - sym__collection_elements, - STATE(2466), 1, - sym__patterns, - STATE(2557), 1, + STATE(1763), 1, + sym_pair, + STATE(2135), 1, + sym_dictionary_splat, + STATE(2469), 1, sym__named_expression_lhs, + STATE(2488), 1, + sym__collection_elements, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1269), 2, - sym_attribute, - sym_subscript, - STATE(2284), 2, - sym_tuple_pattern, - sym_list_pattern, - STATE(2077), 3, + STATE(2094), 3, sym_parenthesized_list_splat, sym_yield, sym_list_splat, - ACTIONS(695), 4, + ACTIONS(699), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -35772,9 +36487,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 14, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -35787,79 +36504,82 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [1294] = 30, - ACTIONS(39), 1, + [1284] = 33, + ACTIONS(575), 1, + anon_sym_LBRACE, + ACTIONS(583), 1, + anon_sym_DASH, + ACTIONS(585), 1, + sym_ellipsis, + ACTIONS(589), 1, + sym_identifier, + ACTIONS(593), 1, + sym_string_start, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(721), 1, anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, + ACTIONS(725), 1, anon_sym_STAR, - ACTIONS(87), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(91), 1, - anon_sym_DASH, - ACTIONS(93), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(95), 1, + ACTIONS(733), 1, anon_sym_yield, - ACTIONS(97), 1, - sym_ellipsis, - ACTIONS(99), 1, + ACTIONS(735), 1, anon_sym_await, - ACTIONS(103), 1, + ACTIONS(737), 1, anon_sym_type, - ACTIONS(107), 1, + ACTIONS(739), 1, sym_python_identifier, - ACTIONS(109), 1, - sym_identifier, - ACTIONS(113), 1, - sym_string_start, - STATE(566), 1, - sym_list_splat_pattern, - STATE(834), 1, - sym_python_string, - STATE(846), 1, + ACTIONS(747), 1, + anon_sym_RPAREN, + STATE(893), 1, sym_primary_expression, - STATE(1494), 1, - sym_pattern, - STATE(1498), 1, - sym_pattern_list, - STATE(1701), 1, + STATE(894), 1, + sym_python_string, + STATE(1242), 1, + sym_list_splat_pattern, + STATE(1548), 1, sym_expression, - STATE(2396), 1, + STATE(2118), 1, + sym_pattern, + STATE(2226), 1, + sym_yield, + STATE(2391), 1, + sym__patterns, + STATE(2421), 1, + sym__collection_elements, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(550), 2, + STATE(1243), 2, sym_attribute, sym_subscript, - STATE(1491), 2, + STATE(2212), 2, + sym_parenthesized_list_splat, + sym_list_splat, + STATE(2260), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(101), 4, + ACTIONS(727), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(2272), 5, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - sym_expression_list, - STATE(1529), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -35867,7 +36587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 14, + STATE(1316), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -35882,82 +36602,81 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [1419] = 33, - ACTIONS(557), 1, + [1415] = 32, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(665), 1, - anon_sym_LBRACK, ACTIONS(667), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(671), 1, + anon_sym_LPAREN, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(675), 1, - anon_sym_not, ACTIONS(677), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(679), 1, - anon_sym_yield, + anon_sym_lambda, ACTIONS(681), 1, - anon_sym_await, + anon_sym_yield, ACTIONS(683), 1, - anon_sym_type, + anon_sym_await, ACTIONS(685), 1, + anon_sym_type, + ACTIONS(687), 1, sym_python_identifier, - ACTIONS(747), 1, - anon_sym_RPAREN, - STATE(851), 1, + ACTIONS(749), 1, + anon_sym_RBRACK, + STATE(859), 1, sym_python_string, - STATE(874), 1, + STATE(860), 1, sym_primary_expression, - STATE(1217), 1, + STATE(1273), 1, sym_list_splat_pattern, - STATE(1557), 1, + STATE(1539), 1, sym_expression, - STATE(2169), 1, + STATE(2128), 1, sym_pattern, - STATE(2221), 1, - sym_yield, - STATE(2415), 1, + STATE(2424), 1, sym__collection_elements, - STATE(2475), 1, + STATE(2437), 1, sym__patterns, - STATE(2497), 1, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1221), 2, + STATE(1271), 2, sym_attribute, sym_subscript, - STATE(2133), 2, - sym_parenthesized_list_splat, - sym_list_splat, - STATE(2261), 2, + STATE(2294), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(673), 4, + STATE(2131), 3, + sym_parenthesized_list_splat, + sym_yield, + sym_list_splat, + ACTIONS(675), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -35965,7 +36684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 14, + STATE(1301), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -35980,79 +36699,82 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [1550] = 32, - ACTIONS(527), 1, - anon_sym_LBRACK, - ACTIONS(531), 1, + [1544] = 33, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(711), 1, + ACTIONS(719), 1, + anon_sym_LBRACK, + ACTIONS(721), 1, anon_sym_LPAREN, - ACTIONS(717), 1, + ACTIONS(725), 1, anon_sym_STAR, - ACTIONS(721), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(723), 1, - anon_sym_STAR_STAR, - ACTIONS(725), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(727), 1, + ACTIONS(733), 1, anon_sym_yield, - ACTIONS(729), 1, + ACTIONS(735), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(737), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(739), 1, sym_python_identifier, - ACTIONS(749), 1, - anon_sym_RBRACE, ACTIONS(751), 1, - anon_sym_COMMA, - STATE(838), 1, - sym_python_string, - STATE(839), 1, + anon_sym_RPAREN, + STATE(893), 1, sym_primary_expression, - STATE(1136), 1, + STATE(894), 1, + sym_python_string, + STATE(1242), 1, sym_list_splat_pattern, - STATE(1531), 1, + STATE(1561), 1, sym_expression, - STATE(1761), 1, - sym_pair, - STATE(2076), 1, - sym_dictionary_splat, - STATE(2378), 1, + STATE(2118), 1, + sym_pattern, + STATE(2191), 1, + sym_yield, + STATE(2391), 1, + sym__patterns, + STATE(2406), 1, sym__collection_elements, - STATE(2454), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2101), 3, + STATE(1243), 2, + sym_attribute, + sym_subscript, + STATE(2212), 2, sym_parenthesized_list_splat, - sym_yield, sym_list_splat, - ACTIONS(719), 4, + STATE(2260), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(727), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -36060,11 +36782,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1316), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -36077,79 +36797,81 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [1679] = 30, - ACTIONS(39), 1, + [1675] = 32, + ACTIONS(631), 1, + anon_sym_LBRACE, + ACTIONS(639), 1, + anon_sym_DASH, + ACTIONS(641), 1, + sym_ellipsis, + ACTIONS(645), 1, + sym_identifier, + ACTIONS(649), 1, + sym_string_start, + ACTIONS(667), 1, anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(671), 1, anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(87), 1, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(91), 1, - anon_sym_DASH, - ACTIONS(93), 1, + ACTIONS(679), 1, anon_sym_lambda, - ACTIONS(95), 1, + ACTIONS(681), 1, anon_sym_yield, - ACTIONS(97), 1, - sym_ellipsis, - ACTIONS(99), 1, + ACTIONS(683), 1, anon_sym_await, - ACTIONS(103), 1, + ACTIONS(685), 1, anon_sym_type, - ACTIONS(107), 1, + ACTIONS(687), 1, sym_python_identifier, - ACTIONS(109), 1, - sym_identifier, - ACTIONS(113), 1, - sym_string_start, - STATE(566), 1, - sym_list_splat_pattern, - STATE(834), 1, + ACTIONS(753), 1, + anon_sym_RBRACK, + STATE(859), 1, sym_python_string, - STATE(846), 1, + STATE(860), 1, sym_primary_expression, - STATE(1494), 1, - sym_pattern, - STATE(1498), 1, - sym_pattern_list, - STATE(1701), 1, + STATE(1273), 1, + sym_list_splat_pattern, + STATE(1539), 1, sym_expression, - STATE(2396), 1, + STATE(2128), 1, + sym_pattern, + STATE(2387), 1, + sym__patterns, + STATE(2424), 1, + sym__collection_elements, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(550), 2, + STATE(1271), 2, sym_attribute, sym_subscript, - STATE(1491), 2, + STATE(2294), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(101), 4, + STATE(2131), 3, + sym_parenthesized_list_splat, + sym_yield, + sym_list_splat, + ACTIONS(675), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(2328), 5, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - sym_expression_list, - STATE(1529), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -36157,7 +36879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 14, + STATE(1301), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -36172,75 +36894,77 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [1804] = 32, - ACTIONS(605), 1, + [1804] = 34, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(687), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(691), 1, + ACTIONS(721), 1, anon_sym_LPAREN, - ACTIONS(693), 1, + ACTIONS(725), 1, anon_sym_STAR, - ACTIONS(697), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(701), 1, + ACTIONS(733), 1, anon_sym_yield, - ACTIONS(703), 1, + ACTIONS(735), 1, anon_sym_await, - ACTIONS(705), 1, + ACTIONS(737), 1, anon_sym_type, - ACTIONS(707), 1, + ACTIONS(739), 1, sym_python_identifier, - ACTIONS(753), 1, - anon_sym_RBRACK, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + ACTIONS(755), 1, + anon_sym_RPAREN, + STATE(893), 1, sym_primary_expression, - STATE(1271), 1, + STATE(894), 1, + sym_python_string, + STATE(1242), 1, sym_list_splat_pattern, - STATE(1573), 1, + STATE(1575), 1, sym_expression, - STATE(2156), 1, + STATE(2118), 1, sym_pattern, - STATE(2466), 1, - sym__patterns, - STATE(2555), 1, + STATE(2132), 1, + sym_yield, + STATE(2208), 1, + sym_parenthesized_list_splat, + STATE(2215), 1, + sym_list_splat, + STATE(2494), 1, sym__collection_elements, - STATE(2557), 1, + STATE(2517), 1, + sym__patterns, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1269), 2, + STATE(1243), 2, sym_attribute, sym_subscript, - STATE(2284), 2, + STATE(2260), 2, sym_tuple_pattern, sym_list_pattern, - STATE(2077), 3, - sym_parenthesized_list_splat, - sym_yield, - sym_list_splat, - ACTIONS(695), 4, + ACTIONS(727), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, @@ -36254,7 +36978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 14, + STATE(1316), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -36269,79 +36993,82 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [1933] = 32, - ACTIONS(527), 1, - anon_sym_LBRACK, - ACTIONS(531), 1, + [1937] = 33, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(711), 1, + ACTIONS(719), 1, + anon_sym_LBRACK, + ACTIONS(721), 1, anon_sym_LPAREN, - ACTIONS(717), 1, + ACTIONS(725), 1, anon_sym_STAR, - ACTIONS(721), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(723), 1, - anon_sym_STAR_STAR, - ACTIONS(725), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(727), 1, + ACTIONS(733), 1, anon_sym_yield, - ACTIONS(729), 1, + ACTIONS(735), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(737), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(739), 1, sym_python_identifier, - ACTIONS(755), 1, - anon_sym_RBRACE, ACTIONS(757), 1, - anon_sym_COMMA, - STATE(838), 1, - sym_python_string, - STATE(839), 1, + anon_sym_RPAREN, + STATE(893), 1, sym_primary_expression, - STATE(1136), 1, + STATE(894), 1, + sym_python_string, + STATE(1242), 1, sym_list_splat_pattern, - STATE(1534), 1, + STATE(1561), 1, sym_expression, - STATE(1738), 1, - sym_pair, - STATE(2083), 1, - sym_dictionary_splat, - STATE(2454), 1, - sym__named_expression_lhs, - STATE(2483), 1, + STATE(2118), 1, + sym_pattern, + STATE(2191), 1, + sym_yield, + STATE(2391), 1, + sym__patterns, + STATE(2406), 1, sym__collection_elements, + STATE(2543), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2101), 3, + STATE(1243), 2, + sym_attribute, + sym_subscript, + STATE(2212), 2, sym_parenthesized_list_splat, - sym_yield, sym_list_splat, - ACTIONS(719), 4, + STATE(2260), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(727), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -36349,11 +37076,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1316), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -36366,81 +37091,79 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [2062] = 32, - ACTIONS(605), 1, + [2068] = 32, + ACTIONS(542), 1, + anon_sym_LBRACK, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(560), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(687), 1, - anon_sym_LBRACK, ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(693), 1, - anon_sym_STAR, ACTIONS(697), 1, + anon_sym_STAR, + ACTIONS(701), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(703), 1, + anon_sym_STAR_STAR, + ACTIONS(705), 1, anon_sym_lambda, - ACTIONS(701), 1, + ACTIONS(707), 1, anon_sym_yield, - ACTIONS(703), 1, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(705), 1, + ACTIONS(711), 1, anon_sym_type, - ACTIONS(707), 1, + ACTIONS(713), 1, sym_python_identifier, ACTIONS(759), 1, - anon_sym_RBRACK, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + anon_sym_RBRACE, + ACTIONS(761), 1, + anon_sym_COMMA, + STATE(839), 1, sym_primary_expression, - STATE(1271), 1, + STATE(840), 1, + sym_python_string, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1575), 1, + STATE(1537), 1, sym_expression, - STATE(2156), 1, - sym_pattern, - STATE(2490), 1, + STATE(1742), 1, + sym_pair, + STATE(2083), 1, + sym_dictionary_splat, + STATE(2383), 1, sym__collection_elements, - STATE(2536), 1, - sym__patterns, - STATE(2557), 1, + STATE(2469), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1269), 2, - sym_attribute, - sym_subscript, - STATE(2284), 2, - sym_tuple_pattern, - sym_list_pattern, - STATE(2077), 3, + STATE(2094), 3, sym_parenthesized_list_splat, sym_yield, sym_list_splat, - ACTIONS(695), 4, + ACTIONS(699), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -36448,9 +37171,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 14, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -36463,81 +37188,81 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [2191] = 32, - ACTIONS(605), 1, + [2197] = 32, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(687), 1, + ACTIONS(667), 1, anon_sym_LBRACK, - ACTIONS(691), 1, + ACTIONS(671), 1, anon_sym_LPAREN, - ACTIONS(693), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(697), 1, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(679), 1, anon_sym_lambda, - ACTIONS(701), 1, + ACTIONS(681), 1, anon_sym_yield, - ACTIONS(703), 1, + ACTIONS(683), 1, anon_sym_await, - ACTIONS(705), 1, + ACTIONS(685), 1, anon_sym_type, - ACTIONS(707), 1, + ACTIONS(687), 1, sym_python_identifier, - ACTIONS(761), 1, + ACTIONS(763), 1, anon_sym_RBRACK, - STATE(857), 1, + STATE(859), 1, sym_python_string, - STATE(858), 1, + STATE(860), 1, sym_primary_expression, - STATE(1271), 1, + STATE(1273), 1, sym_list_splat_pattern, - STATE(1545), 1, + STATE(1539), 1, sym_expression, - STATE(2156), 1, + STATE(2128), 1, sym_pattern, - STATE(2382), 1, + STATE(2393), 1, sym__patterns, - STATE(2398), 1, + STATE(2424), 1, sym__collection_elements, - STATE(2557), 1, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1269), 2, + STATE(1271), 2, sym_attribute, sym_subscript, - STATE(2284), 2, + STATE(2294), 2, sym_tuple_pattern, sym_list_pattern, - STATE(2077), 3, + STATE(2131), 3, sym_parenthesized_list_splat, sym_yield, sym_list_splat, - ACTIONS(695), 4, + ACTIONS(675), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -36545,7 +37270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 14, + STATE(1301), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -36560,82 +37285,79 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [2320] = 33, - ACTIONS(557), 1, + [2326] = 32, + ACTIONS(542), 1, + anon_sym_LBRACK, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(560), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(665), 1, - anon_sym_LBRACK, - ACTIONS(667), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(671), 1, + ACTIONS(697), 1, anon_sym_STAR, - ACTIONS(675), 1, + ACTIONS(701), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(703), 1, + anon_sym_STAR_STAR, + ACTIONS(705), 1, anon_sym_lambda, - ACTIONS(679), 1, + ACTIONS(707), 1, anon_sym_yield, - ACTIONS(681), 1, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(683), 1, + ACTIONS(711), 1, anon_sym_type, - ACTIONS(685), 1, + ACTIONS(713), 1, sym_python_identifier, - ACTIONS(763), 1, - anon_sym_RPAREN, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + ACTIONS(765), 1, + anon_sym_RBRACE, + ACTIONS(767), 1, + anon_sym_COMMA, + STATE(839), 1, sym_primary_expression, - STATE(1217), 1, + STATE(840), 1, + sym_python_string, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1557), 1, + STATE(1533), 1, sym_expression, - STATE(2169), 1, - sym_pattern, - STATE(2221), 1, - sym_yield, - STATE(2415), 1, - sym__collection_elements, - STATE(2497), 1, + STATE(1766), 1, + sym_pair, + STATE(2087), 1, + sym_dictionary_splat, + STATE(2469), 1, sym__named_expression_lhs, - STATE(2539), 1, - sym__patterns, + STATE(2532), 1, + sym__collection_elements, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1221), 2, - sym_attribute, - sym_subscript, - STATE(2133), 2, + STATE(2094), 3, sym_parenthesized_list_splat, + sym_yield, sym_list_splat, - STATE(2261), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(673), 4, + ACTIONS(699), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -36643,9 +37365,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 14, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -36658,79 +37382,81 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [2451] = 32, - ACTIONS(527), 1, - anon_sym_LBRACK, - ACTIONS(531), 1, + [2455] = 32, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(711), 1, + ACTIONS(667), 1, + anon_sym_LBRACK, + ACTIONS(671), 1, anon_sym_LPAREN, - ACTIONS(717), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(721), 1, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(723), 1, - anon_sym_STAR_STAR, - ACTIONS(725), 1, + ACTIONS(679), 1, anon_sym_lambda, - ACTIONS(727), 1, + ACTIONS(681), 1, anon_sym_yield, - ACTIONS(729), 1, + ACTIONS(683), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(685), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(687), 1, sym_python_identifier, - ACTIONS(765), 1, - anon_sym_RBRACE, - ACTIONS(767), 1, - anon_sym_COMMA, - STATE(838), 1, + ACTIONS(769), 1, + anon_sym_RBRACK, + STATE(859), 1, sym_python_string, - STATE(839), 1, + STATE(860), 1, sym_primary_expression, - STATE(1136), 1, + STATE(1273), 1, sym_list_splat_pattern, - STATE(1535), 1, + STATE(1539), 1, sym_expression, - STATE(1754), 1, - sym_pair, - STATE(2081), 1, - sym_dictionary_splat, - STATE(2454), 1, - sym__named_expression_lhs, - STATE(2484), 1, + STATE(2128), 1, + sym_pattern, + STATE(2424), 1, sym__collection_elements, + STATE(2482), 1, + sym__named_expression_lhs, + STATE(2560), 1, + sym__patterns, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2101), 3, + STATE(1271), 2, + sym_attribute, + sym_subscript, + STATE(2294), 2, + sym_tuple_pattern, + sym_list_pattern, + STATE(2131), 3, sym_parenthesized_list_splat, sym_yield, sym_list_splat, - ACTIONS(719), 4, + ACTIONS(675), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -36738,11 +37464,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1301), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -36755,79 +37479,81 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [2580] = 32, - ACTIONS(527), 1, - anon_sym_LBRACK, - ACTIONS(531), 1, + [2584] = 32, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(711), 1, + ACTIONS(667), 1, + anon_sym_LBRACK, + ACTIONS(671), 1, anon_sym_LPAREN, - ACTIONS(717), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(721), 1, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(723), 1, - anon_sym_STAR_STAR, - ACTIONS(725), 1, + ACTIONS(679), 1, anon_sym_lambda, - ACTIONS(727), 1, + ACTIONS(681), 1, anon_sym_yield, - ACTIONS(729), 1, + ACTIONS(683), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(685), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(687), 1, sym_python_identifier, - ACTIONS(769), 1, - anon_sym_RBRACE, ACTIONS(771), 1, - anon_sym_COMMA, - STATE(838), 1, + anon_sym_RBRACK, + STATE(859), 1, sym_python_string, - STATE(839), 1, + STATE(860), 1, sym_primary_expression, - STATE(1136), 1, + STATE(1273), 1, sym_list_splat_pattern, - STATE(1528), 1, + STATE(1554), 1, sym_expression, - STATE(1773), 1, - sym_pair, - STATE(2210), 1, - sym_dictionary_splat, - STATE(2411), 1, - sym__collection_elements, - STATE(2454), 1, + STATE(2128), 1, + sym_pattern, + STATE(2482), 1, sym__named_expression_lhs, + STATE(2487), 1, + sym__collection_elements, + STATE(2501), 1, + sym__patterns, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2101), 3, + STATE(1271), 2, + sym_attribute, + sym_subscript, + STATE(2294), 2, + sym_tuple_pattern, + sym_list_pattern, + STATE(2131), 3, sym_parenthesized_list_splat, sym_yield, sym_list_splat, - ACTIONS(719), 4, + ACTIONS(675), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -36835,11 +37561,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1301), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -36852,75 +37576,76 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [2709] = 32, - ACTIONS(605), 1, + [2713] = 33, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(687), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(691), 1, + ACTIONS(721), 1, anon_sym_LPAREN, - ACTIONS(693), 1, + ACTIONS(725), 1, anon_sym_STAR, - ACTIONS(697), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(701), 1, + ACTIONS(733), 1, anon_sym_yield, - ACTIONS(703), 1, + ACTIONS(735), 1, anon_sym_await, - ACTIONS(705), 1, + ACTIONS(737), 1, anon_sym_type, - ACTIONS(707), 1, + ACTIONS(739), 1, sym_python_identifier, ACTIONS(773), 1, - anon_sym_RBRACK, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + anon_sym_RPAREN, + STATE(893), 1, sym_primary_expression, - STATE(1271), 1, + STATE(894), 1, + sym_python_string, + STATE(1242), 1, sym_list_splat_pattern, - STATE(1571), 1, + STATE(1548), 1, sym_expression, - STATE(2156), 1, + STATE(2118), 1, sym_pattern, - STATE(2418), 1, + STATE(2226), 1, + sym_yield, + STATE(2421), 1, sym__collection_elements, - STATE(2429), 1, + STATE(2517), 1, sym__patterns, - STATE(2557), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1269), 2, + STATE(1243), 2, sym_attribute, sym_subscript, - STATE(2284), 2, - sym_tuple_pattern, - sym_list_pattern, - STATE(2077), 3, + STATE(2212), 2, sym_parenthesized_list_splat, - sym_yield, sym_list_splat, - ACTIONS(695), 4, + STATE(2260), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(727), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, @@ -36934,7 +37659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 14, + STATE(1316), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -36949,82 +37674,82 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [2838] = 33, - ACTIONS(557), 1, + [2844] = 33, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(665), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(667), 1, + ACTIONS(721), 1, anon_sym_LPAREN, - ACTIONS(671), 1, + ACTIONS(725), 1, anon_sym_STAR, - ACTIONS(675), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(679), 1, + ACTIONS(733), 1, anon_sym_yield, - ACTIONS(681), 1, + ACTIONS(735), 1, anon_sym_await, - ACTIONS(683), 1, + ACTIONS(737), 1, anon_sym_type, - ACTIONS(685), 1, + ACTIONS(739), 1, sym_python_identifier, ACTIONS(775), 1, anon_sym_RPAREN, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(893), 1, sym_primary_expression, - STATE(1217), 1, + STATE(894), 1, + sym_python_string, + STATE(1242), 1, sym_list_splat_pattern, - STATE(1559), 1, + STATE(1548), 1, sym_expression, - STATE(2079), 1, - sym_yield, - STATE(2169), 1, + STATE(2118), 1, sym_pattern, - STATE(2388), 1, - sym__patterns, - STATE(2486), 1, + STATE(2226), 1, + sym_yield, + STATE(2421), 1, sym__collection_elements, - STATE(2497), 1, + STATE(2442), 1, + sym__patterns, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1221), 2, + STATE(1243), 2, sym_attribute, sym_subscript, - STATE(2133), 2, + STATE(2212), 2, sym_parenthesized_list_splat, sym_list_splat, - STATE(2261), 2, + STATE(2260), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(673), 4, + ACTIONS(727), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -37032,7 +37757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 14, + STATE(1316), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -37047,81 +37772,81 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [2969] = 32, - ACTIONS(605), 1, + [2975] = 32, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(687), 1, + ACTIONS(667), 1, anon_sym_LBRACK, - ACTIONS(691), 1, + ACTIONS(671), 1, anon_sym_LPAREN, - ACTIONS(693), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(697), 1, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(679), 1, anon_sym_lambda, - ACTIONS(701), 1, + ACTIONS(681), 1, anon_sym_yield, - ACTIONS(703), 1, + ACTIONS(683), 1, anon_sym_await, - ACTIONS(705), 1, + ACTIONS(685), 1, anon_sym_type, - ACTIONS(707), 1, + ACTIONS(687), 1, sym_python_identifier, ACTIONS(777), 1, anon_sym_RBRACK, - STATE(857), 1, + STATE(859), 1, sym_python_string, - STATE(858), 1, + STATE(860), 1, sym_primary_expression, - STATE(1271), 1, + STATE(1273), 1, sym_list_splat_pattern, - STATE(1576), 1, + STATE(1540), 1, sym_expression, - STATE(2156), 1, + STATE(2128), 1, sym_pattern, - STATE(2382), 1, + STATE(2387), 1, sym__patterns, - STATE(2488), 1, - sym__collection_elements, - STATE(2557), 1, + STATE(2482), 1, sym__named_expression_lhs, + STATE(2492), 1, + sym__collection_elements, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1269), 2, + STATE(1271), 2, sym_attribute, sym_subscript, - STATE(2284), 2, + STATE(2294), 2, sym_tuple_pattern, sym_list_pattern, - STATE(2077), 3, + STATE(2131), 3, sym_parenthesized_list_splat, sym_yield, sym_list_splat, - ACTIONS(695), 4, + ACTIONS(675), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -37129,7 +37854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 14, + STATE(1301), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -37144,83 +37869,82 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [3098] = 34, - ACTIONS(557), 1, + [3104] = 33, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(665), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(667), 1, + ACTIONS(721), 1, anon_sym_LPAREN, - ACTIONS(671), 1, + ACTIONS(725), 1, anon_sym_STAR, - ACTIONS(675), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(679), 1, + ACTIONS(733), 1, anon_sym_yield, - ACTIONS(681), 1, + ACTIONS(735), 1, anon_sym_await, - ACTIONS(683), 1, + ACTIONS(737), 1, anon_sym_type, - ACTIONS(685), 1, + ACTIONS(739), 1, sym_python_identifier, ACTIONS(779), 1, anon_sym_RPAREN, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(893), 1, sym_primary_expression, - STATE(1217), 1, + STATE(894), 1, + sym_python_string, + STATE(1242), 1, sym_list_splat_pattern, - STATE(1567), 1, + STATE(1541), 1, sym_expression, - STATE(2051), 1, - sym_list_splat, - STATE(2052), 1, - sym_parenthesized_list_splat, - STATE(2078), 1, - sym_yield, - STATE(2169), 1, + STATE(2118), 1, sym_pattern, - STATE(2489), 1, + STATE(2134), 1, + sym_yield, + STATE(2391), 1, + sym__patterns, + STATE(2490), 1, sym__collection_elements, - STATE(2497), 1, + STATE(2543), 1, sym__named_expression_lhs, - STATE(2539), 1, - sym__patterns, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1221), 2, + STATE(1243), 2, sym_attribute, sym_subscript, - STATE(2261), 2, + STATE(2212), 2, + sym_parenthesized_list_splat, + sym_list_splat, + STATE(2260), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(673), 4, + ACTIONS(727), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -37228,7 +37952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 14, + STATE(1316), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -37243,83 +37967,81 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [3231] = 34, - ACTIONS(557), 1, + [3235] = 32, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(665), 1, - anon_sym_LBRACK, ACTIONS(667), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(671), 1, + anon_sym_LPAREN, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(675), 1, - anon_sym_not, ACTIONS(677), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(679), 1, - anon_sym_yield, + anon_sym_lambda, ACTIONS(681), 1, - anon_sym_await, + anon_sym_yield, ACTIONS(683), 1, - anon_sym_type, + anon_sym_await, ACTIONS(685), 1, + anon_sym_type, + ACTIONS(687), 1, sym_python_identifier, ACTIONS(781), 1, - anon_sym_RPAREN, - STATE(851), 1, + anon_sym_RBRACK, + STATE(859), 1, sym_python_string, - STATE(874), 1, + STATE(860), 1, sym_primary_expression, - STATE(1217), 1, + STATE(1273), 1, sym_list_splat_pattern, - STATE(1547), 1, + STATE(1574), 1, sym_expression, - STATE(2061), 1, - sym_yield, - STATE(2169), 1, + STATE(2128), 1, sym_pattern, - STATE(2198), 1, - sym_parenthesized_list_splat, - STATE(2203), 1, - sym_list_splat, - STATE(2475), 1, - sym__patterns, - STATE(2497), 1, + STATE(2482), 1, sym__named_expression_lhs, - STATE(2554), 1, + STATE(2538), 1, sym__collection_elements, + STATE(2560), 1, + sym__patterns, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1221), 2, + STATE(1271), 2, sym_attribute, sym_subscript, - STATE(2261), 2, + STATE(2294), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(673), 4, + STATE(2131), 3, + sym_parenthesized_list_splat, + sym_yield, + sym_list_splat, + ACTIONS(675), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -37327,7 +38049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 14, + STATE(1301), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -37342,82 +38064,81 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [3364] = 33, - ACTIONS(557), 1, + [3364] = 32, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(665), 1, - anon_sym_LBRACK, ACTIONS(667), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(671), 1, + anon_sym_LPAREN, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(675), 1, - anon_sym_not, ACTIONS(677), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(679), 1, - anon_sym_yield, + anon_sym_lambda, ACTIONS(681), 1, - anon_sym_await, + anon_sym_yield, ACTIONS(683), 1, - anon_sym_type, + anon_sym_await, ACTIONS(685), 1, + anon_sym_type, + ACTIONS(687), 1, sym_python_identifier, ACTIONS(783), 1, - anon_sym_RPAREN, - STATE(851), 1, + anon_sym_RBRACK, + STATE(859), 1, sym_python_string, - STATE(874), 1, + STATE(860), 1, sym_primary_expression, - STATE(1217), 1, + STATE(1273), 1, sym_list_splat_pattern, - STATE(1557), 1, + STATE(1539), 1, sym_expression, - STATE(2169), 1, + STATE(2128), 1, sym_pattern, - STATE(2221), 1, - sym_yield, - STATE(2390), 1, + STATE(2387), 1, sym__patterns, - STATE(2415), 1, + STATE(2424), 1, sym__collection_elements, - STATE(2497), 1, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1221), 2, + STATE(1271), 2, sym_attribute, sym_subscript, - STATE(2133), 2, - sym_parenthesized_list_splat, - sym_list_splat, - STATE(2261), 2, + STATE(2294), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(673), 4, + STATE(2131), 3, + sym_parenthesized_list_splat, + sym_yield, + sym_list_splat, + ACTIONS(675), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -37425,7 +38146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 14, + STATE(1301), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -37440,75 +38161,76 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [3495] = 32, - ACTIONS(605), 1, + [3493] = 33, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(687), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(691), 1, + ACTIONS(721), 1, anon_sym_LPAREN, - ACTIONS(693), 1, + ACTIONS(725), 1, anon_sym_STAR, - ACTIONS(697), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(701), 1, + ACTIONS(733), 1, anon_sym_yield, - ACTIONS(703), 1, + ACTIONS(735), 1, anon_sym_await, - ACTIONS(705), 1, + ACTIONS(737), 1, anon_sym_type, - ACTIONS(707), 1, + ACTIONS(739), 1, sym_python_identifier, ACTIONS(785), 1, - anon_sym_RBRACK, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + anon_sym_RPAREN, + STATE(893), 1, sym_primary_expression, - STATE(1271), 1, + STATE(894), 1, + sym_python_string, + STATE(1242), 1, sym_list_splat_pattern, - STATE(1545), 1, + STATE(1548), 1, sym_expression, - STATE(2156), 1, + STATE(2118), 1, sym_pattern, - STATE(2382), 1, - sym__patterns, + STATE(2226), 1, + sym_yield, STATE(2398), 1, + sym__patterns, + STATE(2421), 1, sym__collection_elements, - STATE(2557), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1269), 2, + STATE(1243), 2, sym_attribute, sym_subscript, - STATE(2284), 2, - sym_tuple_pattern, - sym_list_pattern, - STATE(2077), 3, + STATE(2212), 2, sym_parenthesized_list_splat, - sym_yield, sym_list_splat, - ACTIONS(695), 4, + STATE(2260), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(727), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, @@ -37522,7 +38244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 14, + STATE(1316), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -37538,78 +38260,78 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [3624] = 32, - ACTIONS(527), 1, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(531), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(560), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(711), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(717), 1, + ACTIONS(697), 1, anon_sym_STAR, - ACTIONS(721), 1, + ACTIONS(701), 1, anon_sym_not, - ACTIONS(723), 1, + ACTIONS(703), 1, anon_sym_STAR_STAR, - ACTIONS(725), 1, + ACTIONS(705), 1, anon_sym_lambda, - ACTIONS(727), 1, + ACTIONS(707), 1, anon_sym_yield, - ACTIONS(729), 1, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(711), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(713), 1, sym_python_identifier, ACTIONS(787), 1, anon_sym_RBRACE, ACTIONS(789), 1, anon_sym_COMMA, - STATE(838), 1, - sym_python_string, STATE(839), 1, sym_primary_expression, - STATE(1136), 1, + STATE(840), 1, + sym_python_string, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1533), 1, + STATE(1535), 1, sym_expression, - STATE(1772), 1, + STATE(1751), 1, sym_pair, - STATE(2204), 1, + STATE(2218), 1, sym_dictionary_splat, - STATE(2403), 1, + STATE(2417), 1, sym__collection_elements, - STATE(2454), 1, + STATE(2469), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2101), 3, + STATE(2094), 3, sym_parenthesized_list_splat, sym_yield, sym_list_splat, - ACTIONS(719), 4, + ACTIONS(699), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 5, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -37617,7 +38339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37634,82 +38356,79 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [3753] = 33, - ACTIONS(557), 1, + [3753] = 32, + ACTIONS(542), 1, + anon_sym_LBRACK, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(560), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(665), 1, - anon_sym_LBRACK, - ACTIONS(667), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(671), 1, + ACTIONS(697), 1, anon_sym_STAR, - ACTIONS(675), 1, + ACTIONS(701), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(703), 1, + anon_sym_STAR_STAR, + ACTIONS(705), 1, anon_sym_lambda, - ACTIONS(679), 1, + ACTIONS(707), 1, anon_sym_yield, - ACTIONS(681), 1, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(683), 1, + ACTIONS(711), 1, anon_sym_type, - ACTIONS(685), 1, + ACTIONS(713), 1, sym_python_identifier, ACTIONS(791), 1, - anon_sym_RPAREN, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + anon_sym_RBRACE, + ACTIONS(793), 1, + anon_sym_COMMA, + STATE(839), 1, sym_primary_expression, - STATE(1217), 1, + STATE(840), 1, + sym_python_string, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1557), 1, + STATE(1530), 1, sym_expression, - STATE(2169), 1, - sym_pattern, - STATE(2221), 1, - sym_yield, - STATE(2388), 1, - sym__patterns, - STATE(2415), 1, + STATE(1757), 1, + sym_pair, + STATE(2170), 1, + sym_dictionary_splat, + STATE(2462), 1, sym__collection_elements, - STATE(2497), 1, + STATE(2469), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1221), 2, - sym_attribute, - sym_subscript, - STATE(2133), 2, + STATE(2094), 3, sym_parenthesized_list_splat, + sym_yield, sym_list_splat, - STATE(2261), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(673), 4, + ACTIONS(699), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -37717,9 +38436,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 14, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -37732,81 +38453,79 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [3884] = 32, - ACTIONS(605), 1, + [3882] = 32, + ACTIONS(542), 1, + anon_sym_LBRACK, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(560), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(687), 1, - anon_sym_LBRACK, ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(693), 1, - anon_sym_STAR, ACTIONS(697), 1, + anon_sym_STAR, + ACTIONS(701), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(703), 1, + anon_sym_STAR_STAR, + ACTIONS(705), 1, anon_sym_lambda, - ACTIONS(701), 1, + ACTIONS(707), 1, anon_sym_yield, - ACTIONS(703), 1, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(705), 1, + ACTIONS(711), 1, anon_sym_type, - ACTIONS(707), 1, + ACTIONS(713), 1, sym_python_identifier, - ACTIONS(793), 1, - anon_sym_RBRACK, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + ACTIONS(795), 1, + anon_sym_RBRACE, + ACTIONS(797), 1, + anon_sym_COMMA, + STATE(839), 1, sym_primary_expression, - STATE(1271), 1, + STATE(840), 1, + sym_python_string, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1571), 1, + STATE(1529), 1, sym_expression, - STATE(2156), 1, - sym_pattern, - STATE(2365), 1, - sym__patterns, - STATE(2418), 1, + STATE(1772), 1, + sym_pair, + STATE(2196), 1, + sym_dictionary_splat, + STATE(2409), 1, sym__collection_elements, - STATE(2557), 1, + STATE(2469), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1269), 2, - sym_attribute, - sym_subscript, - STATE(2284), 2, - sym_tuple_pattern, - sym_list_pattern, - STATE(2077), 3, + STATE(2094), 3, sym_parenthesized_list_splat, sym_yield, sym_list_splat, - ACTIONS(695), 4, + ACTIONS(699), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -37814,9 +38533,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 14, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -37829,79 +38550,81 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [4013] = 32, - ACTIONS(527), 1, - anon_sym_LBRACK, - ACTIONS(531), 1, + [4011] = 32, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(711), 1, + ACTIONS(667), 1, + anon_sym_LBRACK, + ACTIONS(671), 1, anon_sym_LPAREN, - ACTIONS(717), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(721), 1, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(723), 1, - anon_sym_STAR_STAR, - ACTIONS(725), 1, + ACTIONS(679), 1, anon_sym_lambda, - ACTIONS(727), 1, + ACTIONS(681), 1, anon_sym_yield, - ACTIONS(729), 1, + ACTIONS(683), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(685), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(687), 1, sym_python_identifier, - ACTIONS(795), 1, - anon_sym_RBRACE, - ACTIONS(797), 1, - anon_sym_COMMA, - STATE(838), 1, + ACTIONS(799), 1, + anon_sym_RBRACK, + STATE(859), 1, sym_python_string, - STATE(839), 1, + STATE(860), 1, sym_primary_expression, - STATE(1136), 1, + STATE(1273), 1, sym_list_splat_pattern, - STATE(1527), 1, + STATE(1566), 1, sym_expression, - STATE(1757), 1, - sym_pair, - STATE(2166), 1, - sym_dictionary_splat, - STATE(2441), 1, + STATE(2128), 1, + sym_pattern, + STATE(2387), 1, + sym__patterns, + STATE(2404), 1, sym__collection_elements, - STATE(2454), 1, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2101), 3, + STATE(1271), 2, + sym_attribute, + sym_subscript, + STATE(2294), 2, + sym_tuple_pattern, + sym_list_pattern, + STATE(2131), 3, sym_parenthesized_list_splat, sym_yield, sym_list_splat, - ACTIONS(719), 4, + ACTIONS(675), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -37909,11 +38632,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1301), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -37926,75 +38647,76 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [4142] = 32, - ACTIONS(605), 1, + [4140] = 33, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(687), 1, + ACTIONS(719), 1, anon_sym_LBRACK, - ACTIONS(691), 1, + ACTIONS(721), 1, anon_sym_LPAREN, - ACTIONS(693), 1, + ACTIONS(725), 1, anon_sym_STAR, - ACTIONS(697), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(701), 1, + ACTIONS(733), 1, anon_sym_yield, - ACTIONS(703), 1, + ACTIONS(735), 1, anon_sym_await, - ACTIONS(705), 1, + ACTIONS(737), 1, anon_sym_type, - ACTIONS(707), 1, + ACTIONS(739), 1, sym_python_identifier, - ACTIONS(799), 1, - anon_sym_RBRACK, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + ACTIONS(801), 1, + anon_sym_RPAREN, + STATE(893), 1, sym_primary_expression, - STATE(1271), 1, + STATE(894), 1, + sym_python_string, + STATE(1242), 1, sym_list_splat_pattern, - STATE(1571), 1, + STATE(1548), 1, sym_expression, - STATE(2156), 1, + STATE(2118), 1, sym_pattern, - STATE(2382), 1, + STATE(2226), 1, + sym_yield, + STATE(2391), 1, sym__patterns, - STATE(2418), 1, + STATE(2421), 1, sym__collection_elements, - STATE(2557), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1269), 2, + STATE(1243), 2, sym_attribute, sym_subscript, - STATE(2284), 2, - sym_tuple_pattern, - sym_list_pattern, - STATE(2077), 3, + STATE(2212), 2, sym_parenthesized_list_splat, - sym_yield, sym_list_splat, - ACTIONS(695), 4, + STATE(2260), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(727), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, @@ -38008,7 +38730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 14, + STATE(1316), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -38024,60 +38746,60 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4271] = 23, - ACTIONS(469), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(480), 1, - anon_sym_TILDE, ACTIONS(482), 1, + anon_sym_TILDE, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(803), 1, - anon_sym_LBRACK, ACTIONS(805), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(807), 1, + anon_sym_LPAREN, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(811), 1, - anon_sym_await, ACTIONS(813), 1, - anon_sym_type, + anon_sym_await, ACTIONS(815), 1, + anon_sym_type, + ACTIONS(817), 1, sym_python_identifier, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1167), 1, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1443), 1, + STATE(1450), 1, sym_primary_expression, - STATE(1465), 1, + STATE(1467), 1, sym_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(478), 2, + ACTIONS(480), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1158), 2, + STATE(1303), 2, sym_attribute, sym_subscript, - STATE(1454), 2, + STATE(1455), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(809), 4, + ACTIONS(811), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -38092,7 +38814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - ACTIONS(801), 17, + ACTIONS(803), 17, sym__newline, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -38111,60 +38833,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, [4381] = 23, - ACTIONS(469), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(480), 1, - anon_sym_TILDE, ACTIONS(482), 1, + anon_sym_TILDE, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(803), 1, - anon_sym_LBRACK, ACTIONS(805), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(807), 1, + anon_sym_LPAREN, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(811), 1, - anon_sym_await, ACTIONS(813), 1, - anon_sym_type, + anon_sym_await, ACTIONS(815), 1, + anon_sym_type, + ACTIONS(817), 1, sym_python_identifier, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1167), 1, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1443), 1, + STATE(1450), 1, sym_primary_expression, - STATE(1465), 1, + STATE(1467), 1, sym_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(478), 2, + ACTIONS(480), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1158), 2, + STATE(1303), 2, sym_attribute, sym_subscript, - STATE(1454), 2, + STATE(1455), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(809), 4, + ACTIONS(811), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -38179,7 +38901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - ACTIONS(817), 17, + ACTIONS(819), 17, sym__newline, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -38198,75 +38920,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, [4491] = 29, - ACTIONS(496), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(504), 1, - anon_sym_DASH, ACTIONS(506), 1, + anon_sym_DASH, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(727), 1, + ACTIONS(707), 1, anon_sym_yield, - ACTIONS(819), 1, - anon_sym_LBRACK, ACTIONS(821), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(823), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(827), 1, - anon_sym_not, ACTIONS(829), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(831), 1, - anon_sym_await, + anon_sym_lambda, ACTIONS(833), 1, - anon_sym_type, + anon_sym_await, ACTIONS(835), 1, + anon_sym_type, + ACTIONS(837), 1, sym_python_identifier, - STATE(841), 1, - sym_python_string, - STATE(844), 1, + STATE(837), 1, sym_primary_expression, - STATE(1054), 1, + STATE(844), 1, + sym_python_string, + STATE(1062), 1, sym_list_splat_pattern, - STATE(1602), 1, + STATE(1599), 1, sym_expression, - STATE(2246), 1, + STATE(2250), 1, sym_pattern, - STATE(2525), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1053), 2, + STATE(1042), 2, sym_attribute, sym_subscript, - STATE(1491), 2, + STATE(1493), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(825), 4, + ACTIONS(827), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - STATE(1946), 4, + STATE(1950), 4, sym_pattern_list, sym_yield, sym_expression_list, sym__f_expression, - ACTIONS(512), 5, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1624), 7, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -38274,7 +38996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 14, + STATE(1136), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -38290,75 +39012,75 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4612] = 29, - ACTIONS(496), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(504), 1, - anon_sym_DASH, ACTIONS(506), 1, + anon_sym_DASH, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(727), 1, + ACTIONS(707), 1, anon_sym_yield, - ACTIONS(819), 1, - anon_sym_LBRACK, ACTIONS(821), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(823), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(827), 1, - anon_sym_not, ACTIONS(829), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(831), 1, - anon_sym_await, + anon_sym_lambda, ACTIONS(833), 1, - anon_sym_type, + anon_sym_await, ACTIONS(835), 1, + anon_sym_type, + ACTIONS(837), 1, sym_python_identifier, - STATE(841), 1, - sym_python_string, - STATE(844), 1, + STATE(837), 1, sym_primary_expression, - STATE(1054), 1, + STATE(844), 1, + sym_python_string, + STATE(1062), 1, sym_list_splat_pattern, - STATE(1602), 1, + STATE(1599), 1, sym_expression, - STATE(2246), 1, + STATE(2250), 1, sym_pattern, - STATE(2525), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1053), 2, + STATE(1042), 2, sym_attribute, sym_subscript, - STATE(1491), 2, + STATE(1493), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(825), 4, + ACTIONS(827), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - STATE(1917), 4, + STATE(1880), 4, sym_pattern_list, sym_yield, sym_expression_list, sym__f_expression, - ACTIONS(512), 5, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1624), 7, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -38366,7 +39088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 14, + STATE(1136), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -38382,70 +39104,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4733] = 27, - ACTIONS(43), 1, + ACTIONS(276), 1, + anon_sym_STAR_STAR, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, - anon_sym_DASH, - ACTIONS(93), 1, - anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(839), 1, + anon_sym_STAR, + ACTIONS(843), 1, + anon_sym_not, + ACTIONS(845), 1, + anon_sym_lambda, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(837), 1, - anon_sym_STAR, - ACTIONS(839), 1, - anon_sym_STAR_STAR, - ACTIONS(841), 1, + ACTIONS(851), 1, sym_python_identifier, - STATE(834), 1, + STATE(853), 1, sym_python_string, - STATE(840), 1, + STATE(939), 1, sym_primary_expression, - STATE(989), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1586), 1, + STATE(1639), 1, sym_expression, - STATE(1834), 1, + STATE(1910), 1, sym_type, - STATE(2396), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1799), 5, + STATE(1930), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1529), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -38453,7 +39175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38471,72 +39193,72 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4849] = 29, - ACTIONS(553), 1, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(557), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(675), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(843), 1, + ACTIONS(853), 1, anon_sym_LPAREN, - ACTIONS(845), 1, + ACTIONS(855), 1, anon_sym_RPAREN, - ACTIONS(847), 1, + ACTIONS(857), 1, anon_sym_COMMA, - ACTIONS(849), 1, + ACTIONS(859), 1, anon_sym_STAR, - ACTIONS(853), 1, + ACTIONS(863), 1, anon_sym_STAR_STAR, - ACTIONS(855), 1, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(857), 1, + ACTIONS(867), 1, anon_sym_type, - ACTIONS(859), 1, + ACTIONS(869), 1, sym_python_identifier, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(893), 1, sym_primary_expression, - STATE(1172), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1572), 1, + STATE(1568), 1, sym_expression, - STATE(2105), 1, + STATE(2109), 1, sym_parenthesized_list_splat, - STATE(2497), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2106), 3, + STATE(2009), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(851), 4, + ACTIONS(861), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -38544,7 +39266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38562,70 +39284,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4969] = 27, - ACTIONS(625), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(861), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(877), 1, anon_sym_STAR_STAR, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(875), 1, + ACTIONS(885), 1, sym_python_identifier, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1656), 1, + STATE(1666), 1, sym_expression, - STATE(1856), 1, + STATE(1909), 1, sym_type, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1925), 5, + STATE(1924), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -38633,7 +39355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38650,160 +39372,73 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [5085] = 27, - ACTIONS(274), 1, - anon_sym_STAR_STAR, - ACTIONS(465), 1, + [5085] = 29, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(467), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(583), 1, + anon_sym_DASH, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(877), 1, - anon_sym_STAR, - ACTIONS(881), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(885), 1, - anon_sym_await, - ACTIONS(887), 1, - anon_sym_type, - ACTIONS(889), 1, - sym_python_identifier, - STATE(868), 1, - sym_python_string, - STATE(922), 1, - sym_primary_expression, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1654), 1, - sym_expression, - STATE(2054), 1, - sym_type, - STATE(2446), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(651), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(879), 4, - anon_sym_print, - anon_sym_exec, - anon_sym_async, - anon_sym_match, - ACTIONS(488), 5, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - STATE(1908), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1601), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_as_pattern, - sym_conditional_expression, - STATE(1266), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_generator_expression, - sym_parenthesized_expression, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_concatenated_string, - sym_await, - [5201] = 27, - ACTIONS(274), 1, - anon_sym_STAR_STAR, - ACTIONS(465), 1, - anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(853), 1, anon_sym_LPAREN, - ACTIONS(469), 1, - anon_sym_LBRACE, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(877), 1, + ACTIONS(859), 1, anon_sym_STAR, - ACTIONS(881), 1, - anon_sym_not, - ACTIONS(883), 1, - anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(863), 1, + anon_sym_STAR_STAR, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(867), 1, anon_sym_type, - ACTIONS(889), 1, + ACTIONS(869), 1, sym_python_identifier, - STATE(868), 1, - sym_python_string, - STATE(922), 1, + ACTIONS(887), 1, + anon_sym_RPAREN, + ACTIONS(889), 1, + anon_sym_COMMA, + STATE(893), 1, sym_primary_expression, - STATE(1260), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1654), 1, + STATE(1577), 1, sym_expression, - STATE(1934), 1, - sym_type, - STATE(2446), 1, + STATE(2051), 1, + sym_parenthesized_list_splat, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + STATE(2050), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(861), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1908), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1601), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -38811,7 +39446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38828,71 +39463,73 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [5317] = 27, - ACTIONS(492), 1, + [5205] = 29, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(494), 1, - anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(823), 1, - anon_sym_STAR, - ACTIONS(827), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(829), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(893), 1, - anon_sym_from, - ACTIONS(897), 1, + ACTIONS(853), 1, + anon_sym_LPAREN, + ACTIONS(859), 1, + anon_sym_STAR, + ACTIONS(863), 1, + anon_sym_STAR_STAR, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(867), 1, anon_sym_type, - ACTIONS(901), 1, + ACTIONS(869), 1, sym_python_identifier, - STATE(841), 1, - sym_python_string, - STATE(844), 1, + ACTIONS(891), 1, + anon_sym_RPAREN, + ACTIONS(893), 1, + anon_sym_COMMA, + STATE(893), 1, sym_primary_expression, - STATE(1028), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1603), 1, + STATE(1564), 1, sym_expression, - STATE(1947), 1, - sym_expression_list, - STATE(2525), 1, + STATE(2060), 1, + sym_parenthesized_list_splat, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(895), 4, + STATE(2066), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(861), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - ACTIONS(891), 5, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_COMMA, - sym_type_conversion, - STATE(1624), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -38900,7 +39537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38917,73 +39554,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [5433] = 29, - ACTIONS(553), 1, + [5325] = 27, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(557), 1, + ACTIONS(520), 1, + anon_sym_LPAREN, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(675), 1, - anon_sym_not, - ACTIONS(677), 1, - anon_sym_lambda, - ACTIONS(843), 1, - anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_STAR, - ACTIONS(853), 1, + ACTIONS(899), 1, + anon_sym_not, + ACTIONS(901), 1, anon_sym_STAR_STAR, - ACTIONS(855), 1, + ACTIONS(903), 1, + anon_sym_lambda, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(857), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(859), 1, + ACTIONS(909), 1, sym_python_identifier, - ACTIONS(903), 1, - anon_sym_RPAREN, - ACTIONS(905), 1, - anon_sym_COMMA, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(876), 1, sym_primary_expression, - STATE(1172), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1554), 1, + STATE(1581), 1, sym_expression, - STATE(2165), 1, - sym_parenthesized_list_splat, - STATE(2497), 1, + STATE(1825), 1, + sym_type, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2164), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(851), 4, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1817), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -38991,7 +39626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39008,63 +39643,83 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [5553] = 23, - ACTIONS(469), 1, + [5441] = 27, + ACTIONS(518), 1, + anon_sym_LBRACK, + ACTIONS(520), 1, + anon_sym_LPAREN, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(480), 1, - anon_sym_TILDE, - ACTIONS(482), 1, + ACTIONS(530), 1, + anon_sym_DASH, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(907), 1, - anon_sym_LBRACK, - ACTIONS(909), 1, - anon_sym_LPAREN, - ACTIONS(911), 1, + ACTIONS(895), 1, anon_sym_STAR, - ACTIONS(915), 1, + ACTIONS(899), 1, + anon_sym_not, + ACTIONS(901), 1, + anon_sym_STAR_STAR, + ACTIONS(903), 1, + anon_sym_lambda, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(917), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(919), 1, + ACTIONS(909), 1, sym_python_identifier, - STATE(868), 1, + STATE(876), 1, + sym_primary_expression, + STATE(889), 1, sym_python_string, - STATE(1384), 1, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1473), 1, - sym_primary_expression, - STATE(1504), 1, - sym_pattern, + STATE(1581), 1, + sym_expression, + STATE(1941), 1, + sym_type, + STATE(2388), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(478), 2, + ACTIONS(528), 2, anon_sym_PLUS, - anon_sym_DASH, - STATE(1394), 2, - sym_attribute, - sym_subscript, - STATE(1491), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(913), 4, + anon_sym_TILDE, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1817), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1627), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_as_pattern, + sym_conditional_expression, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -39077,87 +39732,73 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - ACTIONS(801), 15, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_COLON, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [5661] = 27, - ACTIONS(577), 1, + [5557] = 29, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(579), 1, - anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(921), 1, - anon_sym_STAR, - ACTIONS(925), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(927), 1, - anon_sym_STAR_STAR, - ACTIONS(929), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(931), 1, + ACTIONS(853), 1, + anon_sym_LPAREN, + ACTIONS(859), 1, + anon_sym_STAR, + ACTIONS(863), 1, + anon_sym_STAR_STAR, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(867), 1, anon_sym_type, - ACTIONS(935), 1, + ACTIONS(869), 1, sym_python_identifier, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + ACTIONS(911), 1, + anon_sym_RPAREN, + ACTIONS(913), 1, + anon_sym_COMMA, + STATE(893), 1, sym_primary_expression, - STATE(1193), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1578), 1, + STATE(1538), 1, sym_expression, - STATE(1928), 1, - sym_type, - STATE(2383), 1, + STATE(2173), 1, + sym_parenthesized_list_splat, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(923), 4, + STATE(2167), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(861), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1809), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1611), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -39165,7 +39806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39182,71 +39823,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [5777] = 27, - ACTIONS(274), 1, - anon_sym_STAR_STAR, - ACTIONS(465), 1, + [5677] = 27, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(530), 1, + anon_sym_DASH, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(877), 1, + ACTIONS(895), 1, anon_sym_STAR, - ACTIONS(881), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(901), 1, + anon_sym_STAR_STAR, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(889), 1, + ACTIONS(909), 1, sym_python_identifier, - STATE(868), 1, - sym_python_string, - STATE(922), 1, + STATE(876), 1, sym_primary_expression, - STATE(1260), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1654), 1, + STATE(1581), 1, sym_expression, - STATE(1921), 1, + STATE(1786), 1, sym_type, - STATE(2446), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1908), 5, + STATE(1817), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1601), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -39254,7 +39895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39271,71 +39912,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [5893] = 27, - ACTIONS(577), 1, + [5793] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(921), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(925), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(927), 1, + ACTIONS(877), 1, anon_sym_STAR_STAR, - ACTIONS(929), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(931), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(935), 1, + ACTIONS(885), 1, sym_python_identifier, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(947), 1, sym_primary_expression, - STATE(1193), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1578), 1, + STATE(1666), 1, sym_expression, - STATE(1805), 1, + STATE(1820), 1, sym_type, - STATE(2383), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(923), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1809), 5, + STATE(1924), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1611), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -39343,7 +39984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39360,73 +40001,73 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [6009] = 29, - ACTIONS(553), 1, + [5909] = 29, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(557), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(675), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(843), 1, + ACTIONS(853), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(859), 1, anon_sym_STAR, - ACTIONS(853), 1, + ACTIONS(863), 1, anon_sym_STAR_STAR, - ACTIONS(855), 1, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(857), 1, + ACTIONS(867), 1, anon_sym_type, - ACTIONS(859), 1, + ACTIONS(869), 1, sym_python_identifier, - ACTIONS(937), 1, + ACTIONS(915), 1, anon_sym_RPAREN, - ACTIONS(939), 1, + ACTIONS(917), 1, anon_sym_COMMA, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(893), 1, sym_primary_expression, - STATE(1172), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1560), 1, + STATE(1563), 1, sym_expression, - STATE(2042), 1, + STATE(2018), 1, sym_parenthesized_list_splat, - STATE(2497), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2007), 3, + STATE(2019), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(851), 4, + ACTIONS(861), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -39434,7 +40075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39451,73 +40092,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [6129] = 29, - ACTIONS(553), 1, + [6029] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(557), 1, + ACTIONS(605), 1, + anon_sym_LPAREN, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(675), 1, - anon_sym_not, - ACTIONS(677), 1, - anon_sym_lambda, - ACTIONS(843), 1, - anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(853), 1, + ACTIONS(875), 1, + anon_sym_not, + ACTIONS(877), 1, anon_sym_STAR_STAR, - ACTIONS(855), 1, + ACTIONS(879), 1, + anon_sym_lambda, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(857), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(859), 1, + ACTIONS(885), 1, sym_python_identifier, - ACTIONS(941), 1, - anon_sym_RPAREN, - ACTIONS(943), 1, - anon_sym_COMMA, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(947), 1, sym_primary_expression, - STATE(1172), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1548), 1, + STATE(1666), 1, sym_expression, - STATE(2038), 1, - sym_parenthesized_list_splat, - STATE(2497), 1, + STATE(1870), 1, + sym_type, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2036), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(851), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1924), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -39525,7 +40164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39542,51 +40181,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [6249] = 27, - ACTIONS(577), 1, + [6145] = 27, + ACTIONS(494), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(496), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(921), 1, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(925), 1, + ACTIONS(829), 1, anon_sym_not, - ACTIONS(927), 1, - anon_sym_STAR_STAR, - ACTIONS(929), 1, + ACTIONS(831), 1, anon_sym_lambda, - ACTIONS(931), 1, + ACTIONS(921), 1, + anon_sym_from, + ACTIONS(925), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(927), 1, anon_sym_type, - ACTIONS(935), 1, + ACTIONS(929), 1, sym_python_identifier, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(837), 1, sym_primary_expression, - STATE(1193), 1, + STATE(844), 1, + sym_python_string, + STATE(1133), 1, sym_list_splat_pattern, - STATE(1578), 1, + STATE(1604), 1, sym_expression, - STATE(1781), 1, - sym_type, - STATE(2383), 1, + STATE(1937), 1, + sym_expression_list, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, ACTIONS(923), 4, @@ -39594,19 +40233,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1809), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1611), 7, + ACTIONS(919), 5, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_COMMA, + sym_type_conversion, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -39614,7 +40253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39631,73 +40270,73 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [6365] = 29, - ACTIONS(553), 1, + [6261] = 29, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(557), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(675), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(843), 1, + ACTIONS(853), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(859), 1, anon_sym_STAR, - ACTIONS(853), 1, + ACTIONS(863), 1, anon_sym_STAR_STAR, - ACTIONS(855), 1, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(857), 1, + ACTIONS(867), 1, anon_sym_type, - ACTIONS(859), 1, + ACTIONS(869), 1, sym_python_identifier, - ACTIONS(945), 1, + ACTIONS(931), 1, anon_sym_RPAREN, - ACTIONS(947), 1, + ACTIONS(933), 1, anon_sym_COMMA, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(893), 1, sym_primary_expression, - STATE(1172), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1564), 1, + STATE(1546), 1, sym_expression, - STATE(2059), 1, + STATE(2189), 1, sym_parenthesized_list_splat, - STATE(2497), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2055), 3, + STATE(2190), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(851), 4, + ACTIONS(861), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -39705,7 +40344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39722,71 +40361,156 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [6485] = 27, - ACTIONS(43), 1, + [6381] = 23, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, + ACTIONS(482), 1, + anon_sym_TILDE, + ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, + sym_string_start, + ACTIONS(935), 1, + anon_sym_LBRACK, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(939), 1, + anon_sym_STAR, + ACTIONS(943), 1, + anon_sym_await, + ACTIONS(945), 1, + anon_sym_type, + ACTIONS(947), 1, + sym_python_identifier, + STATE(853), 1, + sym_python_string, + STATE(1387), 1, + sym_list_splat_pattern, + STATE(1460), 1, + sym_primary_expression, + STATE(1503), 1, + sym_pattern, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(480), 2, + anon_sym_PLUS, anon_sym_DASH, + STATE(1386), 2, + sym_attribute, + sym_subscript, + STATE(1493), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(941), 4, + anon_sym_print, + anon_sym_exec, + anon_sym_async, + anon_sym_match, + ACTIONS(490), 5, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + STATE(1278), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_generator_expression, + sym_parenthesized_expression, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_concatenated_string, + sym_await, + ACTIONS(819), 15, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_COLON, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [6489] = 27, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(89), 1, + anon_sym_not, ACTIONS(93), 1, + anon_sym_DASH, + ACTIONS(95), 1, anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(451), 1, - anon_sym_LBRACK, ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(837), 1, + ACTIONS(949), 1, anon_sym_STAR, - ACTIONS(839), 1, + ACTIONS(951), 1, anon_sym_STAR_STAR, - ACTIONS(841), 1, + ACTIONS(953), 1, sym_python_identifier, - STATE(834), 1, + STATE(833), 1, sym_python_string, - STATE(840), 1, + STATE(836), 1, sym_primary_expression, - STATE(989), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1586), 1, + STATE(1620), 1, sym_expression, - STATE(1836), 1, + STATE(1801), 1, sym_type, - STATE(2396), 1, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1799), 5, + STATE(1827), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1529), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -39794,7 +40518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39811,71 +40535,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [6601] = 27, - ACTIONS(43), 1, + [6605] = 27, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(605), 1, + anon_sym_LPAREN, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(93), 1, - anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(321), 1, - anon_sym_await, - ACTIONS(323), 1, - anon_sym_type, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(837), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(839), 1, + ACTIONS(875), 1, + anon_sym_not, + ACTIONS(877), 1, anon_sym_STAR_STAR, - ACTIONS(841), 1, + ACTIONS(879), 1, + anon_sym_lambda, + ACTIONS(881), 1, + anon_sym_await, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(885), 1, sym_python_identifier, - STATE(834), 1, - sym_python_string, - STATE(840), 1, + STATE(947), 1, sym_primary_expression, - STATE(989), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1586), 1, + STATE(1666), 1, sym_expression, - STATE(1784), 1, + STATE(1797), 1, sym_type, - STATE(2396), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1799), 5, + STATE(1924), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1529), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -39883,7 +40607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39900,71 +40624,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [6717] = 27, - ACTIONS(625), 1, - anon_sym_LBRACK, - ACTIONS(627), 1, - anon_sym_LPAREN, - ACTIONS(629), 1, + [6721] = 27, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(89), 1, + anon_sym_not, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(95), 1, + anon_sym_lambda, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(861), 1, - anon_sym_STAR, - ACTIONS(865), 1, - anon_sym_not, - ACTIONS(867), 1, - anon_sym_STAR_STAR, - ACTIONS(869), 1, - anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(875), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(949), 1, + anon_sym_STAR, + ACTIONS(951), 1, + anon_sym_STAR_STAR, + ACTIONS(953), 1, sym_python_identifier, - STATE(990), 1, - sym_primary_expression, - STATE(1003), 1, + STATE(833), 1, sym_python_string, - STATE(1347), 1, + STATE(836), 1, + sym_primary_expression, + STATE(960), 1, sym_list_splat_pattern, - STATE(1656), 1, + STATE(1620), 1, sym_expression, - STATE(1894), 1, + STATE(1862), 1, sym_type, - STATE(2419), 1, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1925), 5, + STATE(1827), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1637), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -39972,7 +40696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39989,71 +40713,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [6833] = 27, - ACTIONS(625), 1, + [6837] = 27, + ACTIONS(276), 1, + anon_sym_STAR_STAR, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(637), 1, - anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(861), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(839), 1, anon_sym_STAR, - ACTIONS(865), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(867), 1, - anon_sym_STAR_STAR, - ACTIONS(869), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(875), 1, + ACTIONS(851), 1, sym_python_identifier, - STATE(990), 1, - sym_primary_expression, - STATE(1003), 1, + STATE(853), 1, sym_python_string, - STATE(1347), 1, + STATE(939), 1, + sym_primary_expression, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1656), 1, + STATE(1639), 1, sym_expression, - STATE(1790), 1, + STATE(2047), 1, sym_type, - STATE(2419), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1925), 5, + STATE(1930), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1637), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -40061,7 +40785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40078,73 +40802,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [6949] = 29, - ACTIONS(553), 1, - anon_sym_LBRACK, - ACTIONS(557), 1, + [6953] = 27, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(89), 1, + anon_sym_not, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(95), 1, + anon_sym_lambda, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(675), 1, - anon_sym_not, - ACTIONS(677), 1, - anon_sym_lambda, - ACTIONS(843), 1, - anon_sym_LPAREN, - ACTIONS(849), 1, - anon_sym_STAR, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(855), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(857), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(859), 1, - sym_python_identifier, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, ACTIONS(949), 1, - anon_sym_RPAREN, + anon_sym_STAR, ACTIONS(951), 1, - anon_sym_COMMA, - STATE(851), 1, + anon_sym_STAR_STAR, + ACTIONS(953), 1, + sym_python_identifier, + STATE(833), 1, sym_python_string, - STATE(874), 1, + STATE(836), 1, sym_primary_expression, - STATE(1172), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1538), 1, + STATE(1620), 1, sym_expression, - STATE(2185), 1, - sym_parenthesized_list_splat, - STATE(2497), 1, + STATE(1866), 1, + sym_type, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2186), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(851), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1827), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -40152,7 +40874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40170,72 +40892,72 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [7069] = 29, - ACTIONS(553), 1, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(557), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(675), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(843), 1, + ACTIONS(853), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(859), 1, anon_sym_STAR, - ACTIONS(853), 1, + ACTIONS(863), 1, anon_sym_STAR_STAR, - ACTIONS(855), 1, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(857), 1, + ACTIONS(867), 1, anon_sym_type, - ACTIONS(859), 1, + ACTIONS(869), 1, sym_python_identifier, - ACTIONS(953), 1, - anon_sym_RPAREN, ACTIONS(955), 1, + anon_sym_RPAREN, + ACTIONS(957), 1, anon_sym_COMMA, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(893), 1, sym_primary_expression, - STATE(1172), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1565), 1, + STATE(1570), 1, sym_expression, - STATE(2215), 1, + STATE(2057), 1, sym_parenthesized_list_splat, - STATE(2497), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2208), 3, + STATE(2056), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(851), 4, + ACTIONS(861), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -40243,7 +40965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40261,70 +40983,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [7189] = 27, - ACTIONS(625), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(861), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(877), 1, anon_sym_STAR_STAR, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(875), 1, + ACTIONS(885), 1, sym_python_identifier, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1656), 1, + STATE(1666), 1, sym_expression, - STATE(1906), 1, + STATE(1956), 1, sym_type, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1925), 5, + STATE(1924), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -40332,7 +41054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40350,70 +41072,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [7305] = 27, - ACTIONS(625), 1, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(861), 1, + ACTIONS(895), 1, anon_sym_STAR, - ACTIONS(865), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(901), 1, anon_sym_STAR_STAR, - ACTIONS(869), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(875), 1, + ACTIONS(909), 1, sym_python_identifier, - STATE(990), 1, + STATE(876), 1, sym_primary_expression, - STATE(1003), 1, + STATE(889), 1, sym_python_string, - STATE(1347), 1, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1656), 1, + STATE(1581), 1, sym_expression, - STATE(1780), 1, + STATE(1784), 1, sym_type, - STATE(2419), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1925), 5, + STATE(1817), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1637), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -40421,7 +41143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40439,70 +41161,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [7421] = 27, - ACTIONS(625), 1, + ACTIONS(276), 1, + anon_sym_STAR_STAR, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(637), 1, - anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(861), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(839), 1, anon_sym_STAR, - ACTIONS(865), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(867), 1, - anon_sym_STAR_STAR, - ACTIONS(869), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(875), 1, + ACTIONS(851), 1, sym_python_identifier, - STATE(990), 1, - sym_primary_expression, - STATE(1003), 1, + STATE(853), 1, sym_python_string, - STATE(1347), 1, + STATE(939), 1, + sym_primary_expression, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1656), 1, + STATE(1639), 1, sym_expression, - STATE(1857), 1, + STATE(2108), 1, sym_type, - STATE(2419), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1925), 5, + STATE(1930), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1637), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -40510,7 +41232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40528,70 +41250,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [7537] = 27, - ACTIONS(577), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(921), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(925), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(927), 1, + ACTIONS(877), 1, anon_sym_STAR_STAR, - ACTIONS(929), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(931), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(935), 1, + ACTIONS(885), 1, sym_python_identifier, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(947), 1, sym_primary_expression, - STATE(1193), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1578), 1, + STATE(1666), 1, sym_expression, - STATE(1783), 1, + STATE(1839), 1, sym_type, - STATE(2383), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(923), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1809), 5, + STATE(1924), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1611), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -40599,7 +41321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40616,71 +41338,74 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [7653] = 27, - ACTIONS(625), 1, + [7653] = 30, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(627), 1, - anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(861), 1, + ACTIONS(725), 1, anon_sym_STAR, - ACTIONS(865), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(867), 1, - anon_sym_STAR_STAR, - ACTIONS(869), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(733), 1, + anon_sym_yield, + ACTIONS(853), 1, + anon_sym_LPAREN, + ACTIONS(959), 1, + anon_sym_RPAREN, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(875), 1, + ACTIONS(967), 1, sym_python_identifier, - STATE(990), 1, + STATE(893), 1, sym_primary_expression, - STATE(1003), 1, + STATE(894), 1, sym_python_string, - STATE(1347), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1656), 1, + STATE(1551), 1, sym_expression, - STATE(1950), 1, - sym_type, - STATE(2419), 1, + STATE(2154), 1, + sym_with_item, + STATE(2226), 1, + sym_yield, + STATE(2421), 1, + sym__collection_elements, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + STATE(2212), 2, + sym_parenthesized_list_splat, + sym_list_splat, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1925), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1637), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -40688,7 +41413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40705,86 +41430,63 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [7769] = 30, - ACTIONS(553), 1, - anon_sym_LBRACK, - ACTIONS(557), 1, + [7775] = 23, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(482), 1, + anon_sym_TILDE, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(671), 1, - anon_sym_STAR, - ACTIONS(675), 1, - anon_sym_not, - ACTIONS(677), 1, - anon_sym_lambda, - ACTIONS(679), 1, - anon_sym_yield, - ACTIONS(843), 1, + ACTIONS(935), 1, + anon_sym_LBRACK, + ACTIONS(937), 1, anon_sym_LPAREN, - ACTIONS(957), 1, - anon_sym_RPAREN, - ACTIONS(961), 1, + ACTIONS(939), 1, + anon_sym_STAR, + ACTIONS(943), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(945), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(947), 1, sym_python_identifier, - STATE(851), 1, + STATE(853), 1, sym_python_string, - STATE(874), 1, - sym_primary_expression, - STATE(1172), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1550), 1, - sym_expression, - STATE(2019), 1, - sym_with_item, - STATE(2221), 1, - sym_yield, - STATE(2415), 1, - sym__collection_elements, - STATE(2497), 1, - sym__named_expression_lhs, + STATE(1460), 1, + sym_primary_expression, + STATE(1503), 1, + sym_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(480), 2, anon_sym_PLUS, - anon_sym_TILDE, - STATE(2133), 2, - sym_parenthesized_list_splat, - sym_list_splat, - ACTIONS(959), 4, + anon_sym_DASH, + STATE(1386), 2, + sym_attribute, + sym_subscript, + STATE(1493), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(941), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_as_pattern, - sym_conditional_expression, - STATE(1223), 16, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -40797,71 +41499,87 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [7891] = 27, - ACTIONS(274), 1, + ACTIONS(803), 15, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_COLON, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [7883] = 27, + ACTIONS(276), 1, anon_sym_STAR_STAR, - ACTIONS(465), 1, - anon_sym_LBRACK, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(877), 1, + ACTIONS(839), 1, anon_sym_STAR, - ACTIONS(881), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(889), 1, + ACTIONS(851), 1, sym_python_identifier, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(922), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1654), 1, + STATE(1639), 1, sym_expression, - STATE(2058), 1, + STATE(1916), 1, sym_type, - STATE(2446), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1908), 5, + STATE(1930), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -40869,7 +41587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40886,73 +41604,73 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [8007] = 29, - ACTIONS(553), 1, + [7999] = 29, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(557), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(675), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(843), 1, + ACTIONS(853), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(859), 1, anon_sym_STAR, - ACTIONS(853), 1, + ACTIONS(863), 1, anon_sym_STAR_STAR, - ACTIONS(855), 1, + ACTIONS(865), 1, anon_sym_await, - ACTIONS(857), 1, + ACTIONS(867), 1, anon_sym_type, - ACTIONS(859), 1, + ACTIONS(869), 1, sym_python_identifier, - ACTIONS(967), 1, - anon_sym_RPAREN, ACTIONS(969), 1, + anon_sym_RPAREN, + ACTIONS(971), 1, anon_sym_COMMA, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(893), 1, sym_primary_expression, - STATE(1172), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1556), 1, + STATE(1559), 1, sym_expression, - STATE(2065), 1, + STATE(2220), 1, sym_parenthesized_list_splat, - STATE(2497), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2070), 3, + STATE(2217), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(851), 4, + ACTIONS(861), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -40960,7 +41678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40977,63 +41695,83 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [8127] = 23, - ACTIONS(469), 1, + [8119] = 27, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(605), 1, + anon_sym_LPAREN, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(480), 1, - anon_sym_TILDE, - ACTIONS(482), 1, + ACTIONS(615), 1, + anon_sym_DASH, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(907), 1, - anon_sym_LBRACK, - ACTIONS(909), 1, - anon_sym_LPAREN, - ACTIONS(911), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(915), 1, + ACTIONS(875), 1, + anon_sym_not, + ACTIONS(877), 1, + anon_sym_STAR_STAR, + ACTIONS(879), 1, + anon_sym_lambda, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(917), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(919), 1, + ACTIONS(885), 1, sym_python_identifier, - STATE(868), 1, + STATE(947), 1, + sym_primary_expression, + STATE(952), 1, sym_python_string, - STATE(1384), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1473), 1, - sym_primary_expression, - STATE(1504), 1, - sym_pattern, + STATE(1666), 1, + sym_expression, + STATE(1959), 1, + sym_type, + STATE(2425), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(478), 2, + ACTIONS(613), 2, anon_sym_PLUS, - anon_sym_DASH, - STATE(1394), 2, - sym_attribute, - sym_subscript, - STATE(1491), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(913), 4, + anon_sym_TILDE, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1924), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1654), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_as_pattern, + sym_conditional_expression, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -41046,87 +41784,72 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - ACTIONS(817), 15, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_COLON, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [8235] = 28, - ACTIONS(577), 1, + [8235] = 29, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(725), 1, + anon_sym_STAR, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(733), 1, + anon_sym_yield, + ACTIONS(853), 1, anon_sym_LPAREN, - ACTIONS(973), 1, - anon_sym_RPAREN, - ACTIONS(975), 1, - anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(967), 1, sym_python_identifier, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + ACTIONS(973), 1, + anon_sym_RPAREN, + STATE(893), 1, sym_primary_expression, - STATE(1193), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1575), 1, sym_expression, - STATE(2290), 1, - sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2132), 1, + sym_yield, + STATE(2494), 1, + sym__collection_elements, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2212), 2, + sym_parenthesized_list_splat, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -41134,7 +41857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41151,71 +41874,73 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [8352] = 28, - ACTIONS(577), 1, + [8354] = 30, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(725), 1, + anon_sym_STAR, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(733), 1, + anon_sym_yield, + ACTIONS(853), 1, anon_sym_LPAREN, - ACTIONS(975), 1, - anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(967), 1, sym_python_identifier, - ACTIONS(985), 1, + ACTIONS(975), 1, anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(893), 1, sym_primary_expression, - STATE(1193), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1571), 1, sym_expression, - STATE(2290), 1, + STATE(2090), 1, + sym_yield, + STATE(2208), 1, sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2215), 1, + sym_list_splat, + STATE(2385), 1, + sym__collection_elements, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -41223,7 +41948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41240,71 +41965,72 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [8469] = 28, - ACTIONS(577), 1, + [8475] = 29, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(725), 1, + anon_sym_STAR, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(733), 1, + anon_sym_yield, + ACTIONS(853), 1, anon_sym_LPAREN, - ACTIONS(975), 1, - anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(967), 1, sym_python_identifier, - ACTIONS(987), 1, + ACTIONS(977), 1, anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(893), 1, sym_primary_expression, - STATE(1193), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1567), 1, sym_expression, - STATE(2290), 1, - sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2082), 1, + sym_yield, + STATE(2535), 1, + sym__collection_elements, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2212), 2, + sym_parenthesized_list_splat, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -41312,7 +42038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41329,71 +42055,72 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [8586] = 28, - ACTIONS(577), 1, + [8594] = 29, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(725), 1, + anon_sym_STAR, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(733), 1, + anon_sym_yield, + ACTIONS(853), 1, anon_sym_LPAREN, - ACTIONS(975), 1, - anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(967), 1, sym_python_identifier, - ACTIONS(989), 1, + ACTIONS(979), 1, anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(893), 1, sym_primary_expression, - STATE(1193), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1541), 1, sym_expression, - STATE(2290), 1, - sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2134), 1, + sym_yield, + STATE(2490), 1, + sym__collection_elements, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2212), 2, + sym_parenthesized_list_splat, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -41401,7 +42128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41418,65 +42145,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [8703] = 28, - ACTIONS(601), 1, + [8713] = 30, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(605), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(693), 1, + ACTIONS(725), 1, anon_sym_STAR, - ACTIONS(697), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(701), 1, + ACTIONS(733), 1, anon_sym_yield, - ACTIONS(991), 1, - anon_sym_RBRACK, - ACTIONS(993), 1, + ACTIONS(853), 1, anon_sym_LPAREN, - ACTIONS(997), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(1001), 1, + ACTIONS(967), 1, sym_python_identifier, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + ACTIONS(977), 1, + anon_sym_RPAREN, + STATE(893), 1, sym_primary_expression, - STATE(1163), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1571), 1, + STATE(1567), 1, sym_expression, - STATE(2418), 1, + STATE(2079), 1, + sym_list_splat, + STATE(2082), 1, + sym_yield, + STATE(2084), 1, + sym_parenthesized_list_splat, + STATE(2535), 1, sym__collection_elements, - STATE(2557), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2077), 3, - sym_parenthesized_list_splat, - sym_yield, - sym_list_splat, - ACTIONS(995), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, @@ -41490,7 +42219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41507,71 +42236,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [8820] = 28, - ACTIONS(577), 1, + [8834] = 28, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(673), 1, + anon_sym_STAR, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(679), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(681), 1, + anon_sym_yield, + ACTIONS(981), 1, + anon_sym_RBRACK, + ACTIONS(983), 1, anon_sym_LPAREN, - ACTIONS(975), 1, - anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(987), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(991), 1, sym_python_identifier, - ACTIONS(1003), 1, - anon_sym_RPAREN, - STATE(850), 1, + STATE(859), 1, sym_python_string, - STATE(883), 1, + STATE(860), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1547), 1, sym_expression, - STATE(2290), 1, - sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2386), 1, + sym__collection_elements, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2131), 3, + sym_parenthesized_list_splat, + sym_yield, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(985), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -41579,7 +42308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41596,72 +42325,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [8937] = 29, - ACTIONS(553), 1, + [8951] = 28, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(557), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(671), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(675), 1, - anon_sym_not, ACTIONS(677), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(679), 1, + anon_sym_lambda, + ACTIONS(681), 1, anon_sym_yield, - ACTIONS(843), 1, + ACTIONS(983), 1, anon_sym_LPAREN, - ACTIONS(961), 1, + ACTIONS(987), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(991), 1, sym_python_identifier, - ACTIONS(1005), 1, - anon_sym_RPAREN, - STATE(851), 1, + ACTIONS(993), 1, + anon_sym_RBRACK, + STATE(859), 1, sym_python_string, - STATE(874), 1, + STATE(860), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1562), 1, + STATE(1574), 1, sym_expression, - STATE(2012), 1, - sym_yield, - STATE(2347), 1, - sym__collection_elements, - STATE(2497), 1, + STATE(2482), 1, sym__named_expression_lhs, + STATE(2538), 1, + sym__collection_elements, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2133), 2, + STATE(2131), 3, sym_parenthesized_list_splat, + sym_yield, sym_list_splat, - ACTIONS(959), 4, + ACTIONS(985), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -41669,7 +42397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41686,71 +42414,72 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [9056] = 28, - ACTIONS(577), 1, + [9068] = 29, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(725), 1, + anon_sym_STAR, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(733), 1, + anon_sym_yield, + ACTIONS(853), 1, anon_sym_LPAREN, - ACTIONS(975), 1, - anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(967), 1, sym_python_identifier, - ACTIONS(1007), 1, + ACTIONS(975), 1, anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(893), 1, sym_primary_expression, - STATE(1193), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1571), 1, sym_expression, - STATE(2290), 1, - sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2090), 1, + sym_yield, + STATE(2385), 1, + sym__collection_elements, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2212), 2, + sym_parenthesized_list_splat, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -41758,7 +42487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41775,71 +42504,73 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [9173] = 28, - ACTIONS(577), 1, + [9187] = 30, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(725), 1, + anon_sym_STAR, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(733), 1, + anon_sym_yield, + ACTIONS(853), 1, anon_sym_LPAREN, - ACTIONS(975), 1, - anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(967), 1, sym_python_identifier, - ACTIONS(1009), 1, + ACTIONS(995), 1, anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(893), 1, sym_primary_expression, - STATE(1193), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1544), 1, sym_expression, - STATE(2290), 1, + STATE(2095), 1, sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2096), 1, + sym_list_splat, + STATE(2165), 1, + sym_yield, + STATE(2465), 1, + sym__collection_elements, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -41847,7 +42578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41864,71 +42595,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [9290] = 28, - ACTIONS(577), 1, + [9308] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(853), 1, + ACTIONS(863), 1, anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(999), 1, + anon_sym_RPAREN, + ACTIONS(1001), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(1009), 1, sym_python_identifier, - ACTIONS(1011), 1, - anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(876), 1, sym_primary_expression, - STATE(1193), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1819), 1, sym_expression, - STATE(2290), 1, + STATE(2278), 1, sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2286), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -41936,7 +42667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41953,71 +42684,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [9407] = 28, - ACTIONS(577), 1, + [9425] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(853), 1, + ACTIONS(863), 1, anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(1001), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(1009), 1, sym_python_identifier, - ACTIONS(1013), 1, + ACTIONS(1011), 1, anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(876), 1, sym_primary_expression, - STATE(1193), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1819), 1, sym_expression, - STATE(2290), 1, + STATE(2278), 1, sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2286), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42025,7 +42756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42042,71 +42773,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [9524] = 28, - ACTIONS(577), 1, + [9542] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(853), 1, + ACTIONS(863), 1, anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(1001), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(1009), 1, sym_python_identifier, - ACTIONS(1015), 1, + ACTIONS(1013), 1, anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(876), 1, sym_primary_expression, - STATE(1193), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1819), 1, sym_expression, - STATE(2290), 1, + STATE(2278), 1, sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2286), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42114,7 +42845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42131,71 +42862,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [9641] = 28, - ACTIONS(577), 1, + [9659] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(853), 1, + ACTIONS(863), 1, anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(1001), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(1009), 1, sym_python_identifier, - ACTIONS(1017), 1, + ACTIONS(1015), 1, anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(876), 1, sym_primary_expression, - STATE(1193), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1819), 1, sym_expression, - STATE(2290), 1, + STATE(2278), 1, sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2286), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42203,7 +42934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42220,73 +42951,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [9758] = 30, - ACTIONS(553), 1, + [9776] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(557), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(671), 1, - anon_sym_STAR, - ACTIONS(675), 1, + ACTIONS(863), 1, + anon_sym_STAR_STAR, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(679), 1, - anon_sym_yield, - ACTIONS(843), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(961), 1, + ACTIONS(1001), 1, + anon_sym_STAR, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(1009), 1, sym_python_identifier, - ACTIONS(1005), 1, + ACTIONS(1017), 1, anon_sym_RPAREN, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(876), 1, sym_primary_expression, - STATE(1172), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1562), 1, + STATE(1819), 1, sym_expression, - STATE(2012), 1, - sym_yield, - STATE(2051), 1, - sym_list_splat, - STATE(2052), 1, + STATE(2278), 1, sym_parenthesized_list_splat, - STATE(2347), 1, - sym__collection_elements, - STATE(2497), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(959), 4, + STATE(2286), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42294,7 +43023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42311,73 +43040,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [9879] = 30, - ACTIONS(553), 1, + [9893] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(557), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(671), 1, - anon_sym_STAR, - ACTIONS(675), 1, + ACTIONS(863), 1, + anon_sym_STAR_STAR, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(679), 1, - anon_sym_yield, - ACTIONS(843), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(961), 1, + ACTIONS(1001), 1, + anon_sym_STAR, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(1009), 1, sym_python_identifier, ACTIONS(1019), 1, anon_sym_RPAREN, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(876), 1, sym_primary_expression, - STATE(1172), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1544), 1, + STATE(1819), 1, sym_expression, - STATE(2090), 1, - sym_yield, - STATE(2198), 1, + STATE(2278), 1, sym_parenthesized_list_splat, - STATE(2203), 1, - sym_list_splat, - STATE(2380), 1, - sym__collection_elements, - STATE(2497), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(959), 4, + STATE(2286), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42385,7 +43112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42402,71 +43129,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [10000] = 28, - ACTIONS(577), 1, + [10010] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(853), 1, + ACTIONS(863), 1, anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(1001), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(1009), 1, sym_python_identifier, ACTIONS(1021), 1, anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(876), 1, sym_primary_expression, - STATE(1193), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1819), 1, sym_expression, - STATE(2290), 1, + STATE(2278), 1, sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2286), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42474,7 +43201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42491,72 +43218,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [10117] = 29, - ACTIONS(553), 1, + [10127] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(557), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(671), 1, - anon_sym_STAR, - ACTIONS(675), 1, + ACTIONS(863), 1, + anon_sym_STAR_STAR, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(679), 1, - anon_sym_yield, - ACTIONS(843), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(961), 1, + ACTIONS(1001), 1, + anon_sym_STAR, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(1009), 1, sym_python_identifier, ACTIONS(1023), 1, anon_sym_RPAREN, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(876), 1, sym_primary_expression, - STATE(1172), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1547), 1, + STATE(1819), 1, sym_expression, - STATE(2061), 1, - sym_yield, - STATE(2497), 1, + STATE(2278), 1, + sym_parenthesized_list_splat, + STATE(2388), 1, sym__named_expression_lhs, - STATE(2554), 1, - sym__collection_elements, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2133), 2, - sym_parenthesized_list_splat, + STATE(2286), 3, sym_list_splat, - ACTIONS(959), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42564,7 +43290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42581,71 +43307,72 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [10236] = 28, - ACTIONS(577), 1, + [10244] = 29, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(725), 1, + anon_sym_STAR, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(733), 1, + anon_sym_yield, + ACTIONS(853), 1, anon_sym_LPAREN, - ACTIONS(975), 1, - anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(959), 1, + anon_sym_RPAREN, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(967), 1, sym_python_identifier, - ACTIONS(1025), 1, - anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(893), 1, sym_primary_expression, - STATE(1193), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1548), 1, sym_expression, - STATE(2290), 1, - sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2226), 1, + sym_yield, + STATE(2421), 1, + sym__collection_elements, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2212), 2, + sym_parenthesized_list_splat, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42653,7 +43380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42670,71 +43397,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [10353] = 28, - ACTIONS(577), 1, + [10363] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(853), 1, + ACTIONS(863), 1, anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(1001), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(1009), 1, sym_python_identifier, - ACTIONS(1027), 1, + ACTIONS(1025), 1, anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(876), 1, sym_primary_expression, - STATE(1193), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1819), 1, sym_expression, - STATE(2290), 1, + STATE(2278), 1, sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2286), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42742,7 +43469,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42759,71 +43486,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [10470] = 28, - ACTIONS(577), 1, + [10480] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(853), 1, + ACTIONS(863), 1, anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(1001), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(1009), 1, sym_python_identifier, - ACTIONS(1029), 1, + ACTIONS(1027), 1, anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(876), 1, sym_primary_expression, - STATE(1193), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1819), 1, sym_expression, - STATE(2290), 1, + STATE(2278), 1, sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2286), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42831,7 +43558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42848,71 +43575,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [10587] = 28, - ACTIONS(577), 1, + [10597] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(853), 1, + ACTIONS(863), 1, anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(1001), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(1009), 1, sym_python_identifier, - ACTIONS(1031), 1, + ACTIONS(1029), 1, anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(876), 1, sym_primary_expression, - STATE(1193), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1819), 1, sym_expression, - STATE(2290), 1, + STATE(2278), 1, sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2286), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42920,7 +43647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42937,71 +43664,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [10704] = 28, - ACTIONS(577), 1, + [10714] = 28, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(673), 1, + anon_sym_STAR, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(679), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(681), 1, + anon_sym_yield, + ACTIONS(983), 1, anon_sym_LPAREN, - ACTIONS(975), 1, - anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(987), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(991), 1, sym_python_identifier, - ACTIONS(1033), 1, - anon_sym_RPAREN, - STATE(850), 1, + ACTIONS(1031), 1, + anon_sym_RBRACK, + STATE(859), 1, sym_python_string, - STATE(883), 1, + STATE(860), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1554), 1, sym_expression, - STATE(2290), 1, - sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2482), 1, sym__named_expression_lhs, + STATE(2487), 1, + sym__collection_elements, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2131), 3, + sym_parenthesized_list_splat, + sym_yield, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(985), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43009,7 +43736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43026,71 +43753,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [10821] = 28, - ACTIONS(601), 1, + [10831] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(605), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(693), 1, - anon_sym_STAR, - ACTIONS(697), 1, + ACTIONS(863), 1, + anon_sym_STAR_STAR, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(701), 1, - anon_sym_yield, - ACTIONS(993), 1, - anon_sym_LPAREN, ACTIONS(997), 1, + anon_sym_LPAREN, + ACTIONS(1001), 1, + anon_sym_STAR, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(1001), 1, + ACTIONS(1009), 1, sym_python_identifier, - ACTIONS(1035), 1, - anon_sym_RBRACK, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + ACTIONS(1033), 1, + anon_sym_RPAREN, + STATE(876), 1, sym_primary_expression, - STATE(1163), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1576), 1, + STATE(1819), 1, sym_expression, - STATE(2488), 1, - sym__collection_elements, - STATE(2557), 1, + STATE(2278), 1, + sym_parenthesized_list_splat, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2077), 3, - sym_parenthesized_list_splat, - sym_yield, + STATE(2286), 3, sym_list_splat, - ACTIONS(995), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43098,7 +43825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43115,71 +43842,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [10938] = 28, - ACTIONS(601), 1, + [10948] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(605), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(693), 1, - anon_sym_STAR, - ACTIONS(697), 1, + ACTIONS(863), 1, + anon_sym_STAR_STAR, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(701), 1, - anon_sym_yield, - ACTIONS(993), 1, - anon_sym_LPAREN, ACTIONS(997), 1, + anon_sym_LPAREN, + ACTIONS(1001), 1, + anon_sym_STAR, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(1001), 1, + ACTIONS(1009), 1, sym_python_identifier, - ACTIONS(1037), 1, - anon_sym_RBRACK, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + ACTIONS(1035), 1, + anon_sym_RPAREN, + STATE(876), 1, sym_primary_expression, - STATE(1163), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1553), 1, + STATE(1819), 1, sym_expression, - STATE(2453), 1, - sym__collection_elements, - STATE(2557), 1, + STATE(2278), 1, + sym_parenthesized_list_splat, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2077), 3, - sym_parenthesized_list_splat, - sym_yield, + STATE(2286), 3, sym_list_splat, - ACTIONS(995), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43187,7 +43914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43204,72 +43931,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [11055] = 29, - ACTIONS(553), 1, + [11065] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(557), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(671), 1, - anon_sym_STAR, - ACTIONS(675), 1, + ACTIONS(863), 1, + anon_sym_STAR_STAR, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(679), 1, - anon_sym_yield, - ACTIONS(843), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(961), 1, + ACTIONS(1001), 1, + anon_sym_STAR, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(1009), 1, sym_python_identifier, - ACTIONS(1039), 1, + ACTIONS(1037), 1, anon_sym_RPAREN, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(876), 1, sym_primary_expression, - STATE(1172), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1559), 1, + STATE(1819), 1, sym_expression, - STATE(2079), 1, - sym_yield, - STATE(2486), 1, - sym__collection_elements, - STATE(2497), 1, + STATE(2278), 1, + sym_parenthesized_list_splat, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2133), 2, - sym_parenthesized_list_splat, + STATE(2286), 3, sym_list_splat, - ACTIONS(959), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43277,7 +44003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43294,71 +44020,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [11174] = 28, - ACTIONS(577), 1, + [11182] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(853), 1, + ACTIONS(863), 1, anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(1001), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(1009), 1, sym_python_identifier, - ACTIONS(1041), 1, + ACTIONS(1039), 1, anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(876), 1, sym_primary_expression, - STATE(1193), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1819), 1, sym_expression, - STATE(2290), 1, + STATE(2278), 1, sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2286), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43366,7 +44092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43383,71 +44109,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [11291] = 28, - ACTIONS(601), 1, + [11299] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(605), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(693), 1, - anon_sym_STAR, - ACTIONS(697), 1, + ACTIONS(863), 1, + anon_sym_STAR_STAR, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(701), 1, - anon_sym_yield, - ACTIONS(993), 1, - anon_sym_LPAREN, ACTIONS(997), 1, + anon_sym_LPAREN, + ACTIONS(1001), 1, + anon_sym_STAR, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(1001), 1, + ACTIONS(1009), 1, sym_python_identifier, - ACTIONS(1043), 1, - anon_sym_RBRACK, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + ACTIONS(1041), 1, + anon_sym_RPAREN, + STATE(876), 1, sym_primary_expression, - STATE(1163), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1577), 1, + STATE(1819), 1, sym_expression, - STATE(2381), 1, - sym__collection_elements, - STATE(2557), 1, + STATE(2278), 1, + sym_parenthesized_list_splat, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2077), 3, - sym_parenthesized_list_splat, - sym_yield, + STATE(2286), 3, sym_list_splat, - ACTIONS(995), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43455,7 +44181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43472,72 +44198,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [11408] = 29, - ACTIONS(553), 1, + [11416] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(557), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(671), 1, - anon_sym_STAR, - ACTIONS(675), 1, + ACTIONS(863), 1, + anon_sym_STAR_STAR, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(679), 1, - anon_sym_yield, - ACTIONS(843), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(961), 1, + ACTIONS(1001), 1, + anon_sym_STAR, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(1009), 1, sym_python_identifier, - ACTIONS(1045), 1, + ACTIONS(1043), 1, anon_sym_RPAREN, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(876), 1, sym_primary_expression, - STATE(1172), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1567), 1, + STATE(1819), 1, sym_expression, - STATE(2078), 1, - sym_yield, - STATE(2489), 1, - sym__collection_elements, - STATE(2497), 1, + STATE(2278), 1, + sym_parenthesized_list_splat, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2133), 2, - sym_parenthesized_list_splat, + STATE(2286), 3, sym_list_splat, - ACTIONS(959), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43545,7 +44270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43562,73 +44287,73 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [11527] = 30, - ACTIONS(553), 1, + [11533] = 30, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(557), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(671), 1, + ACTIONS(725), 1, anon_sym_STAR, - ACTIONS(675), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(679), 1, + ACTIONS(733), 1, anon_sym_yield, - ACTIONS(843), 1, + ACTIONS(853), 1, anon_sym_LPAREN, - ACTIONS(961), 1, - anon_sym_await, ACTIONS(963), 1, - anon_sym_type, + anon_sym_await, ACTIONS(965), 1, + anon_sym_type, + ACTIONS(967), 1, sym_python_identifier, - ACTIONS(1039), 1, + ACTIONS(1045), 1, anon_sym_RPAREN, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(893), 1, sym_primary_expression, - STATE(1172), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1559), 1, + STATE(1542), 1, sym_expression, - STATE(2079), 1, + STATE(2025), 1, sym_yield, - STATE(2091), 1, - sym_parenthesized_list_splat, - STATE(2092), 1, + STATE(2079), 1, sym_list_splat, - STATE(2486), 1, + STATE(2084), 1, + sym_parenthesized_list_splat, + STATE(2351), 1, sym__collection_elements, - STATE(2497), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(959), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43636,7 +44361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43653,71 +44378,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [11648] = 28, - ACTIONS(577), 1, + [11654] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(853), 1, + ACTIONS(863), 1, anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(1001), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(1009), 1, sym_python_identifier, ACTIONS(1047), 1, anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(876), 1, sym_primary_expression, - STATE(1193), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1819), 1, sym_expression, - STATE(2290), 1, + STATE(2278), 1, sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2286), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43725,7 +44450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43742,71 +44467,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [11765] = 28, - ACTIONS(577), 1, + [11771] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(853), 1, + ACTIONS(863), 1, anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(1001), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(1009), 1, sym_python_identifier, ACTIONS(1049), 1, anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(876), 1, sym_primary_expression, - STATE(1193), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1819), 1, sym_expression, - STATE(2290), 1, + STATE(2278), 1, sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2286), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43814,7 +44539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43831,71 +44556,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [11882] = 28, - ACTIONS(577), 1, + [11888] = 28, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(673), 1, + anon_sym_STAR, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(679), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(681), 1, + anon_sym_yield, + ACTIONS(983), 1, anon_sym_LPAREN, - ACTIONS(975), 1, - anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(987), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(991), 1, sym_python_identifier, ACTIONS(1051), 1, - anon_sym_RPAREN, - STATE(850), 1, + anon_sym_RBRACK, + STATE(859), 1, sym_python_string, - STATE(883), 1, + STATE(860), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1557), 1, sym_expression, - STATE(2290), 1, - sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2369), 1, + sym__collection_elements, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2131), 3, + sym_parenthesized_list_splat, + sym_yield, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(985), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43903,7 +44628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43920,71 +44645,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [11999] = 28, - ACTIONS(577), 1, + [12005] = 28, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(673), 1, + anon_sym_STAR, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(679), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(681), 1, + anon_sym_yield, + ACTIONS(983), 1, anon_sym_LPAREN, - ACTIONS(975), 1, - anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(987), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(991), 1, sym_python_identifier, ACTIONS(1053), 1, - anon_sym_RPAREN, - STATE(850), 1, + anon_sym_RBRACK, + STATE(859), 1, sym_python_string, - STATE(883), 1, + STATE(860), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1576), 1, sym_expression, - STATE(2290), 1, - sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2466), 1, + sym__collection_elements, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2131), 3, + sym_parenthesized_list_splat, + sym_yield, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(985), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43992,7 +44717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44009,71 +44734,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [12116] = 28, - ACTIONS(577), 1, + [12122] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(853), 1, + ACTIONS(863), 1, anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(1001), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(1009), 1, sym_python_identifier, ACTIONS(1055), 1, anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(876), 1, sym_primary_expression, - STATE(1193), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1819), 1, sym_expression, - STATE(2290), 1, + STATE(2278), 1, sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2286), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -44081,7 +44806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44098,73 +44823,72 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [12233] = 30, - ACTIONS(553), 1, + [12239] = 29, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(557), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(671), 1, + ACTIONS(725), 1, anon_sym_STAR, - ACTIONS(675), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(679), 1, + ACTIONS(733), 1, anon_sym_yield, - ACTIONS(843), 1, + ACTIONS(853), 1, anon_sym_LPAREN, - ACTIONS(961), 1, - anon_sym_await, ACTIONS(963), 1, - anon_sym_type, + anon_sym_await, ACTIONS(965), 1, + anon_sym_type, + ACTIONS(967), 1, sym_python_identifier, - ACTIONS(1023), 1, + ACTIONS(995), 1, anon_sym_RPAREN, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(893), 1, sym_primary_expression, - STATE(1172), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1547), 1, + STATE(1544), 1, sym_expression, - STATE(2061), 1, + STATE(2165), 1, sym_yield, - STATE(2198), 1, - sym_parenthesized_list_splat, - STATE(2203), 1, - sym_list_splat, - STATE(2497), 1, - sym__named_expression_lhs, - STATE(2554), 1, + STATE(2465), 1, sym__collection_elements, + STATE(2543), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(959), 4, + STATE(2212), 2, + sym_parenthesized_list_splat, + sym_list_splat, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -44172,7 +44896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44189,72 +44913,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [12354] = 29, - ACTIONS(553), 1, + [12358] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(557), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(671), 1, - anon_sym_STAR, - ACTIONS(675), 1, + ACTIONS(863), 1, + anon_sym_STAR_STAR, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(679), 1, - anon_sym_yield, - ACTIONS(843), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(961), 1, + ACTIONS(1001), 1, + anon_sym_STAR, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(1009), 1, sym_python_identifier, ACTIONS(1057), 1, anon_sym_RPAREN, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(876), 1, sym_primary_expression, - STATE(1172), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1552), 1, + STATE(1819), 1, sym_expression, - STATE(2201), 1, - sym_yield, - STATE(2400), 1, - sym__collection_elements, - STATE(2497), 1, + STATE(2278), 1, + sym_parenthesized_list_splat, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2133), 2, - sym_parenthesized_list_splat, + STATE(2286), 3, sym_list_splat, - ACTIONS(959), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -44262,7 +44985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44279,71 +45002,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [12473] = 28, - ACTIONS(601), 1, + [12475] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(605), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(693), 1, - anon_sym_STAR, - ACTIONS(697), 1, + ACTIONS(863), 1, + anon_sym_STAR_STAR, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(701), 1, - anon_sym_yield, - ACTIONS(993), 1, - anon_sym_LPAREN, ACTIONS(997), 1, + anon_sym_LPAREN, + ACTIONS(1001), 1, + anon_sym_STAR, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(1001), 1, + ACTIONS(1009), 1, sym_python_identifier, ACTIONS(1059), 1, - anon_sym_RBRACK, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + anon_sym_RPAREN, + STATE(876), 1, sym_primary_expression, - STATE(1163), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1545), 1, + STATE(1819), 1, sym_expression, - STATE(2398), 1, - sym__collection_elements, - STATE(2557), 1, + STATE(2278), 1, + sym_parenthesized_list_splat, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2077), 3, - sym_parenthesized_list_splat, - sym_yield, + STATE(2286), 3, sym_list_splat, - ACTIONS(995), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -44351,7 +45074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44368,71 +45091,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [12590] = 28, - ACTIONS(577), 1, + [12592] = 28, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(673), 1, + anon_sym_STAR, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(679), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(681), 1, + anon_sym_yield, + ACTIONS(983), 1, anon_sym_LPAREN, - ACTIONS(975), 1, - anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(987), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(991), 1, sym_python_identifier, ACTIONS(1061), 1, - anon_sym_RPAREN, - STATE(850), 1, + anon_sym_RBRACK, + STATE(859), 1, sym_python_string, - STATE(883), 1, + STATE(860), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1540), 1, sym_expression, - STATE(2290), 1, - sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2482), 1, sym__named_expression_lhs, + STATE(2492), 1, + sym__collection_elements, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2131), 3, + sym_parenthesized_list_splat, + sym_yield, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(985), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -44440,7 +45163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44457,71 +45180,72 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [12707] = 28, - ACTIONS(577), 1, + [12709] = 29, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(725), 1, + anon_sym_STAR, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(733), 1, + anon_sym_yield, + ACTIONS(853), 1, anon_sym_LPAREN, - ACTIONS(975), 1, - anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(967), 1, sym_python_identifier, ACTIONS(1063), 1, anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(893), 1, sym_primary_expression, - STATE(1193), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1561), 1, sym_expression, - STATE(2290), 1, - sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2191), 1, + sym_yield, + STATE(2406), 1, + sym__collection_elements, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2212), 2, + sym_parenthesized_list_splat, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -44529,7 +45253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44546,71 +45270,72 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [12824] = 28, - ACTIONS(577), 1, + [12828] = 29, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(725), 1, + anon_sym_STAR, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(733), 1, + anon_sym_yield, + ACTIONS(853), 1, anon_sym_LPAREN, - ACTIONS(975), 1, - anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(967), 1, sym_python_identifier, - ACTIONS(1065), 1, + ACTIONS(1045), 1, anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(893), 1, sym_primary_expression, - STATE(1193), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1542), 1, sym_expression, - STATE(2290), 1, - sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2025), 1, + sym_yield, + STATE(2351), 1, + sym__collection_elements, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2212), 2, + sym_parenthesized_list_splat, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -44618,7 +45343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44635,71 +45360,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [12941] = 28, - ACTIONS(577), 1, + [12947] = 28, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(673), 1, + anon_sym_STAR, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(679), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(681), 1, + anon_sym_yield, + ACTIONS(983), 1, anon_sym_LPAREN, - ACTIONS(975), 1, - anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(987), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(991), 1, sym_python_identifier, - ACTIONS(1067), 1, - anon_sym_RPAREN, - STATE(850), 1, + ACTIONS(1065), 1, + anon_sym_RBRACK, + STATE(859), 1, sym_python_string, - STATE(883), 1, + STATE(860), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1566), 1, sym_expression, - STATE(2290), 1, - sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2404), 1, + sym__collection_elements, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2131), 3, + sym_parenthesized_list_splat, + sym_yield, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(985), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -44707,7 +45432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44724,72 +45449,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [13058] = 29, - ACTIONS(553), 1, + [13064] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(557), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(671), 1, - anon_sym_STAR, - ACTIONS(675), 1, + ACTIONS(863), 1, + anon_sym_STAR_STAR, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(679), 1, - anon_sym_yield, - ACTIONS(843), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(957), 1, - anon_sym_RPAREN, - ACTIONS(961), 1, + ACTIONS(1001), 1, + anon_sym_STAR, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(1009), 1, sym_python_identifier, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + ACTIONS(1067), 1, + anon_sym_RPAREN, + STATE(876), 1, sym_primary_expression, - STATE(1172), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1557), 1, + STATE(1819), 1, sym_expression, - STATE(2221), 1, - sym_yield, - STATE(2415), 1, - sym__collection_elements, - STATE(2497), 1, + STATE(2278), 1, + sym_parenthesized_list_splat, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2133), 2, - sym_parenthesized_list_splat, + STATE(2286), 3, sym_list_splat, - ACTIONS(959), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -44797,7 +45521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44814,71 +45538,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [13177] = 28, - ACTIONS(577), 1, + [13181] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(853), 1, + ACTIONS(863), 1, anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(1001), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(1009), 1, sym_python_identifier, ACTIONS(1069), 1, anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(876), 1, sym_primary_expression, - STATE(1193), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1819), 1, sym_expression, - STATE(2290), 1, + STATE(2278), 1, sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2286), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -44886,7 +45610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44903,71 +45627,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [13294] = 28, - ACTIONS(577), 1, + [13298] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(853), 1, + ACTIONS(863), 1, anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(1001), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(1009), 1, sym_python_identifier, ACTIONS(1071), 1, anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(876), 1, sym_primary_expression, - STATE(1193), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1819), 1, sym_expression, - STATE(2290), 1, + STATE(2278), 1, sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2286), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -44975,7 +45699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44992,72 +45716,73 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [13411] = 29, - ACTIONS(553), 1, + [13415] = 30, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(557), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(671), 1, + ACTIONS(725), 1, anon_sym_STAR, - ACTIONS(675), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(679), 1, + ACTIONS(733), 1, anon_sym_yield, - ACTIONS(843), 1, + ACTIONS(853), 1, anon_sym_LPAREN, - ACTIONS(961), 1, - anon_sym_await, ACTIONS(963), 1, - anon_sym_type, + anon_sym_await, ACTIONS(965), 1, + anon_sym_type, + ACTIONS(967), 1, sym_python_identifier, - ACTIONS(1073), 1, + ACTIONS(979), 1, anon_sym_RPAREN, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(893), 1, sym_primary_expression, - STATE(1172), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1569), 1, + STATE(1541), 1, sym_expression, - STATE(2161), 1, + STATE(2095), 1, + sym_parenthesized_list_splat, + STATE(2096), 1, + sym_list_splat, + STATE(2134), 1, sym_yield, - STATE(2452), 1, + STATE(2490), 1, sym__collection_elements, - STATE(2497), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2133), 2, - sym_parenthesized_list_splat, - sym_list_splat, - ACTIONS(959), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45065,7 +45790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45082,73 +45807,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [13530] = 30, - ACTIONS(553), 1, + [13536] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(557), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(671), 1, - anon_sym_STAR, - ACTIONS(675), 1, + ACTIONS(863), 1, + anon_sym_STAR_STAR, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(679), 1, - anon_sym_yield, - ACTIONS(843), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(961), 1, + ACTIONS(1001), 1, + anon_sym_STAR, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(1009), 1, sym_python_identifier, ACTIONS(1073), 1, anon_sym_RPAREN, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(876), 1, sym_primary_expression, - STATE(1172), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1569), 1, + STATE(1819), 1, sym_expression, - STATE(2091), 1, + STATE(2278), 1, sym_parenthesized_list_splat, - STATE(2092), 1, - sym_list_splat, - STATE(2161), 1, - sym_yield, - STATE(2452), 1, - sym__collection_elements, - STATE(2497), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(959), 4, + STATE(2286), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45156,7 +45879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45173,71 +45896,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [13651] = 28, - ACTIONS(601), 1, + [13653] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(605), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(693), 1, - anon_sym_STAR, - ACTIONS(697), 1, + ACTIONS(863), 1, + anon_sym_STAR_STAR, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(701), 1, - anon_sym_yield, - ACTIONS(993), 1, - anon_sym_LPAREN, ACTIONS(997), 1, + anon_sym_LPAREN, + ACTIONS(1001), 1, + anon_sym_STAR, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(1001), 1, + ACTIONS(1009), 1, sym_python_identifier, ACTIONS(1075), 1, - anon_sym_RBRACK, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + anon_sym_RPAREN, + STATE(876), 1, sym_primary_expression, - STATE(1163), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1575), 1, + STATE(1819), 1, sym_expression, - STATE(2490), 1, - sym__collection_elements, - STATE(2557), 1, + STATE(2278), 1, + sym_parenthesized_list_splat, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2077), 3, - sym_parenthesized_list_splat, - sym_yield, + STATE(2286), 3, sym_list_splat, - ACTIONS(995), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45245,7 +45968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45262,72 +45985,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [13768] = 29, - ACTIONS(553), 1, + [13770] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(557), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(671), 1, - anon_sym_STAR, - ACTIONS(675), 1, + ACTIONS(863), 1, + anon_sym_STAR_STAR, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(679), 1, - anon_sym_yield, - ACTIONS(843), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(961), 1, + ACTIONS(1001), 1, + anon_sym_STAR, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(1009), 1, sym_python_identifier, - ACTIONS(1019), 1, + ACTIONS(1077), 1, anon_sym_RPAREN, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(876), 1, sym_primary_expression, - STATE(1172), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1544), 1, + STATE(1819), 1, sym_expression, - STATE(2090), 1, - sym_yield, - STATE(2380), 1, - sym__collection_elements, - STATE(2497), 1, + STATE(2278), 1, + sym_parenthesized_list_splat, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2133), 2, - sym_parenthesized_list_splat, + STATE(2286), 3, sym_list_splat, - ACTIONS(959), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45335,7 +46057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45353,70 +46075,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [13887] = 28, - ACTIONS(577), 1, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(853), 1, + ACTIONS(863), 1, anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(1001), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(1009), 1, sym_python_identifier, - ACTIONS(1077), 1, + ACTIONS(1079), 1, anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(876), 1, sym_primary_expression, - STATE(1193), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1819), 1, sym_expression, - STATE(2290), 1, + STATE(2278), 1, sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2286), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45424,7 +46146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45442,70 +46164,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [14004] = 28, - ACTIONS(577), 1, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(853), 1, + ACTIONS(863), 1, anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(1001), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(1009), 1, sym_python_identifier, - ACTIONS(1079), 1, + ACTIONS(1081), 1, anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(876), 1, sym_primary_expression, - STATE(1193), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1819), 1, sym_expression, - STATE(2290), 1, + STATE(2278), 1, sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2286), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45513,7 +46235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45531,70 +46253,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [14121] = 28, - ACTIONS(577), 1, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(853), 1, + ACTIONS(863), 1, anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(1001), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(1009), 1, sym_python_identifier, - ACTIONS(1081), 1, + ACTIONS(1083), 1, anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(876), 1, sym_primary_expression, - STATE(1193), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1819), 1, sym_expression, - STATE(2290), 1, + STATE(2278), 1, sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, + STATE(2286), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(977), 4, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45602,7 +46324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45619,73 +46341,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [14238] = 30, - ACTIONS(553), 1, + [14238] = 28, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(557), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(671), 1, - anon_sym_STAR, - ACTIONS(675), 1, + ACTIONS(863), 1, + anon_sym_STAR_STAR, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(679), 1, - anon_sym_yield, - ACTIONS(843), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(961), 1, + ACTIONS(1001), 1, + anon_sym_STAR, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(1009), 1, sym_python_identifier, - ACTIONS(1045), 1, + ACTIONS(1085), 1, anon_sym_RPAREN, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(876), 1, sym_primary_expression, - STATE(1172), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1567), 1, + STATE(1819), 1, sym_expression, - STATE(2051), 1, - sym_list_splat, - STATE(2052), 1, + STATE(2278), 1, sym_parenthesized_list_splat, - STATE(2078), 1, - sym_yield, - STATE(2489), 1, - sym__collection_elements, - STATE(2497), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(959), 4, + STATE(2286), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45693,7 +46413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45710,71 +46430,71 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [14359] = 28, - ACTIONS(601), 1, + [14355] = 28, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(605), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(693), 1, + ACTIONS(673), 1, anon_sym_STAR, - ACTIONS(697), 1, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(679), 1, anon_sym_lambda, - ACTIONS(701), 1, + ACTIONS(681), 1, anon_sym_yield, - ACTIONS(993), 1, + ACTIONS(983), 1, anon_sym_LPAREN, - ACTIONS(997), 1, + ACTIONS(987), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(1001), 1, + ACTIONS(991), 1, sym_python_identifier, - ACTIONS(1083), 1, + ACTIONS(1087), 1, anon_sym_RBRACK, - STATE(857), 1, + STATE(859), 1, sym_python_string, - STATE(858), 1, + STATE(860), 1, sym_primary_expression, - STATE(1163), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1568), 1, + STATE(1539), 1, sym_expression, - STATE(2345), 1, + STATE(2424), 1, sym__collection_elements, - STATE(2557), 1, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2077), 3, + STATE(2131), 3, sym_parenthesized_list_splat, sym_yield, sym_list_splat, - ACTIONS(995), 4, + ACTIONS(985), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45782,7 +46502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45799,65 +46519,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [14476] = 28, - ACTIONS(601), 1, + [14472] = 30, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(605), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(693), 1, + ACTIONS(725), 1, anon_sym_STAR, - ACTIONS(697), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(701), 1, + ACTIONS(733), 1, anon_sym_yield, - ACTIONS(993), 1, + ACTIONS(853), 1, anon_sym_LPAREN, - ACTIONS(997), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(1001), 1, + ACTIONS(967), 1, sym_python_identifier, - ACTIONS(1085), 1, - anon_sym_RBRACK, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + ACTIONS(973), 1, + anon_sym_RPAREN, + STATE(893), 1, sym_primary_expression, - STATE(1163), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1573), 1, + STATE(1575), 1, sym_expression, - STATE(2555), 1, + STATE(2132), 1, + sym_yield, + STATE(2208), 1, + sym_parenthesized_list_splat, + STATE(2215), 1, + sym_list_splat, + STATE(2494), 1, sym__collection_elements, - STATE(2557), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2077), 3, - sym_parenthesized_list_splat, - sym_yield, - sym_list_splat, - ACTIONS(995), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, @@ -45871,7 +46593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45888,70 +46610,77 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [14593] = 20, - ACTIONS(465), 1, + [14593] = 27, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(474), 1, - anon_sym_STAR, - ACTIONS(478), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(484), 1, - anon_sym_await, - ACTIONS(490), 1, + ACTIONS(560), 1, + sym_identifier, + ACTIONS(564), 1, sym_string_start, - STATE(868), 1, + ACTIONS(701), 1, + anon_sym_not, + ACTIONS(709), 1, + anon_sym_await, + ACTIONS(711), 1, + anon_sym_type, + ACTIONS(713), 1, + sym_python_identifier, + ACTIONS(1089), 1, + anon_sym_RBRACE, + ACTIONS(1091), 1, + anon_sym_STAR, + ACTIONS(1095), 1, + anon_sym_lambda, + STATE(839), 1, + sym_primary_expression, + STATE(840), 1, sym_python_string, - STATE(1260), 1, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1475), 1, - sym_primary_expression, + STATE(1705), 1, + sym_expression, + STATE(2469), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(480), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(476), 4, + STATE(1898), 2, + sym_lambda_within_for_in_clause, + sym__expression_within_for_in_clause, + ACTIONS(699), 3, anon_sym_print, anon_sym_exec, - anon_sym_async, anon_sym_match, - ACTIONS(290), 5, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_COMMA, - sym_type_conversion, - ACTIONS(488), 6, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - sym_python_identifier, - ACTIONS(301), 9, - anon_sym_GT_GT, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1266), 16, + ACTIONS(1093), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(562), 5, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + STATE(1657), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_as_pattern, + sym_conditional_expression, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45968,69 +46697,69 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [14693] = 27, - ACTIONS(553), 1, + [14707] = 27, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(675), 1, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(961), 1, + ACTIONS(987), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(991), 1, sym_python_identifier, - ACTIONS(1087), 1, - anon_sym_RPAREN, ACTIONS(1089), 1, + anon_sym_RBRACK, + ACTIONS(1097), 1, anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1099), 1, anon_sym_lambda, - STATE(851), 1, + STATE(859), 1, sym_python_string, - STATE(874), 1, + STATE(860), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1729), 1, + STATE(1688), 1, sym_expression, - STATE(2497), 1, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1876), 2, + STATE(1903), 2, sym_lambda_within_for_in_clause, sym__expression_within_for_in_clause, - ACTIONS(959), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_exec, anon_sym_match, - ACTIONS(1091), 3, + ACTIONS(1093), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(573), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -46038,7 +46767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46055,69 +46784,69 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [14807] = 27, - ACTIONS(577), 1, + [14821] = 27, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(573), 1, + anon_sym_LPAREN, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(853), 1, - anon_sym_STAR_STAR, - ACTIONS(925), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(929), 1, - anon_sym_lambda, - ACTIONS(971), 1, - anon_sym_LPAREN, - ACTIONS(975), 1, - anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(981), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(967), 1, sym_python_identifier, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + ACTIONS(1089), 1, + anon_sym_RPAREN, + ACTIONS(1101), 1, + anon_sym_STAR, + ACTIONS(1103), 1, + anon_sym_lambda, + STATE(893), 1, sym_primary_expression, - STATE(1193), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1724), 1, sym_expression, - STATE(2290), 1, - sym_parenthesized_list_splat, - STATE(2383), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2291), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(977), 4, + STATE(1940), 2, + sym_lambda_within_for_in_clause, + sym__expression_within_for_in_clause, + ACTIONS(961), 3, anon_sym_print, anon_sym_exec, - anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(1093), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -46125,7 +46854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46142,69 +46871,69 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [14921] = 27, - ACTIONS(527), 1, + [14935] = 27, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(529), 1, - anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(721), 1, + ACTIONS(863), 1, + anon_sym_STAR_STAR, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(729), 1, + ACTIONS(903), 1, + anon_sym_lambda, + ACTIONS(997), 1, + anon_sym_LPAREN, + ACTIONS(1001), 1, + anon_sym_STAR, + ACTIONS(1005), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(1007), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(1009), 1, sym_python_identifier, - ACTIONS(1087), 1, - anon_sym_RBRACE, - ACTIONS(1095), 1, - anon_sym_STAR, - ACTIONS(1097), 1, - anon_sym_lambda, - STATE(838), 1, - sym_python_string, - STATE(839), 1, + STATE(876), 1, sym_primary_expression, - STATE(1136), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1819), 1, sym_expression, - STATE(2454), 1, + STATE(2278), 1, + sym_parenthesized_list_splat, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1889), 2, - sym_lambda_within_for_in_clause, - sym__expression_within_for_in_clause, - ACTIONS(719), 3, + STATE(2286), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(1003), 4, anon_sym_print, anon_sym_exec, - anon_sym_match, - ACTIONS(1091), 3, - anon_sym_if, anon_sym_async, - anon_sym_for, - ACTIONS(547), 5, + anon_sym_match, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -46212,7 +46941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46229,69 +46958,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [15035] = 27, - ACTIONS(553), 1, + [15049] = 25, + ACTIONS(494), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(496), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(675), 1, + ACTIONS(825), 1, + anon_sym_STAR, + ACTIONS(829), 1, anon_sym_not, - ACTIONS(961), 1, + ACTIONS(831), 1, + anon_sym_lambda, + ACTIONS(925), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(927), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(929), 1, sym_python_identifier, - ACTIONS(1089), 1, - anon_sym_STAR, - ACTIONS(1093), 1, - anon_sym_lambda, - ACTIONS(1099), 1, - anon_sym_RPAREN, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(837), 1, sym_primary_expression, - STATE(1172), 1, + STATE(844), 1, + sym_python_string, + STATE(1133), 1, sym_list_splat_pattern, - STATE(1729), 1, + STATE(1665), 1, sym_expression, - STATE(2497), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1876), 2, - sym_lambda_within_for_in_clause, - sym__expression_within_for_in_clause, - ACTIONS(959), 3, + ACTIONS(923), 4, anon_sym_print, anon_sym_exec, - anon_sym_match, - ACTIONS(1101), 3, - anon_sym_if, anon_sym_async, - anon_sym_for, - ACTIONS(573), 5, + anon_sym_match, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + ACTIONS(1105), 5, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_COMMA, + sym_type_conversion, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -46299,7 +47026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46316,69 +47043,69 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [15149] = 27, - ACTIONS(553), 1, + [15159] = 27, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(675), 1, + ACTIONS(733), 1, + anon_sym_yield, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(961), 1, + ACTIONS(903), 1, + anon_sym_lambda, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(965), 1, - sym_python_identifier, - ACTIONS(1089), 1, - anon_sym_STAR, - ACTIONS(1093), 1, - anon_sym_lambda, - ACTIONS(1103), 1, + ACTIONS(997), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, anon_sym_RPAREN, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + ACTIONS(1109), 1, + anon_sym_STAR, + ACTIONS(1111), 1, + sym_python_identifier, + STATE(876), 1, sym_primary_expression, - STATE(1172), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1729), 1, + STATE(1834), 1, sym_expression, - STATE(2497), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1876), 2, - sym_lambda_within_for_in_clause, - sym__expression_within_for_in_clause, - ACTIONS(959), 3, + STATE(2310), 3, + sym_parenthesized_list_splat, + sym_yield, + sym_list_splat, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, - anon_sym_match, - ACTIONS(1105), 3, - anon_sym_if, anon_sym_async, - anon_sym_for, - ACTIONS(573), 5, + anon_sym_match, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -46386,7 +47113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46403,69 +47130,69 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [15263] = 27, - ACTIONS(553), 1, + [15273] = 27, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(675), 1, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(961), 1, + ACTIONS(987), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(991), 1, sym_python_identifier, - ACTIONS(1089), 1, + ACTIONS(1097), 1, anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1099), 1, anon_sym_lambda, - ACTIONS(1107), 1, - anon_sym_RPAREN, - STATE(851), 1, + ACTIONS(1113), 1, + anon_sym_RBRACK, + STATE(859), 1, sym_python_string, - STATE(874), 1, + STATE(860), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1729), 1, + STATE(1688), 1, sym_expression, - STATE(2497), 1, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1876), 2, + STATE(1903), 2, sym_lambda_within_for_in_clause, sym__expression_within_for_in_clause, - ACTIONS(959), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_exec, anon_sym_match, - ACTIONS(1109), 3, + ACTIONS(1115), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(573), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -46473,7 +47200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46490,69 +47217,69 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [15377] = 27, - ACTIONS(577), 1, + [15387] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(679), 1, + ACTIONS(681), 1, anon_sym_yield, - ACTIONS(925), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(931), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(971), 1, + ACTIONS(1117), 1, + anon_sym_RBRACK, + ACTIONS(1119), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_RPAREN, - ACTIONS(1113), 1, + ACTIONS(1121), 1, anon_sym_STAR, - ACTIONS(1115), 1, + ACTIONS(1123), 1, sym_python_identifier, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(947), 1, sym_primary_expression, - STATE(1193), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1817), 1, + STATE(1846), 1, sym_expression, - STATE(2383), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2245), 3, + STATE(2279), 3, sym_parenthesized_list_splat, sym_yield, sym_list_splat, - ACTIONS(923), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -46560,7 +47287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46577,69 +47304,69 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [15491] = 27, - ACTIONS(625), 1, + [15501] = 27, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(629), 1, + ACTIONS(544), 1, + anon_sym_LPAREN, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(560), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(564), 1, sym_string_start, ACTIONS(701), 1, - anon_sym_yield, - ACTIONS(865), 1, anon_sym_not, - ACTIONS(869), 1, - anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(711), 1, anon_sym_type, - ACTIONS(1117), 1, - anon_sym_RBRACK, - ACTIONS(1119), 1, - anon_sym_LPAREN, - ACTIONS(1121), 1, - anon_sym_STAR, - ACTIONS(1123), 1, + ACTIONS(713), 1, sym_python_identifier, - STATE(990), 1, + ACTIONS(1091), 1, + anon_sym_STAR, + ACTIONS(1095), 1, + anon_sym_lambda, + ACTIONS(1125), 1, + anon_sym_RBRACE, + STATE(839), 1, sym_primary_expression, - STATE(1003), 1, + STATE(840), 1, sym_python_string, - STATE(1347), 1, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1705), 1, sym_expression, - STATE(2419), 1, + STATE(2469), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, - sym_parenthesized_list_splat, - sym_yield, - sym_list_splat, - ACTIONS(863), 4, + STATE(1898), 2, + sym_lambda_within_for_in_clause, + sym__expression_within_for_in_clause, + ACTIONS(699), 3, anon_sym_print, anon_sym_exec, - anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(1127), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -46647,7 +47374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46664,77 +47391,70 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [15605] = 27, - ACTIONS(577), 1, + [15615] = 20, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(476), 1, + anon_sym_STAR, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(595), 1, - sym_identifier, - ACTIONS(599), 1, - sym_string_start, - ACTIONS(679), 1, - anon_sym_yield, - ACTIONS(925), 1, - anon_sym_not, - ACTIONS(929), 1, - anon_sym_lambda, - ACTIONS(931), 1, + ACTIONS(486), 1, anon_sym_await, - ACTIONS(933), 1, - anon_sym_type, - ACTIONS(971), 1, - anon_sym_LPAREN, - ACTIONS(1113), 1, - anon_sym_STAR, - ACTIONS(1115), 1, - sym_python_identifier, - ACTIONS(1117), 1, - anon_sym_RPAREN, - STATE(850), 1, + ACTIONS(492), 1, + sym_string_start, + STATE(853), 1, sym_python_string, - STATE(883), 1, - sym_primary_expression, - STATE(1193), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1817), 1, - sym_expression, - STATE(2383), 1, - sym__named_expression_lhs, + STATE(1452), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(473), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2245), 3, - sym_parenthesized_list_splat, - sym_yield, - sym_list_splat, - ACTIONS(923), 4, + ACTIONS(488), 2, + anon_sym_type, + sym_identifier, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(465), 5, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_COMMA, + sym_type_conversion, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_as_pattern, - sym_conditional_expression, - STATE(1222), 16, + sym_python_identifier, + ACTIONS(566), 9, + anon_sym_GT_GT, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46751,69 +47471,69 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [15719] = 27, - ACTIONS(492), 1, + [15715] = 27, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(496), 1, + ACTIONS(544), 1, + anon_sym_LPAREN, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(560), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(727), 1, - anon_sym_yield, - ACTIONS(827), 1, + ACTIONS(701), 1, anon_sym_not, - ACTIONS(829), 1, - anon_sym_lambda, - ACTIONS(897), 1, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(711), 1, anon_sym_type, - ACTIONS(901), 1, + ACTIONS(713), 1, sym_python_identifier, - ACTIONS(1117), 1, - anon_sym_RBRACE, - ACTIONS(1125), 1, - anon_sym_LPAREN, - ACTIONS(1127), 1, + ACTIONS(1091), 1, anon_sym_STAR, - STATE(841), 1, - sym_python_string, - STATE(844), 1, + ACTIONS(1095), 1, + anon_sym_lambda, + ACTIONS(1129), 1, + anon_sym_RBRACE, + STATE(839), 1, sym_primary_expression, - STATE(1028), 1, + STATE(840), 1, + sym_python_string, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1810), 1, + STATE(1705), 1, sym_expression, - STATE(2525), 1, + STATE(2469), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2289), 3, - sym_parenthesized_list_splat, - sym_yield, - sym_list_splat, - ACTIONS(895), 4, + STATE(1898), 2, + sym_lambda_within_for_in_clause, + sym__expression_within_for_in_clause, + ACTIONS(699), 3, anon_sym_print, anon_sym_exec, - anon_sym_async, anon_sym_match, - ACTIONS(512), 5, + ACTIONS(1131), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1624), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -46821,7 +47541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46838,69 +47558,69 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [15833] = 27, - ACTIONS(625), 1, + [15829] = 27, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(629), 1, + ACTIONS(573), 1, + anon_sym_LPAREN, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(701), 1, - anon_sym_yield, - ACTIONS(865), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(869), 1, - anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(1111), 1, - anon_sym_RBRACK, - ACTIONS(1119), 1, - anon_sym_LPAREN, - ACTIONS(1121), 1, - anon_sym_STAR, - ACTIONS(1123), 1, + ACTIONS(967), 1, sym_python_identifier, - STATE(990), 1, + ACTIONS(1101), 1, + anon_sym_STAR, + ACTIONS(1103), 1, + anon_sym_lambda, + ACTIONS(1125), 1, + anon_sym_RPAREN, + STATE(893), 1, sym_primary_expression, - STATE(1003), 1, + STATE(894), 1, sym_python_string, - STATE(1347), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1724), 1, sym_expression, - STATE(2419), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, - sym_parenthesized_list_splat, - sym_yield, - sym_list_splat, - ACTIONS(863), 4, + STATE(1940), 2, + sym_lambda_within_for_in_clause, + sym__expression_within_for_in_clause, + ACTIONS(961), 3, anon_sym_print, anon_sym_exec, - anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(1127), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -46908,7 +47628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46925,69 +47645,69 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [15947] = 27, - ACTIONS(527), 1, + [15943] = 27, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(721), 1, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(729), 1, + ACTIONS(987), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(991), 1, sym_python_identifier, - ACTIONS(1095), 1, - anon_sym_STAR, ACTIONS(1097), 1, + anon_sym_STAR, + ACTIONS(1099), 1, anon_sym_lambda, - ACTIONS(1107), 1, - anon_sym_RBRACE, - STATE(838), 1, + ACTIONS(1125), 1, + anon_sym_RBRACK, + STATE(859), 1, sym_python_string, - STATE(839), 1, + STATE(860), 1, sym_primary_expression, - STATE(1136), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1688), 1, sym_expression, - STATE(2454), 1, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1889), 2, + STATE(1903), 2, sym_lambda_within_for_in_clause, sym__expression_within_for_in_clause, - ACTIONS(719), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_exec, anon_sym_match, - ACTIONS(1109), 3, + ACTIONS(1127), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(547), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -46995,7 +47715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47012,67 +47732,69 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [16061] = 25, - ACTIONS(492), 1, + [16057] = 27, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(560), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(823), 1, - anon_sym_STAR, - ACTIONS(827), 1, + ACTIONS(701), 1, anon_sym_not, - ACTIONS(829), 1, - anon_sym_lambda, - ACTIONS(897), 1, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(711), 1, anon_sym_type, - ACTIONS(901), 1, + ACTIONS(713), 1, sym_python_identifier, - STATE(841), 1, - sym_python_string, - STATE(844), 1, + ACTIONS(1091), 1, + anon_sym_STAR, + ACTIONS(1095), 1, + anon_sym_lambda, + ACTIONS(1113), 1, + anon_sym_RBRACE, + STATE(839), 1, sym_primary_expression, - STATE(1028), 1, + STATE(840), 1, + sym_python_string, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1647), 1, + STATE(1705), 1, sym_expression, - STATE(2525), 1, + STATE(2469), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(895), 4, + STATE(1898), 2, + sym_lambda_within_for_in_clause, + sym__expression_within_for_in_clause, + ACTIONS(699), 3, anon_sym_print, anon_sym_exec, - anon_sym_async, anon_sym_match, - ACTIONS(512), 5, + ACTIONS(1115), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - ACTIONS(1129), 5, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_COMMA, - sym_type_conversion, - STATE(1624), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -47080,7 +47802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47097,69 +47819,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [16171] = 27, - ACTIONS(492), 1, + [16171] = 25, + ACTIONS(494), 1, anon_sym_LBRACK, ACTIONS(496), 1, + anon_sym_LPAREN, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(504), 1, - anon_sym_DASH, ACTIONS(506), 1, + anon_sym_DASH, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(727), 1, - anon_sym_yield, - ACTIONS(827), 1, - anon_sym_not, + ACTIONS(825), 1, + anon_sym_STAR, ACTIONS(829), 1, + anon_sym_not, + ACTIONS(831), 1, anon_sym_lambda, - ACTIONS(897), 1, + ACTIONS(925), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(927), 1, anon_sym_type, - ACTIONS(901), 1, + ACTIONS(929), 1, sym_python_identifier, - ACTIONS(1111), 1, - anon_sym_RBRACE, - ACTIONS(1125), 1, - anon_sym_LPAREN, - ACTIONS(1127), 1, - anon_sym_STAR, - STATE(841), 1, - sym_python_string, - STATE(844), 1, + STATE(837), 1, sym_primary_expression, - STATE(1028), 1, + STATE(844), 1, + sym_python_string, + STATE(1133), 1, sym_list_splat_pattern, - STATE(1810), 1, + STATE(1665), 1, sym_expression, - STATE(2525), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2289), 3, - sym_parenthesized_list_splat, - sym_yield, - sym_list_splat, - ACTIONS(895), 4, + ACTIONS(923), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 5, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1624), 7, + ACTIONS(1133), 5, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_COMMA, + sym_type_conversion, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -47167,7 +47887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47184,67 +47904,69 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [16285] = 25, - ACTIONS(492), 1, - anon_sym_LBRACK, + [16281] = 27, ACTIONS(494), 1, - anon_sym_LPAREN, - ACTIONS(496), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(504), 1, - anon_sym_DASH, ACTIONS(506), 1, + anon_sym_DASH, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(823), 1, - anon_sym_STAR, - ACTIONS(827), 1, - anon_sym_not, + ACTIONS(707), 1, + anon_sym_yield, ACTIONS(829), 1, + anon_sym_not, + ACTIONS(831), 1, anon_sym_lambda, - ACTIONS(897), 1, + ACTIONS(925), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(927), 1, anon_sym_type, - ACTIONS(901), 1, + ACTIONS(929), 1, sym_python_identifier, - STATE(841), 1, - sym_python_string, - STATE(844), 1, + ACTIONS(1117), 1, + anon_sym_RBRACE, + ACTIONS(1135), 1, + anon_sym_LPAREN, + ACTIONS(1137), 1, + anon_sym_STAR, + STATE(837), 1, sym_primary_expression, - STATE(1028), 1, + STATE(844), 1, + sym_python_string, + STATE(1133), 1, sym_list_splat_pattern, - STATE(1647), 1, + STATE(1831), 1, sym_expression, - STATE(2525), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(895), 4, + STATE(2305), 3, + sym_parenthesized_list_splat, + sym_yield, + sym_list_splat, + ACTIONS(923), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 5, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - ACTIONS(1131), 5, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_COMMA, - sym_type_conversion, - STATE(1624), 7, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -47252,7 +47974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47270,62 +47992,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [16395] = 27, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(697), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(997), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(1001), 1, + ACTIONS(967), 1, sym_python_identifier, - ACTIONS(1087), 1, - anon_sym_RBRACK, - ACTIONS(1133), 1, + ACTIONS(1101), 1, anon_sym_STAR, - ACTIONS(1135), 1, + ACTIONS(1103), 1, anon_sym_lambda, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + ACTIONS(1113), 1, + anon_sym_RPAREN, + STATE(893), 1, sym_primary_expression, - STATE(1163), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1730), 1, + STATE(1724), 1, sym_expression, - STATE(2557), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1888), 2, + STATE(1940), 2, sym_lambda_within_for_in_clause, sym__expression_within_for_in_clause, - ACTIONS(995), 3, + ACTIONS(961), 3, anon_sym_print, anon_sym_exec, anon_sym_match, - ACTIONS(1091), 3, + ACTIONS(1115), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(621), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, @@ -47339,7 +48061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47356,70 +48078,77 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [16509] = 20, - ACTIONS(465), 1, + [16509] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(467), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(474), 1, - anon_sym_STAR, - ACTIONS(478), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(484), 1, - anon_sym_await, - ACTIONS(490), 1, + ACTIONS(621), 1, + sym_identifier, + ACTIONS(625), 1, sym_string_start, - STATE(868), 1, + ACTIONS(681), 1, + anon_sym_yield, + ACTIONS(875), 1, + anon_sym_not, + ACTIONS(879), 1, + anon_sym_lambda, + ACTIONS(881), 1, + anon_sym_await, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(1107), 1, + anon_sym_RBRACK, + ACTIONS(1119), 1, + anon_sym_LPAREN, + ACTIONS(1121), 1, + anon_sym_STAR, + ACTIONS(1123), 1, + sym_python_identifier, + STATE(947), 1, + sym_primary_expression, + STATE(952), 1, sym_python_string, - STATE(1260), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1475), 1, - sym_primary_expression, + STATE(1846), 1, + sym_expression, + STATE(2425), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(471), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(480), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(476), 4, + STATE(2279), 3, + sym_parenthesized_list_splat, + sym_yield, + sym_list_splat, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(463), 5, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_COMMA, - sym_type_conversion, - ACTIONS(488), 6, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - ACTIONS(524), 9, - anon_sym_GT_GT, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1266), 16, + STATE(1654), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_as_pattern, + sym_conditional_expression, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47436,63 +48165,63 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [16609] = 27, - ACTIONS(601), 1, + [16623] = 27, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(697), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(997), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(1001), 1, + ACTIONS(967), 1, sym_python_identifier, - ACTIONS(1107), 1, - anon_sym_RBRACK, - ACTIONS(1133), 1, + ACTIONS(1101), 1, anon_sym_STAR, - ACTIONS(1135), 1, + ACTIONS(1103), 1, anon_sym_lambda, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + ACTIONS(1129), 1, + anon_sym_RPAREN, + STATE(893), 1, sym_primary_expression, - STATE(1163), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1730), 1, + STATE(1724), 1, sym_expression, - STATE(2557), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1888), 2, + STATE(1940), 2, sym_lambda_within_for_in_clause, sym__expression_within_for_in_clause, - ACTIONS(995), 3, + ACTIONS(961), 3, anon_sym_print, anon_sym_exec, anon_sym_match, - ACTIONS(1109), 3, + ACTIONS(1131), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(621), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, @@ -47506,7 +48235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47523,69 +48252,69 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [16723] = 27, - ACTIONS(601), 1, + [16737] = 27, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(603), 1, - anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(697), 1, + ACTIONS(733), 1, + anon_sym_yield, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(997), 1, + ACTIONS(903), 1, + anon_sym_lambda, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(1001), 1, - sym_python_identifier, - ACTIONS(1103), 1, - anon_sym_RBRACK, - ACTIONS(1133), 1, + ACTIONS(997), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, anon_sym_STAR, - ACTIONS(1135), 1, - anon_sym_lambda, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + ACTIONS(1111), 1, + sym_python_identifier, + ACTIONS(1117), 1, + anon_sym_RPAREN, + STATE(876), 1, sym_primary_expression, - STATE(1163), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1730), 1, + STATE(1834), 1, sym_expression, - STATE(2557), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1888), 2, - sym_lambda_within_for_in_clause, - sym__expression_within_for_in_clause, - ACTIONS(995), 3, + STATE(2310), 3, + sym_parenthesized_list_splat, + sym_yield, + sym_list_splat, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, - anon_sym_match, - ACTIONS(1105), 3, - anon_sym_if, anon_sym_async, - anon_sym_for, - ACTIONS(621), 5, + anon_sym_match, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -47593,7 +48322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47610,69 +48339,69 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [16837] = 27, - ACTIONS(527), 1, + [16851] = 27, + ACTIONS(494), 1, anon_sym_LBRACK, - ACTIONS(529), 1, - anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(721), 1, + ACTIONS(707), 1, + anon_sym_yield, + ACTIONS(829), 1, anon_sym_not, - ACTIONS(729), 1, + ACTIONS(831), 1, + anon_sym_lambda, + ACTIONS(925), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(927), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(929), 1, sym_python_identifier, - ACTIONS(1095), 1, - anon_sym_STAR, - ACTIONS(1097), 1, - anon_sym_lambda, - ACTIONS(1103), 1, + ACTIONS(1107), 1, anon_sym_RBRACE, - STATE(838), 1, - sym_python_string, - STATE(839), 1, + ACTIONS(1135), 1, + anon_sym_LPAREN, + ACTIONS(1137), 1, + anon_sym_STAR, + STATE(837), 1, sym_primary_expression, - STATE(1136), 1, + STATE(844), 1, + sym_python_string, + STATE(1133), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1831), 1, sym_expression, - STATE(2454), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1889), 2, - sym_lambda_within_for_in_clause, - sym__expression_within_for_in_clause, - ACTIONS(719), 3, + STATE(2305), 3, + sym_parenthesized_list_splat, + sym_yield, + sym_list_splat, + ACTIONS(923), 4, anon_sym_print, anon_sym_exec, - anon_sym_match, - ACTIONS(1105), 3, - anon_sym_if, anon_sym_async, - anon_sym_for, - ACTIONS(547), 5, + anon_sym_match, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -47680,7 +48409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47697,69 +48426,69 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [16951] = 27, - ACTIONS(527), 1, + [16965] = 27, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(721), 1, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(729), 1, + ACTIONS(987), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(991), 1, sym_python_identifier, - ACTIONS(1095), 1, - anon_sym_STAR, ACTIONS(1097), 1, - anon_sym_lambda, + anon_sym_STAR, ACTIONS(1099), 1, - anon_sym_RBRACE, - STATE(838), 1, + anon_sym_lambda, + ACTIONS(1129), 1, + anon_sym_RBRACK, + STATE(859), 1, sym_python_string, - STATE(839), 1, + STATE(860), 1, sym_primary_expression, - STATE(1136), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1688), 1, sym_expression, - STATE(2454), 1, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1889), 2, + STATE(1903), 2, sym_lambda_within_for_in_clause, sym__expression_within_for_in_clause, - ACTIONS(719), 3, + ACTIONS(985), 3, anon_sym_print, anon_sym_exec, anon_sym_match, - ACTIONS(1101), 3, + ACTIONS(1131), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(547), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -47767,7 +48496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47784,77 +48513,70 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [17065] = 27, - ACTIONS(601), 1, + [17079] = 20, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(476), 1, + anon_sym_STAR, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(619), 1, - sym_identifier, - ACTIONS(623), 1, - sym_string_start, - ACTIONS(697), 1, - anon_sym_not, - ACTIONS(997), 1, + ACTIONS(486), 1, anon_sym_await, - ACTIONS(999), 1, - anon_sym_type, - ACTIONS(1001), 1, - sym_python_identifier, - ACTIONS(1099), 1, - anon_sym_RBRACK, - ACTIONS(1133), 1, - anon_sym_STAR, - ACTIONS(1135), 1, - anon_sym_lambda, - STATE(857), 1, + ACTIONS(492), 1, + sym_string_start, + STATE(853), 1, sym_python_string, - STATE(858), 1, - sym_primary_expression, - STATE(1163), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1730), 1, - sym_expression, - STATE(2557), 1, - sym__named_expression_lhs, + STATE(1452), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(302), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1888), 2, - sym_lambda_within_for_in_clause, - sym__expression_within_for_in_clause, - ACTIONS(995), 3, + ACTIONS(488), 2, + anon_sym_type, + sym_identifier, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, - anon_sym_match, - ACTIONS(1101), 3, - anon_sym_if, anon_sym_async, - anon_sym_for, - ACTIONS(621), 5, + anon_sym_match, + ACTIONS(292), 5, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_COMMA, + sym_type_conversion, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_as_pattern, - sym_conditional_expression, - STATE(1283), 16, + sym_python_identifier, + ACTIONS(300), 9, + anon_sym_GT_GT, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47872,67 +48594,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [17179] = 27, - ACTIONS(465), 1, - anon_sym_LBRACK, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(649), 1, + ACTIONS(651), 1, anon_sym_STAR, - ACTIONS(653), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(723), 1, + ACTIONS(703), 1, anon_sym_STAR_STAR, - ACTIONS(881), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1137), 1, - anon_sym_RBRACE, ACTIONS(1139), 1, + anon_sym_RBRACE, + ACTIONS(1141), 1, sym_python_identifier, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(922), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1879), 1, + STATE(1902), 1, sym_expression, - STATE(2446), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2266), 2, + STATE(2272), 2, sym_dictionary_splat, sym_pair, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -47940,7 +48662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47958,67 +48680,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [17292] = 27, - ACTIONS(465), 1, - anon_sym_LBRACK, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(649), 1, + ACTIONS(651), 1, anon_sym_STAR, - ACTIONS(653), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(723), 1, + ACTIONS(703), 1, anon_sym_STAR_STAR, - ACTIONS(881), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, - sym_python_identifier, ACTIONS(1141), 1, + sym_python_identifier, + ACTIONS(1143), 1, anon_sym_RBRACE, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(922), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1879), 1, + STATE(1902), 1, sym_expression, - STATE(2446), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2266), 2, + STATE(2272), 2, sym_dictionary_splat, sym_pair, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -48026,7 +48748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48044,67 +48766,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [17405] = 27, - ACTIONS(465), 1, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(530), 1, + anon_sym_DASH, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(649), 1, - anon_sym_STAR, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(723), 1, - anon_sym_STAR_STAR, - ACTIONS(881), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1111), 1, sym_python_identifier, - ACTIONS(1143), 1, - anon_sym_RBRACE, - STATE(868), 1, - sym_python_string, - STATE(922), 1, + ACTIONS(1145), 1, + anon_sym_from, + ACTIONS(1147), 1, + anon_sym_STAR, + STATE(876), 1, sym_primary_expression, - STATE(1260), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1879), 1, + STATE(1745), 1, sym_expression, - STATE(2446), 1, + STATE(2262), 1, + sym_expression_list, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2266), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(879), 4, + ACTIONS(919), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -48112,7 +48834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48130,67 +48852,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [17518] = 27, - ACTIONS(465), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(615), 1, + anon_sym_DASH, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(649), 1, - anon_sym_STAR, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(723), 1, - anon_sym_STAR_STAR, - ACTIONS(881), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1145), 1, - anon_sym_RBRACE, - STATE(868), 1, - sym_python_string, - STATE(922), 1, + ACTIONS(1149), 1, + anon_sym_from, + ACTIONS(1151), 1, + anon_sym_STAR, + STATE(947), 1, sym_primary_expression, - STATE(1260), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1879), 1, + STATE(1771), 1, sym_expression, - STATE(2446), 1, + STATE(2237), 1, + sym_expression_list, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2266), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(879), 4, + ACTIONS(919), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -48198,7 +48920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48215,67 +48937,68 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [17631] = 26, - ACTIONS(577), 1, + [17631] = 27, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(581), 1, + ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(589), 1, - anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(679), 1, - anon_sym_yield, - ACTIONS(925), 1, + ACTIONS(651), 1, + anon_sym_STAR, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(703), 1, + anon_sym_STAR_STAR, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(931), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(971), 1, - anon_sym_LPAREN, - ACTIONS(1113), 1, - anon_sym_STAR, - ACTIONS(1115), 1, + ACTIONS(1141), 1, sym_python_identifier, - STATE(850), 1, + ACTIONS(1153), 1, + anon_sym_RBRACE, + STATE(853), 1, sym_python_string, - STATE(883), 1, + STATE(939), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1817), 1, + STATE(1902), 1, sym_expression, - STATE(2383), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2245), 3, - sym_parenthesized_list_splat, - sym_yield, - sym_list_splat, - ACTIONS(923), 4, + STATE(2272), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -48283,7 +49006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48300,68 +49023,68 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [17742] = 27, - ACTIONS(465), 1, - anon_sym_LBRACK, + [17744] = 27, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(649), 1, + ACTIONS(651), 1, anon_sym_STAR, - ACTIONS(653), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(723), 1, + ACTIONS(703), 1, anon_sym_STAR_STAR, - ACTIONS(881), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1147), 1, + ACTIONS(1155), 1, anon_sym_RBRACE, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(922), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1879), 1, + STATE(1902), 1, sym_expression, - STATE(2446), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2266), 2, + STATE(2272), 2, sym_dictionary_splat, sym_pair, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -48369,7 +49092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48386,68 +49109,68 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [17855] = 27, - ACTIONS(465), 1, - anon_sym_LBRACK, + [17857] = 27, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(649), 1, + ACTIONS(651), 1, anon_sym_STAR, - ACTIONS(653), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(723), 1, + ACTIONS(703), 1, anon_sym_STAR_STAR, - ACTIONS(881), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1149), 1, + ACTIONS(1157), 1, anon_sym_RBRACE, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(922), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1879), 1, + STATE(1902), 1, sym_expression, - STATE(2446), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2266), 2, + STATE(2272), 2, sym_dictionary_splat, sym_pair, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -48455,7 +49178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48472,68 +49195,68 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [17968] = 27, - ACTIONS(465), 1, - anon_sym_LBRACK, + [17970] = 27, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(649), 1, + ACTIONS(651), 1, anon_sym_STAR, - ACTIONS(653), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(723), 1, + ACTIONS(703), 1, anon_sym_STAR_STAR, - ACTIONS(881), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1151), 1, + ACTIONS(1159), 1, anon_sym_RBRACE, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(922), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1879), 1, + STATE(1902), 1, sym_expression, - STATE(2446), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2266), 2, + STATE(2272), 2, sym_dictionary_splat, sym_pair, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -48541,7 +49264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48558,68 +49281,68 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [18081] = 27, - ACTIONS(465), 1, - anon_sym_LBRACK, + [18083] = 27, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(649), 1, + ACTIONS(651), 1, anon_sym_STAR, - ACTIONS(653), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(723), 1, + ACTIONS(703), 1, anon_sym_STAR_STAR, - ACTIONS(881), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1153), 1, + ACTIONS(1161), 1, anon_sym_RBRACE, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(922), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1879), 1, + STATE(1902), 1, sym_expression, - STATE(2446), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2266), 2, + STATE(2272), 2, sym_dictionary_splat, sym_pair, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -48627,7 +49350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48644,68 +49367,68 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [18194] = 27, - ACTIONS(465), 1, - anon_sym_LBRACK, - ACTIONS(467), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, + [18196] = 27, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(89), 1, + anon_sym_not, + ACTIONS(93), 1, + anon_sym_DASH, + ACTIONS(95), 1, + anon_sym_lambda, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(649), 1, - anon_sym_STAR, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(723), 1, - anon_sym_STAR_STAR, - ACTIONS(881), 1, - anon_sym_not, - ACTIONS(883), 1, - anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(1155), 1, - anon_sym_RBRACE, - STATE(868), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(1163), 1, + anon_sym_from, + ACTIONS(1165), 1, + anon_sym_STAR, + STATE(833), 1, sym_python_string, - STATE(922), 1, + STATE(836), 1, sym_primary_expression, - STATE(1260), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1879), 1, + STATE(1684), 1, sym_expression, - STATE(2446), 1, + STATE(2320), 1, + sym_expression_list, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2266), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(879), 4, + ACTIONS(919), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -48713,7 +49436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48730,68 +49453,68 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [18307] = 27, - ACTIONS(465), 1, - anon_sym_LBRACK, + [18309] = 27, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(649), 1, + ACTIONS(651), 1, anon_sym_STAR, - ACTIONS(653), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(723), 1, + ACTIONS(703), 1, anon_sym_STAR_STAR, - ACTIONS(881), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1157), 1, + ACTIONS(1167), 1, anon_sym_RBRACE, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(922), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1879), 1, + STATE(1902), 1, sym_expression, - STATE(2446), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2266), 2, + STATE(2272), 2, sym_dictionary_splat, sym_pair, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -48799,7 +49522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48816,67 +49539,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [18420] = 26, - ACTIONS(492), 1, + [18422] = 26, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(496), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(727), 1, + ACTIONS(733), 1, anon_sym_yield, - ACTIONS(827), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(829), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(897), 1, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(901), 1, - sym_python_identifier, - ACTIONS(1125), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - ACTIONS(1127), 1, + ACTIONS(1109), 1, anon_sym_STAR, - STATE(841), 1, - sym_python_string, - STATE(844), 1, + ACTIONS(1111), 1, + sym_python_identifier, + STATE(876), 1, sym_primary_expression, - STATE(1028), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1810), 1, + STATE(1834), 1, sym_expression, - STATE(2525), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2289), 3, + STATE(2310), 3, sym_parenthesized_list_splat, sym_yield, sym_list_splat, - ACTIONS(895), 4, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1624), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -48884,7 +49607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48901,68 +49624,68 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [18531] = 27, - ACTIONS(465), 1, - anon_sym_LBRACK, + [18533] = 27, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(649), 1, + ACTIONS(651), 1, anon_sym_STAR, - ACTIONS(653), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(723), 1, + ACTIONS(703), 1, anon_sym_STAR_STAR, - ACTIONS(881), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1159), 1, + ACTIONS(1169), 1, anon_sym_RBRACE, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(922), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1879), 1, + STATE(1902), 1, sym_expression, - STATE(2446), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2266), 2, + STATE(2272), 2, sym_dictionary_splat, sym_pair, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -48970,7 +49693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48987,68 +49710,68 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [18644] = 27, - ACTIONS(465), 1, - anon_sym_LBRACK, + [18646] = 27, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(649), 1, + ACTIONS(651), 1, anon_sym_STAR, - ACTIONS(653), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(723), 1, + ACTIONS(703), 1, anon_sym_STAR_STAR, - ACTIONS(881), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1161), 1, + ACTIONS(1171), 1, anon_sym_RBRACE, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(922), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1879), 1, + STATE(1902), 1, sym_expression, - STATE(2446), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2266), 2, + STATE(2272), 2, sym_dictionary_splat, sym_pair, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -49056,7 +49779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49073,68 +49796,68 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [18757] = 27, - ACTIONS(465), 1, - anon_sym_LBRACK, + [18759] = 27, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(649), 1, + ACTIONS(651), 1, anon_sym_STAR, - ACTIONS(653), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(723), 1, + ACTIONS(703), 1, anon_sym_STAR_STAR, - ACTIONS(881), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1163), 1, + ACTIONS(1173), 1, anon_sym_RBRACE, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(922), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1879), 1, + STATE(1902), 1, sym_expression, - STATE(2446), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2266), 2, + STATE(2272), 2, sym_dictionary_splat, sym_pair, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -49142,7 +49865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49159,68 +49882,68 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [18870] = 27, - ACTIONS(43), 1, + [18872] = 27, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, - anon_sym_DASH, - ACTIONS(93), 1, - anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(651), 1, + anon_sym_STAR, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(703), 1, + anon_sym_STAR_STAR, + ACTIONS(843), 1, + anon_sym_not, + ACTIONS(845), 1, + anon_sym_lambda, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(1165), 1, - anon_sym_from, - ACTIONS(1167), 1, - anon_sym_STAR, - STATE(834), 1, + ACTIONS(1175), 1, + anon_sym_RBRACE, + STATE(853), 1, sym_python_string, - STATE(840), 1, + STATE(939), 1, sym_primary_expression, - STATE(989), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1673), 1, + STATE(1902), 1, sym_expression, - STATE(2312), 1, - sym_expression_list, - STATE(2396), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(891), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(311), 4, + STATE(2272), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -49228,7 +49951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49245,68 +49968,68 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [18983] = 27, - ACTIONS(577), 1, + [18985] = 27, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(589), 1, - anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(925), 1, + ACTIONS(651), 1, + anon_sym_STAR, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(703), 1, + anon_sym_STAR_STAR, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(931), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1115), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1169), 1, - anon_sym_from, - ACTIONS(1171), 1, - anon_sym_STAR, - STATE(850), 1, + ACTIONS(1177), 1, + anon_sym_RBRACE, + STATE(853), 1, sym_python_string, - STATE(883), 1, + STATE(939), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1747), 1, + STATE(1902), 1, sym_expression, - STATE(2259), 1, - sym_expression_list, - STATE(2383), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(891), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(923), 4, + STATE(2272), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -49314,7 +50037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49331,68 +50054,68 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [19096] = 27, - ACTIONS(465), 1, - anon_sym_LBRACK, - ACTIONS(467), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, + [19098] = 27, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(649), 1, - anon_sym_STAR, - ACTIONS(653), 1, + ACTIONS(322), 1, + anon_sym_type, + ACTIONS(324), 1, + sym_python_identifier, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(599), 1, anon_sym_DASH, - ACTIONS(723), 1, - anon_sym_STAR_STAR, - ACTIONS(881), 1, + ACTIONS(1181), 1, + anon_sym_from, + ACTIONS(1183), 1, + anon_sym_STAR, + ACTIONS(1185), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(1187), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(1189), 1, anon_sym_await, - ACTIONS(887), 1, - anon_sym_type, - ACTIONS(1139), 1, - sym_python_identifier, - ACTIONS(1173), 1, - anon_sym_RBRACE, - STATE(868), 1, + STATE(833), 1, sym_python_string, - STATE(922), 1, + STATE(882), 1, sym_primary_expression, - STATE(1260), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1879), 1, + STATE(1656), 1, sym_expression, - STATE(2446), 1, + STATE(2176), 1, + sym_expression_list, + STATE(2475), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(597), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2266), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(879), 4, + ACTIONS(1179), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -49400,7 +50123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49417,68 +50140,68 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [19209] = 27, - ACTIONS(465), 1, - anon_sym_LBRACK, + [19211] = 27, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(649), 1, + ACTIONS(651), 1, anon_sym_STAR, - ACTIONS(653), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(723), 1, + ACTIONS(703), 1, anon_sym_STAR_STAR, - ACTIONS(881), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1175), 1, + ACTIONS(1191), 1, anon_sym_RBRACE, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(922), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1879), 1, + STATE(1902), 1, sym_expression, - STATE(2446), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2266), 2, + STATE(2272), 2, sym_dictionary_splat, sym_pair, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -49486,7 +50209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49503,68 +50226,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [19322] = 27, - ACTIONS(43), 1, + [19324] = 26, + ACTIONS(494), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(97), 1, + ACTIONS(506), 1, + anon_sym_DASH, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(323), 1, + ACTIONS(707), 1, + anon_sym_yield, + ACTIONS(829), 1, + anon_sym_not, + ACTIONS(831), 1, + anon_sym_lambda, + ACTIONS(925), 1, + anon_sym_await, + ACTIONS(927), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(929), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, + ACTIONS(1135), 1, anon_sym_LPAREN, - ACTIONS(520), 1, - anon_sym_DASH, - ACTIONS(1179), 1, - anon_sym_from, - ACTIONS(1181), 1, + ACTIONS(1137), 1, anon_sym_STAR, - ACTIONS(1183), 1, - anon_sym_not, - ACTIONS(1185), 1, - anon_sym_lambda, - ACTIONS(1187), 1, - anon_sym_await, - STATE(834), 1, - sym_python_string, - STATE(877), 1, + STATE(837), 1, sym_primary_expression, - STATE(989), 1, + STATE(844), 1, + sym_python_string, + STATE(1133), 1, sym_list_splat_pattern, - STATE(1645), 1, + STATE(1831), 1, sym_expression, - STATE(2159), 1, - sym_expression_list, - STATE(2469), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(518), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1177), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(311), 4, + STATE(2305), 3, + sym_parenthesized_list_splat, + sym_yield, + sym_list_splat, + ACTIONS(923), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -49572,7 +50294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49589,68 +50311,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [19435] = 27, - ACTIONS(625), 1, + [19435] = 26, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, - anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(681), 1, + anon_sym_yield, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, + ACTIONS(1119), 1, + anon_sym_LPAREN, + ACTIONS(1121), 1, + anon_sym_STAR, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1189), 1, - anon_sym_from, - ACTIONS(1191), 1, - anon_sym_STAR, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1774), 1, + STATE(1846), 1, sym_expression, - STATE(2231), 1, - sym_expression_list, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(891), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(863), 4, + STATE(2279), 3, + sym_parenthesized_list_splat, + sym_yield, + sym_list_splat, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -49658,7 +50379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49675,67 +50396,68 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [19548] = 26, - ACTIONS(625), 1, + [19546] = 27, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(629), 1, + ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(637), 1, - anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(701), 1, - anon_sym_yield, - ACTIONS(865), 1, + ACTIONS(651), 1, + anon_sym_STAR, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(703), 1, + anon_sym_STAR_STAR, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1119), 1, - anon_sym_LPAREN, - ACTIONS(1121), 1, - anon_sym_STAR, - ACTIONS(1123), 1, + ACTIONS(1141), 1, sym_python_identifier, - STATE(990), 1, - sym_primary_expression, - STATE(1003), 1, + ACTIONS(1193), 1, + anon_sym_RBRACE, + STATE(853), 1, sym_python_string, - STATE(1347), 1, + STATE(939), 1, + sym_primary_expression, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1902), 1, sym_expression, - STATE(2419), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, - sym_parenthesized_list_splat, - sym_yield, - sym_list_splat, - ACTIONS(863), 4, + STATE(2272), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -49743,7 +50465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49761,67 +50483,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [19659] = 27, - ACTIONS(465), 1, - anon_sym_LBRACK, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(649), 1, + ACTIONS(651), 1, anon_sym_STAR, - ACTIONS(653), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(723), 1, + ACTIONS(703), 1, anon_sym_STAR_STAR, - ACTIONS(881), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1193), 1, + ACTIONS(1195), 1, anon_sym_RBRACE, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(922), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1879), 1, + STATE(1902), 1, sym_expression, - STATE(2446), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2266), 2, + STATE(2272), 2, sym_dictionary_splat, sym_pair, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -49829,7 +50551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49847,66 +50569,66 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [19772] = 27, - ACTIONS(625), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1195), 1, - anon_sym_RBRACK, ACTIONS(1197), 1, + anon_sym_RBRACK, + ACTIONS(1199), 1, anon_sym_COLON, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1761), 1, sym_expression, - STATE(2275), 1, + STATE(2274), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -49914,7 +50636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49932,66 +50654,66 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [19884] = 27, - ACTIONS(625), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, - anon_sym_COLON, ACTIONS(1199), 1, + anon_sym_COLON, + ACTIONS(1201), 1, anon_sym_RBRACK, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1761), 1, sym_expression, - STATE(2275), 1, + STATE(2274), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -49999,7 +50721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50016,67 +50738,66 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [19996] = 27, - ACTIONS(625), 1, - anon_sym_LBRACK, - ACTIONS(627), 1, - anon_sym_LPAREN, - ACTIONS(629), 1, + [19996] = 26, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(89), 1, + anon_sym_not, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(95), 1, + anon_sym_lambda, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(865), 1, - anon_sym_not, - ACTIONS(869), 1, - anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(1123), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(1165), 1, anon_sym_STAR, - ACTIONS(1197), 1, - anon_sym_COLON, - ACTIONS(1201), 1, - anon_sym_RBRACK, - STATE(990), 1, - sym_primary_expression, - STATE(1003), 1, + STATE(833), 1, sym_python_string, - STATE(1347), 1, + STATE(836), 1, + sym_primary_expression, + STATE(960), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1698), 1, sym_expression, - STATE(2275), 1, - sym_slice, - STATE(2419), 1, + STATE(2245), 1, + sym_expression_list, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(1203), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -50084,7 +50805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50101,68 +50822,75 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [20108] = 20, - ACTIONS(465), 1, + [20106] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(474), 1, - anon_sym_STAR, - ACTIONS(478), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(484), 1, - anon_sym_await, - ACTIONS(490), 1, + ACTIONS(621), 1, + sym_identifier, + ACTIONS(625), 1, sym_string_start, - STATE(868), 1, + ACTIONS(875), 1, + anon_sym_not, + ACTIONS(879), 1, + anon_sym_lambda, + ACTIONS(881), 1, + anon_sym_await, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(1123), 1, + sym_python_identifier, + ACTIONS(1151), 1, + anon_sym_STAR, + ACTIONS(1199), 1, + anon_sym_COLON, + ACTIONS(1205), 1, + anon_sym_RBRACK, + STATE(947), 1, + sym_primary_expression, + STATE(952), 1, sym_python_string, - STATE(1260), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1475), 1, - sym_primary_expression, + STATE(1761), 1, + sym_expression, + STATE(2274), 1, + sym_slice, + STATE(2425), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(480), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(463), 3, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(476), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - ACTIONS(301), 9, - anon_sym_GT_GT, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1266), 16, + STATE(1654), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_as_pattern, + sym_conditional_expression, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50179,67 +50907,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [20206] = 27, - ACTIONS(625), 1, + [20218] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_COLON, - ACTIONS(1203), 1, + ACTIONS(1207), 1, anon_sym_RBRACK, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1761), 1, sym_expression, - STATE(2275), 1, + STATE(2274), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -50247,7 +50975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50264,67 +50992,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [20318] = 27, - ACTIONS(625), 1, + [20330] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_COLON, - ACTIONS(1205), 1, + ACTIONS(1209), 1, anon_sym_RBRACK, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1761), 1, sym_expression, - STATE(2275), 1, + STATE(2274), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -50332,7 +51060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50349,67 +51077,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [20430] = 27, - ACTIONS(625), 1, + [20442] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_COLON, - ACTIONS(1207), 1, + ACTIONS(1211), 1, anon_sym_RBRACK, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1761), 1, sym_expression, - STATE(2275), 1, + STATE(2274), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -50417,7 +51145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50434,66 +51162,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [20542] = 26, - ACTIONS(465), 1, + [20554] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(615), 1, + anon_sym_DASH, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(649), 1, - anon_sym_STAR, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(723), 1, - anon_sym_STAR_STAR, - ACTIONS(881), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1123), 1, sym_python_identifier, - STATE(868), 1, - sym_python_string, - STATE(922), 1, + ACTIONS(1151), 1, + anon_sym_STAR, + ACTIONS(1199), 1, + anon_sym_COLON, + ACTIONS(1213), 1, + anon_sym_RBRACK, + STATE(947), 1, sym_primary_expression, - STATE(1260), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1879), 1, + STATE(1761), 1, sym_expression, - STATE(2446), 1, + STATE(2274), 1, + sym_slice, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(2266), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(879), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -50501,7 +51230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50518,66 +51247,66 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [20652] = 26, - ACTIONS(43), 1, + [20666] = 26, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(605), 1, + anon_sym_LPAREN, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(93), 1, - anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(875), 1, + anon_sym_not, + ACTIONS(879), 1, + anon_sym_lambda, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(834), 1, - sym_python_string, - STATE(840), 1, + ACTIONS(1217), 1, + anon_sym_COLON, + STATE(947), 1, sym_primary_expression, - STATE(989), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1705), 1, + STATE(1750), 1, sym_expression, - STATE(2249), 1, - sym_expression_list, - STATE(2396), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1209), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(311), 4, + ACTIONS(1215), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -50585,7 +51314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50602,67 +51331,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [20762] = 27, - ACTIONS(625), 1, + [20776] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_COLON, - ACTIONS(1211), 1, + ACTIONS(1219), 1, anon_sym_RBRACK, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1761), 1, sym_expression, - STATE(2275), 1, + STATE(2274), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -50670,7 +51399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50687,67 +51416,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [20874] = 27, - ACTIONS(625), 1, + [20888] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_COLON, - ACTIONS(1213), 1, + ACTIONS(1221), 1, anon_sym_RBRACK, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1761), 1, sym_expression, - STATE(2275), 1, + STATE(2274), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -50755,7 +51484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50772,67 +51501,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [20986] = 27, - ACTIONS(625), 1, + [21000] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_COLON, - ACTIONS(1215), 1, + ACTIONS(1223), 1, anon_sym_RBRACK, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1761), 1, sym_expression, - STATE(2275), 1, + STATE(2274), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -50840,7 +51569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50857,67 +51586,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [21098] = 27, - ACTIONS(625), 1, + [21112] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_COLON, - ACTIONS(1217), 1, + ACTIONS(1225), 1, anon_sym_RBRACK, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1761), 1, sym_expression, - STATE(2275), 1, + STATE(2274), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -50925,7 +51654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50942,67 +51671,66 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [21210] = 27, - ACTIONS(625), 1, - anon_sym_LBRACK, - ACTIONS(627), 1, - anon_sym_LPAREN, - ACTIONS(629), 1, + [21224] = 26, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(637), 1, - anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(865), 1, - anon_sym_not, - ACTIONS(869), 1, - anon_sym_lambda, - ACTIONS(871), 1, - anon_sym_await, - ACTIONS(873), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(1123), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(599), 1, + anon_sym_DASH, + ACTIONS(1183), 1, anon_sym_STAR, - ACTIONS(1197), 1, - anon_sym_COLON, - ACTIONS(1219), 1, - anon_sym_RBRACK, - STATE(990), 1, - sym_primary_expression, - STATE(1003), 1, + ACTIONS(1185), 1, + anon_sym_not, + ACTIONS(1187), 1, + anon_sym_lambda, + ACTIONS(1189), 1, + anon_sym_await, + ACTIONS(1227), 1, + anon_sym_from, + STATE(833), 1, sym_python_string, - STATE(1347), 1, + STATE(882), 1, + sym_primary_expression, + STATE(960), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1736), 1, sym_expression, - STATE(2275), 1, - sym_slice, - STATE(2419), 1, + STATE(2475), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(597), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(1105), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -51010,7 +51738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51027,67 +51755,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [21322] = 27, - ACTIONS(625), 1, + [21334] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_COLON, - ACTIONS(1221), 1, + ACTIONS(1229), 1, anon_sym_RBRACK, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1761), 1, sym_expression, - STATE(2275), 1, + STATE(2274), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -51095,7 +51823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51112,66 +51840,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [21434] = 26, - ACTIONS(625), 1, + [21446] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1225), 1, + ACTIONS(1199), 1, anon_sym_COLON, - STATE(990), 1, + ACTIONS(1231), 1, + anon_sym_RBRACK, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1750), 1, + STATE(1761), 1, sym_expression, - STATE(2419), 1, + STATE(2274), 1, + sym_slice, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1223), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -51179,7 +51908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51196,66 +51925,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [21544] = 26, - ACTIONS(43), 1, + [21558] = 27, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(605), 1, + anon_sym_LPAREN, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(97), 1, + ACTIONS(615), 1, + anon_sym_DASH, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(323), 1, - anon_sym_type, - ACTIONS(325), 1, - sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(520), 1, - anon_sym_DASH, - ACTIONS(1181), 1, - anon_sym_STAR, - ACTIONS(1183), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(1185), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(1187), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(1227), 1, - anon_sym_from, - STATE(834), 1, - sym_python_string, - STATE(877), 1, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(1123), 1, + sym_python_identifier, + ACTIONS(1151), 1, + anon_sym_STAR, + ACTIONS(1199), 1, + anon_sym_COLON, + ACTIONS(1233), 1, + anon_sym_RBRACK, + STATE(947), 1, sym_primary_expression, - STATE(989), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1698), 1, + STATE(1761), 1, sym_expression, - STATE(2469), 1, + STATE(2274), 1, + sym_slice, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(518), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1131), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(311), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -51263,7 +51993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51280,67 +52010,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [21654] = 27, - ACTIONS(625), 1, + [21670] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_COLON, - ACTIONS(1229), 1, + ACTIONS(1235), 1, anon_sym_RBRACK, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1761), 1, sym_expression, - STATE(2275), 1, + STATE(2274), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -51348,7 +52078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51365,67 +52095,66 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [21766] = 27, - ACTIONS(625), 1, + [21782] = 26, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1239), 1, anon_sym_COLON, - ACTIONS(1231), 1, - anon_sym_RBRACK, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1739), 1, sym_expression, - STATE(2275), 1, - sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(1237), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -51433,7 +52162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51450,67 +52179,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [21878] = 27, - ACTIONS(625), 1, + [21892] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_COLON, - ACTIONS(1233), 1, + ACTIONS(1241), 1, anon_sym_RBRACK, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1761), 1, sym_expression, - STATE(2275), 1, + STATE(2274), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -51518,7 +52247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51535,66 +52264,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [21990] = 26, - ACTIONS(43), 1, + [22004] = 27, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(605), 1, + anon_sym_LPAREN, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(97), 1, + ACTIONS(615), 1, + anon_sym_DASH, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(323), 1, - anon_sym_type, - ACTIONS(325), 1, - sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(520), 1, - anon_sym_DASH, - ACTIONS(1181), 1, - anon_sym_STAR, - ACTIONS(1183), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(1185), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(1187), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(1235), 1, - anon_sym_from, - STATE(834), 1, - sym_python_string, - STATE(877), 1, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(1123), 1, + sym_python_identifier, + ACTIONS(1151), 1, + anon_sym_STAR, + ACTIONS(1199), 1, + anon_sym_COLON, + ACTIONS(1243), 1, + anon_sym_RBRACK, + STATE(947), 1, sym_primary_expression, - STATE(989), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1698), 1, + STATE(1761), 1, sym_expression, - STATE(2469), 1, + STATE(2274), 1, + sym_slice, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(518), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(311), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -51602,7 +52332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51619,67 +52349,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [22100] = 27, - ACTIONS(625), 1, + [22116] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_COLON, - ACTIONS(1237), 1, + ACTIONS(1245), 1, anon_sym_RBRACK, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1761), 1, sym_expression, - STATE(2275), 1, + STATE(2274), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -51687,7 +52417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51704,67 +52434,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [22212] = 27, - ACTIONS(625), 1, + [22228] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_COLON, - ACTIONS(1239), 1, + ACTIONS(1247), 1, anon_sym_RBRACK, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1761), 1, sym_expression, - STATE(2275), 1, + STATE(2274), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -51772,7 +52502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51789,67 +52519,66 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [22324] = 27, - ACTIONS(625), 1, - anon_sym_LBRACK, - ACTIONS(627), 1, - anon_sym_LPAREN, - ACTIONS(629), 1, + [22340] = 26, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(637), 1, - anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(865), 1, - anon_sym_not, - ACTIONS(869), 1, - anon_sym_lambda, - ACTIONS(871), 1, - anon_sym_await, - ACTIONS(873), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(1123), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(599), 1, + anon_sym_DASH, + ACTIONS(1183), 1, anon_sym_STAR, - ACTIONS(1197), 1, - anon_sym_COLON, - ACTIONS(1241), 1, - anon_sym_RBRACK, - STATE(990), 1, - sym_primary_expression, - STATE(1003), 1, + ACTIONS(1185), 1, + anon_sym_not, + ACTIONS(1187), 1, + anon_sym_lambda, + ACTIONS(1189), 1, + anon_sym_await, + ACTIONS(1249), 1, + anon_sym_from, + STATE(833), 1, sym_python_string, - STATE(1347), 1, + STATE(882), 1, + sym_primary_expression, + STATE(960), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1736), 1, sym_expression, - STATE(2275), 1, - sym_slice, - STATE(2419), 1, + STATE(2475), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(597), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(1133), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -51857,7 +52586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51874,67 +52603,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [22436] = 27, - ACTIONS(625), 1, + [22450] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_COLON, - ACTIONS(1243), 1, + ACTIONS(1251), 1, anon_sym_RBRACK, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1761), 1, sym_expression, - STATE(2275), 1, + STATE(2274), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -51942,7 +52671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51959,68 +52688,75 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [22548] = 20, - ACTIONS(465), 1, + [22562] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(474), 1, - anon_sym_STAR, - ACTIONS(478), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(484), 1, - anon_sym_await, - ACTIONS(490), 1, + ACTIONS(621), 1, + sym_identifier, + ACTIONS(625), 1, sym_string_start, - STATE(868), 1, + ACTIONS(875), 1, + anon_sym_not, + ACTIONS(879), 1, + anon_sym_lambda, + ACTIONS(881), 1, + anon_sym_await, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(1123), 1, + sym_python_identifier, + ACTIONS(1151), 1, + anon_sym_STAR, + ACTIONS(1199), 1, + anon_sym_COLON, + ACTIONS(1253), 1, + anon_sym_RBRACK, + STATE(947), 1, + sym_primary_expression, + STATE(952), 1, sym_python_string, - STATE(1260), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1475), 1, - sym_primary_expression, + STATE(1761), 1, + sym_expression, + STATE(2274), 1, + sym_slice, + STATE(2425), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(480), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(1245), 3, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(476), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - ACTIONS(301), 9, - anon_sym_GT_GT, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1266), 16, + STATE(1654), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_as_pattern, + sym_conditional_expression, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52037,67 +52773,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [22646] = 27, - ACTIONS(625), 1, + [22674] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_COLON, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_RBRACK, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1761), 1, sym_expression, - STATE(2275), 1, + STATE(2274), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -52105,7 +52841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52122,67 +52858,66 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [22758] = 27, - ACTIONS(625), 1, + [22786] = 26, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(637), 1, - anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(651), 1, + anon_sym_STAR, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(703), 1, + anon_sym_STAR_STAR, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1123), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1191), 1, - anon_sym_STAR, - ACTIONS(1197), 1, - anon_sym_COLON, - ACTIONS(1249), 1, - anon_sym_RBRACK, - STATE(990), 1, - sym_primary_expression, - STATE(1003), 1, + STATE(853), 1, sym_python_string, - STATE(1347), 1, + STATE(939), 1, + sym_primary_expression, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1902), 1, sym_expression, - STATE(2275), 1, - sym_slice, - STATE(2419), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + STATE(2272), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -52190,7 +52925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52207,75 +52942,68 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [22870] = 27, - ACTIONS(625), 1, + [22896] = 20, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(476), 1, + anon_sym_STAR, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(643), 1, - sym_identifier, - ACTIONS(647), 1, - sym_string_start, - ACTIONS(865), 1, - anon_sym_not, - ACTIONS(869), 1, - anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(486), 1, anon_sym_await, - ACTIONS(873), 1, - anon_sym_type, - ACTIONS(1123), 1, - sym_python_identifier, - ACTIONS(1191), 1, - anon_sym_STAR, - ACTIONS(1197), 1, - anon_sym_COLON, - ACTIONS(1251), 1, - anon_sym_RBRACK, - STATE(990), 1, - sym_primary_expression, - STATE(1003), 1, + ACTIONS(492), 1, + sym_string_start, + STATE(853), 1, sym_python_string, - STATE(1347), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1749), 1, - sym_expression, - STATE(2275), 1, - sym_slice, - STATE(2419), 1, - sym__named_expression_lhs, + STATE(1452), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(302), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(488), 2, + anon_sym_type, + sym_identifier, + ACTIONS(465), 3, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_as_pattern, - sym_conditional_expression, - STATE(1379), 16, + sym_python_identifier, + ACTIONS(300), 9, + anon_sym_GT_GT, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52292,67 +53020,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [22982] = 27, - ACTIONS(625), 1, + [22994] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_COLON, - ACTIONS(1253), 1, + ACTIONS(1257), 1, anon_sym_RBRACK, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1761), 1, sym_expression, - STATE(2275), 1, + STATE(2274), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -52360,7 +53088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52377,67 +53105,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [23094] = 27, - ACTIONS(625), 1, + [23106] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_COLON, - ACTIONS(1255), 1, + ACTIONS(1259), 1, anon_sym_RBRACK, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1761), 1, sym_expression, - STATE(2275), 1, + STATE(2274), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -52445,7 +53173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52462,75 +53190,68 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [23206] = 27, - ACTIONS(625), 1, + [23218] = 20, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(476), 1, + anon_sym_STAR, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(643), 1, - sym_identifier, - ACTIONS(647), 1, - sym_string_start, - ACTIONS(865), 1, - anon_sym_not, - ACTIONS(869), 1, - anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(486), 1, anon_sym_await, - ACTIONS(873), 1, - anon_sym_type, - ACTIONS(1123), 1, - sym_python_identifier, - ACTIONS(1191), 1, - anon_sym_STAR, - ACTIONS(1197), 1, - anon_sym_COLON, - ACTIONS(1257), 1, - anon_sym_RBRACK, - STATE(990), 1, - sym_primary_expression, - STATE(1003), 1, + ACTIONS(492), 1, + sym_string_start, + STATE(853), 1, sym_python_string, - STATE(1347), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1749), 1, - sym_expression, - STATE(2275), 1, - sym_slice, - STATE(2419), 1, - sym__named_expression_lhs, + STATE(1452), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(302), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(488), 2, + anon_sym_type, + sym_identifier, + ACTIONS(1261), 3, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_as_pattern, - sym_conditional_expression, - STATE(1379), 16, + sym_python_identifier, + ACTIONS(300), 9, + anon_sym_GT_GT, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52547,67 +53268,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [23318] = 27, - ACTIONS(625), 1, + [23316] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_COLON, - ACTIONS(1259), 1, + ACTIONS(1263), 1, anon_sym_RBRACK, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1761), 1, sym_expression, - STATE(2275), 1, + STATE(2274), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -52615,7 +53336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52632,67 +53353,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [23430] = 27, - ACTIONS(625), 1, + [23428] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_COLON, - ACTIONS(1261), 1, + ACTIONS(1265), 1, anon_sym_RBRACK, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1761), 1, sym_expression, - STATE(2275), 1, + STATE(2274), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -52700,7 +53421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52717,67 +53438,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [23542] = 27, - ACTIONS(625), 1, + [23540] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_COLON, - ACTIONS(1263), 1, + ACTIONS(1267), 1, anon_sym_RBRACK, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1761), 1, sym_expression, - STATE(2275), 1, + STATE(2274), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -52785,7 +53506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52802,67 +53523,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [23654] = 27, - ACTIONS(625), 1, + [23652] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_COLON, - ACTIONS(1265), 1, + ACTIONS(1269), 1, anon_sym_RBRACK, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1761), 1, sym_expression, - STATE(2275), 1, + STATE(2274), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -52870,7 +53591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52887,67 +53608,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [23766] = 27, - ACTIONS(625), 1, + [23764] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_COLON, - ACTIONS(1267), 1, + ACTIONS(1271), 1, anon_sym_RBRACK, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1761), 1, sym_expression, - STATE(2275), 1, + STATE(2274), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -52955,7 +53676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52972,66 +53693,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [23878] = 26, - ACTIONS(625), 1, + [23876] = 27, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1199), 1, anon_sym_COLON, - STATE(990), 1, + ACTIONS(1273), 1, + anon_sym_RBRACK, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1764), 1, + STATE(1761), 1, sym_expression, - STATE(2419), 1, + STATE(2274), 1, + sym_slice, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1269), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -53039,7 +53761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53057,63 +53779,63 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [23988] = 25, - ACTIONS(43), 1, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(605), 1, + anon_sym_LPAREN, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(93), 1, - anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(875), 1, + anon_sym_not, + ACTIONS(879), 1, + anon_sym_lambda, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(834), 1, - sym_python_string, - STATE(840), 1, + STATE(947), 1, sym_primary_expression, - STATE(989), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1775), 1, + STATE(1787), 1, sym_expression, - STATE(2396), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(311), 4, + ACTIONS(1275), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -53121,7 +53843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53139,64 +53861,64 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [24095] = 26, - ACTIONS(625), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_COLON, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1666), 1, + STATE(1677), 1, sym_expression, - STATE(2062), 1, + STATE(2141), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -53204,7 +53926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53221,65 +53943,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [24204] = 26, - ACTIONS(465), 1, - anon_sym_LBRACK, - ACTIONS(469), 1, + [24204] = 25, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(89), 1, + anon_sym_not, + ACTIONS(93), 1, + anon_sym_DASH, + ACTIONS(95), 1, + anon_sym_lambda, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(881), 1, - anon_sym_not, - ACTIONS(883), 1, - anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(1273), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(868), 1, + STATE(833), 1, sym_python_string, - STATE(922), 1, + STATE(836), 1, sym_primary_expression, - STATE(1260), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1776), 1, + STATE(1768), 1, sym_expression, - STATE(2064), 1, - sym_with_item, - STATE(2446), 1, + STATE(2402), 1, sym__named_expression_lhs, - STATE(2532), 1, - sym_with_clause, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(1277), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -53287,7 +54008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53304,64 +54025,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [24313] = 25, - ACTIONS(43), 1, + [24311] = 25, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_not, - ACTIONS(91), 1, - anon_sym_DASH, ACTIONS(93), 1, + anon_sym_DASH, + ACTIONS(95), 1, anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(834), 1, + STATE(833), 1, sym_python_string, - STATE(840), 1, + STATE(836), 1, sym_primary_expression, - STATE(989), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1775), 1, + STATE(1768), 1, sym_expression, - STATE(2396), 1, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1277), 2, + ACTIONS(1279), 2, sym__newline, anon_sym_SEMI, - ACTIONS(311), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -53369,7 +54090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53386,64 +54107,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [24420] = 25, - ACTIONS(527), 1, - anon_sym_LBRACK, - ACTIONS(529), 1, - anon_sym_LPAREN, - ACTIONS(531), 1, + [24418] = 25, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(89), 1, + anon_sym_not, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(95), 1, + anon_sym_lambda, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(721), 1, - anon_sym_not, - ACTIONS(729), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(1095), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(1165), 1, anon_sym_STAR, - ACTIONS(1097), 1, - anon_sym_lambda, - STATE(838), 1, + STATE(833), 1, sym_python_string, - STATE(839), 1, + STATE(836), 1, sym_primary_expression, - STATE(1136), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1679), 1, + STATE(1768), 1, sym_expression, - STATE(2454), 1, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1899), 2, - sym_lambda_within_for_in_clause, - sym__expression_within_for_in_clause, - ACTIONS(719), 4, + ACTIONS(1281), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -53451,7 +54172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53468,72 +54189,68 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [24527] = 25, - ACTIONS(625), 1, + [24525] = 21, + ACTIONS(288), 1, + anon_sym_in, + ACTIONS(292), 1, + anon_sym_COMMA, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(476), 1, + anon_sym_STAR, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(643), 1, - sym_identifier, - ACTIONS(647), 1, - sym_string_start, - ACTIONS(865), 1, - anon_sym_not, - ACTIONS(869), 1, - anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(486), 1, anon_sym_await, - ACTIONS(873), 1, - anon_sym_type, - ACTIONS(1123), 1, - sym_python_identifier, - ACTIONS(1191), 1, - anon_sym_STAR, - STATE(990), 1, - sym_primary_expression, - STATE(1003), 1, + ACTIONS(492), 1, + sym_string_start, + STATE(853), 1, sym_python_string, - STATE(1347), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1802), 1, - sym_expression, - STATE(2419), 1, - sym__named_expression_lhs, + STATE(1452), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(302), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1279), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(863), 4, + ACTIONS(488), 2, + anon_sym_type, + sym_identifier, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_as_pattern, - sym_conditional_expression, - STATE(1379), 16, + sym_python_identifier, + ACTIONS(300), 9, + anon_sym_GT_GT, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53550,64 +54267,65 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [24634] = 25, - ACTIONS(43), 1, + [24624] = 26, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(605), 1, + anon_sym_LPAREN, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(93), 1, - anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(875), 1, + anon_sym_not, + ACTIONS(879), 1, + anon_sym_lambda, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(834), 1, - sym_python_string, - STATE(840), 1, + ACTIONS(1199), 1, + anon_sym_COLON, + STATE(947), 1, sym_primary_expression, - STATE(989), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1739), 1, + STATE(1678), 1, sym_expression, - STATE(2396), 1, + STATE(2106), 1, + sym_slice, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1281), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(311), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -53615,7 +54333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53632,64 +54350,65 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [24741] = 25, - ACTIONS(553), 1, + [24733] = 26, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(675), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(961), 1, + ACTIONS(879), 1, + anon_sym_lambda, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1089), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1093), 1, - anon_sym_lambda, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + ACTIONS(1199), 1, + anon_sym_COLON, + STATE(947), 1, sym_primary_expression, - STATE(1172), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1729), 1, + STATE(1737), 1, sym_expression, - STATE(2497), 1, + STATE(2223), 1, + sym_slice, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1876), 2, - sym_lambda_within_for_in_clause, - sym__expression_within_for_in_clause, - ACTIONS(959), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -53697,7 +54416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53714,64 +54433,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [24848] = 25, - ACTIONS(43), 1, + [24842] = 25, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_not, - ACTIONS(91), 1, - anon_sym_DASH, ACTIONS(93), 1, + anon_sym_DASH, + ACTIONS(95), 1, anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(834), 1, + STATE(833), 1, sym_python_string, - STATE(840), 1, + STATE(836), 1, sym_primary_expression, - STATE(989), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1775), 1, + STATE(1768), 1, sym_expression, - STATE(2396), 1, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, ACTIONS(1283), 2, sym__newline, anon_sym_SEMI, - ACTIONS(311), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -53779,7 +54498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53796,65 +54515,65 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [24955] = 26, - ACTIONS(465), 1, + [24949] = 26, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(469), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(881), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1273), 1, + ACTIONS(1285), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(922), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1776), 1, + STATE(1812), 1, sym_expression, - STATE(2064), 1, + STATE(2073), 1, sym_with_item, - STATE(2446), 1, + STATE(2452), 1, sym__named_expression_lhs, - STATE(2548), 1, + STATE(2484), 1, sym_with_clause, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -53862,7 +54581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53879,64 +54598,65 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [25064] = 25, - ACTIONS(553), 1, + [25058] = 26, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(675), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(961), 1, + ACTIONS(903), 1, + anon_sym_lambda, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(1111), 1, sym_python_identifier, - ACTIONS(1089), 1, + ACTIONS(1147), 1, anon_sym_STAR, - ACTIONS(1093), 1, - anon_sym_lambda, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + ACTIONS(1289), 1, + anon_sym_RPAREN, + STATE(876), 1, sym_primary_expression, - STATE(1172), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1687), 1, + STATE(1794), 1, sym_expression, - STATE(2497), 1, + STATE(2271), 1, + sym_with_item, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1869), 2, - sym_lambda_within_for_in_clause, - sym__expression_within_for_in_clause, - ACTIONS(959), 4, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -53944,7 +54664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53961,65 +54681,65 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [25171] = 26, - ACTIONS(625), 1, + [25167] = 26, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_COLON, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1658), 1, + STATE(1703), 1, sym_expression, - STATE(2040), 1, + STATE(2059), 1, sym_slice, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -54027,7 +54747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54044,64 +54764,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [25280] = 25, - ACTIONS(527), 1, + [25276] = 25, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(721), 1, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(729), 1, + ACTIONS(987), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(991), 1, sym_python_identifier, - ACTIONS(1095), 1, - anon_sym_STAR, ACTIONS(1097), 1, + anon_sym_STAR, + ACTIONS(1099), 1, anon_sym_lambda, - STATE(838), 1, + STATE(859), 1, sym_python_string, - STATE(839), 1, + STATE(860), 1, sym_primary_expression, - STATE(1136), 1, + STATE(1294), 1, sym_list_splat_pattern, STATE(1683), 1, sym_expression, - STATE(2454), 1, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1884), 2, + STATE(1905), 2, sym_lambda_within_for_in_clause, sym__expression_within_for_in_clause, - ACTIONS(719), 4, + ACTIONS(985), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -54109,7 +54829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54126,64 +54846,65 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [25387] = 25, - ACTIONS(43), 1, + [25383] = 26, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, - anon_sym_DASH, - ACTIONS(93), 1, - anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(843), 1, + anon_sym_not, + ACTIONS(845), 1, + anon_sym_lambda, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(834), 1, + ACTIONS(1291), 1, + anon_sym_COLON, + STATE(853), 1, sym_python_string, - STATE(840), 1, + STATE(939), 1, sym_primary_expression, - STATE(989), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1739), 1, + STATE(1812), 1, sym_expression, - STATE(2396), 1, + STATE(2269), 1, + sym_with_item, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1285), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(311), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -54191,7 +54912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54208,64 +54929,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [25494] = 25, - ACTIONS(527), 1, + [25492] = 25, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(560), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(721), 1, + ACTIONS(701), 1, anon_sym_not, - ACTIONS(729), 1, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(711), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(713), 1, sym_python_identifier, - ACTIONS(1095), 1, + ACTIONS(1091), 1, anon_sym_STAR, - ACTIONS(1097), 1, + ACTIONS(1095), 1, anon_sym_lambda, - STATE(838), 1, - sym_python_string, STATE(839), 1, sym_primary_expression, - STATE(1136), 1, + STATE(840), 1, + sym_python_string, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1705), 1, sym_expression, - STATE(2454), 1, + STATE(2469), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1853), 2, + STATE(1867), 2, sym_lambda_within_for_in_clause, sym__expression_within_for_in_clause, - ACTIONS(719), 4, + ACTIONS(699), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 5, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -54273,7 +54994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54290,65 +55011,65 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [25601] = 26, - ACTIONS(577), 1, + [25599] = 26, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(925), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(931), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(1115), 1, + ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1171), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1287), 1, - anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + ACTIONS(1199), 1, + anon_sym_COLON, + STATE(947), 1, sym_primary_expression, - STATE(1193), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1786), 1, + STATE(1708), 1, sym_expression, - STATE(2273), 1, - sym_with_item, - STATE(2383), 1, + STATE(2178), 1, + sym_slice, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(923), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -54356,7 +55077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54373,72 +55094,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [25710] = 25, - ACTIONS(601), 1, + [25708] = 20, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(476), 1, + anon_sym_STAR, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(619), 1, - sym_identifier, - ACTIONS(623), 1, - sym_string_start, - ACTIONS(697), 1, - anon_sym_not, - ACTIONS(997), 1, + ACTIONS(486), 1, anon_sym_await, - ACTIONS(999), 1, - anon_sym_type, - ACTIONS(1001), 1, - sym_python_identifier, - ACTIONS(1133), 1, - anon_sym_STAR, - ACTIONS(1135), 1, - anon_sym_lambda, - STATE(857), 1, + ACTIONS(492), 1, + sym_string_start, + STATE(853), 1, sym_python_string, - STATE(858), 1, - sym_primary_expression, - STATE(1163), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1730), 1, - sym_expression, - STATE(2557), 1, - sym__named_expression_lhs, + STATE(1452), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(292), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(302), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1888), 2, - sym_lambda_within_for_in_clause, - sym__expression_within_for_in_clause, - ACTIONS(995), 4, + ACTIONS(488), 2, + anon_sym_type, + sym_identifier, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_as_pattern, - sym_conditional_expression, - STATE(1283), 16, + sym_python_identifier, + ACTIONS(300), 9, + anon_sym_GT_GT, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54455,64 +55171,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [25817] = 25, - ACTIONS(43), 1, + [25805] = 25, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_not, - ACTIONS(91), 1, - anon_sym_DASH, ACTIONS(93), 1, + anon_sym_DASH, + ACTIONS(95), 1, anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(834), 1, + STATE(833), 1, sym_python_string, - STATE(840), 1, + STATE(836), 1, sym_primary_expression, - STATE(989), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1775), 1, + STATE(1765), 1, sym_expression, - STATE(2396), 1, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1131), 2, + ACTIONS(1293), 2, sym__newline, anon_sym_SEMI, - ACTIONS(311), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -54520,7 +55236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54537,65 +55253,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [25924] = 26, - ACTIONS(625), 1, - anon_sym_LBRACK, + [25912] = 25, ACTIONS(627), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(637), 1, - anon_sym_DASH, ACTIONS(639), 1, + anon_sym_DASH, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(869), 1, - anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(987), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(1123), 1, + ACTIONS(991), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1097), 1, anon_sym_STAR, - ACTIONS(1197), 1, - anon_sym_COLON, - STATE(990), 1, - sym_primary_expression, - STATE(1003), 1, + ACTIONS(1099), 1, + anon_sym_lambda, + STATE(859), 1, sym_python_string, - STATE(1347), 1, + STATE(860), 1, + sym_primary_expression, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1717), 1, - sym_expression, - STATE(2182), 1, - sym_slice, - STATE(2419), 1, + STATE(1688), 1, + sym_expression, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + STATE(1814), 2, + sym_lambda_within_for_in_clause, + sym__expression_within_for_in_clause, + ACTIONS(985), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -54603,7 +55318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54620,67 +55335,72 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [26033] = 20, - ACTIONS(465), 1, + [26019] = 25, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(474), 1, - anon_sym_STAR, - ACTIONS(478), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(484), 1, - anon_sym_await, - ACTIONS(490), 1, + ACTIONS(589), 1, + sym_identifier, + ACTIONS(593), 1, sym_string_start, - STATE(868), 1, + ACTIONS(729), 1, + anon_sym_not, + ACTIONS(963), 1, + anon_sym_await, + ACTIONS(965), 1, + anon_sym_type, + ACTIONS(967), 1, + sym_python_identifier, + ACTIONS(1101), 1, + anon_sym_STAR, + ACTIONS(1103), 1, + anon_sym_lambda, + STATE(893), 1, + sym_primary_expression, + STATE(894), 1, sym_python_string, - STATE(1260), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1475), 1, - sym_primary_expression, + STATE(1724), 1, + sym_expression, + STATE(2543), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(290), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(303), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(480), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(476), 4, + STATE(1940), 2, + sym_lambda_within_for_in_clause, + sym__expression_within_for_in_clause, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - ACTIONS(301), 9, - anon_sym_GT_GT, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1266), 16, + STATE(1685), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_as_pattern, + sym_conditional_expression, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54697,57 +55417,57 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [26130] = 20, - ACTIONS(465), 1, - anon_sym_LBRACK, + [26126] = 20, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(474), 1, + ACTIONS(476), 1, anon_sym_STAR, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, - sym_ellipsis, ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(486), 1, anon_sym_await, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1475), 1, + STATE(1452), 1, sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(463), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(471), 2, + ACTIONS(302), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(486), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(476), 4, + ACTIONS(1261), 2, + anon_sym_COLON, + anon_sym_COMMA, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - ACTIONS(524), 9, + ACTIONS(300), 9, anon_sym_GT_GT, anon_sym_AT, anon_sym_PERCENT, @@ -54757,7 +55477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54774,65 +55494,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [26227] = 26, - ACTIONS(465), 1, + [26223] = 25, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(583), 1, + anon_sym_DASH, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(881), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(883), 1, - anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(967), 1, sym_python_identifier, - ACTIONS(1275), 1, + ACTIONS(1101), 1, anon_sym_STAR, - ACTIONS(1289), 1, - anon_sym_COLON, - STATE(868), 1, - sym_python_string, - STATE(922), 1, + ACTIONS(1103), 1, + anon_sym_lambda, + STATE(893), 1, sym_primary_expression, - STATE(1260), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1776), 1, + STATE(1695), 1, sym_expression, - STATE(2282), 1, - sym_with_item, - STATE(2446), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + STATE(1954), 2, + sym_lambda_within_for_in_clause, + sym__expression_within_for_in_clause, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -54840,7 +55559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54857,64 +55576,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [26336] = 25, - ACTIONS(553), 1, + [26330] = 25, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(675), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(961), 1, - anon_sym_await, ACTIONS(963), 1, - anon_sym_type, + anon_sym_await, ACTIONS(965), 1, + anon_sym_type, + ACTIONS(967), 1, sym_python_identifier, - ACTIONS(1089), 1, + ACTIONS(1101), 1, anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1103), 1, anon_sym_lambda, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(893), 1, sym_primary_expression, - STATE(1172), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1737), 1, + STATE(1680), 1, sym_expression, - STATE(2497), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1878), 2, + STATE(1929), 2, sym_lambda_within_for_in_clause, sym__expression_within_for_in_clause, - ACTIONS(959), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -54922,7 +55641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54939,67 +55658,72 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [26443] = 20, - ACTIONS(465), 1, + [26437] = 25, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(474), 1, - anon_sym_STAR, - ACTIONS(478), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(484), 1, - anon_sym_await, - ACTIONS(490), 1, + ACTIONS(645), 1, + sym_identifier, + ACTIONS(649), 1, sym_string_start, - STATE(868), 1, + ACTIONS(677), 1, + anon_sym_not, + ACTIONS(987), 1, + anon_sym_await, + ACTIONS(989), 1, + anon_sym_type, + ACTIONS(991), 1, + sym_python_identifier, + ACTIONS(1097), 1, + anon_sym_STAR, + ACTIONS(1099), 1, + anon_sym_lambda, + STATE(859), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1475), 1, + STATE(860), 1, sym_primary_expression, + STATE(1294), 1, + sym_list_splat_pattern, + STATE(1688), 1, + sym_expression, + STATE(2482), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(290), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(303), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(480), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(476), 4, + STATE(1789), 2, + sym_lambda_within_for_in_clause, + sym__expression_within_for_in_clause, + ACTIONS(985), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - ACTIONS(301), 9, - anon_sym_GT_GT, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1266), 16, + STATE(1702), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_as_pattern, + sym_conditional_expression, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55016,67 +55740,72 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [26540] = 20, - ACTIONS(465), 1, - anon_sym_LBRACK, - ACTIONS(467), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, + [26544] = 25, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(474), 1, - anon_sym_STAR, - ACTIONS(478), 1, + ACTIONS(89), 1, + anon_sym_not, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(95), 1, + anon_sym_lambda, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(484), 1, - anon_sym_await, - ACTIONS(490), 1, + ACTIONS(111), 1, + sym_identifier, + ACTIONS(115), 1, sym_string_start, - STATE(868), 1, + ACTIONS(320), 1, + anon_sym_await, + ACTIONS(322), 1, + anon_sym_type, + ACTIONS(324), 1, + sym_python_identifier, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(1165), 1, + anon_sym_STAR, + STATE(833), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1475), 1, + STATE(836), 1, sym_primary_expression, + STATE(960), 1, + sym_list_splat_pattern, + STATE(1765), 1, + sym_expression, + STATE(2402), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(463), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(471), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(480), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(476), 4, + ACTIONS(1133), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - ACTIONS(524), 9, - anon_sym_GT_GT, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1266), 16, + STATE(1526), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_as_pattern, + sym_conditional_expression, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55093,64 +55822,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [26637] = 25, - ACTIONS(553), 1, + [26651] = 25, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(560), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(675), 1, + ACTIONS(701), 1, anon_sym_not, - ACTIONS(961), 1, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(711), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(713), 1, sym_python_identifier, - ACTIONS(1089), 1, + ACTIONS(1091), 1, anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1095), 1, anon_sym_lambda, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(839), 1, sym_primary_expression, - STATE(1172), 1, + STATE(840), 1, + sym_python_string, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1729), 1, + STATE(1705), 1, sym_expression, - STATE(2497), 1, + STATE(2469), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1778), 2, + STATE(1869), 2, sym_lambda_within_for_in_clause, sym__expression_within_for_in_clause, - ACTIONS(959), 4, + ACTIONS(699), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -55158,7 +55887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55175,67 +55904,72 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [26744] = 20, - ACTIONS(465), 1, + [26758] = 25, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(474), 1, - anon_sym_STAR, - ACTIONS(478), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(484), 1, - anon_sym_await, - ACTIONS(490), 1, + ACTIONS(560), 1, + sym_identifier, + ACTIONS(564), 1, sym_string_start, - STATE(868), 1, + ACTIONS(701), 1, + anon_sym_not, + ACTIONS(709), 1, + anon_sym_await, + ACTIONS(711), 1, + anon_sym_type, + ACTIONS(713), 1, + sym_python_identifier, + ACTIONS(1091), 1, + anon_sym_STAR, + ACTIONS(1095), 1, + anon_sym_lambda, + STATE(839), 1, + sym_primary_expression, + STATE(840), 1, sym_python_string, - STATE(1260), 1, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1475), 1, - sym_primary_expression, + STATE(1697), 1, + sym_expression, + STATE(2469), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(480), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(1245), 2, - anon_sym_COLON, - anon_sym_COMMA, - ACTIONS(476), 4, + STATE(1894), 2, + sym_lambda_within_for_in_clause, + sym__expression_within_for_in_clause, + ACTIONS(699), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - ACTIONS(301), 9, - anon_sym_GT_GT, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1266), 16, + STATE(1657), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_as_pattern, + sym_conditional_expression, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55252,68 +55986,73 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [26841] = 21, - ACTIONS(286), 1, - anon_sym_in, - ACTIONS(290), 1, - anon_sym_COMMA, - ACTIONS(465), 1, + [26865] = 26, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(474), 1, - anon_sym_STAR, - ACTIONS(478), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(484), 1, - anon_sym_await, - ACTIONS(490), 1, + ACTIONS(621), 1, + sym_identifier, + ACTIONS(625), 1, sym_string_start, - STATE(868), 1, + ACTIONS(875), 1, + anon_sym_not, + ACTIONS(879), 1, + anon_sym_lambda, + ACTIONS(881), 1, + anon_sym_await, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(1123), 1, + sym_python_identifier, + ACTIONS(1151), 1, + anon_sym_STAR, + ACTIONS(1199), 1, + anon_sym_COLON, + STATE(947), 1, + sym_primary_expression, + STATE(952), 1, sym_python_string, - STATE(1260), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1475), 1, - sym_primary_expression, + STATE(1687), 1, + sym_expression, + STATE(2038), 1, + sym_slice, + STATE(2425), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(480), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(476), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - ACTIONS(301), 9, - anon_sym_GT_GT, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1266), 16, + STATE(1654), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_as_pattern, + sym_conditional_expression, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55330,65 +56069,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [26940] = 26, - ACTIONS(625), 1, + [26974] = 25, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(560), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(701), 1, anon_sym_not, - ACTIONS(869), 1, - anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(711), 1, anon_sym_type, - ACTIONS(1123), 1, + ACTIONS(713), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1091), 1, anon_sym_STAR, - ACTIONS(1197), 1, - anon_sym_COLON, - STATE(990), 1, + ACTIONS(1095), 1, + anon_sym_lambda, + STATE(839), 1, sym_primary_expression, - STATE(1003), 1, + STATE(840), 1, sym_python_string, - STATE(1347), 1, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1704), 1, + STATE(1692), 1, sym_expression, - STATE(2080), 1, - sym_slice, - STATE(2419), 1, + STATE(2469), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + STATE(1900), 2, + sym_lambda_within_for_in_clause, + sym__expression_within_for_in_clause, + ACTIONS(699), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -55396,7 +56134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55413,65 +56151,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [27049] = 26, - ACTIONS(625), 1, + [27081] = 25, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(560), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(701), 1, anon_sym_not, - ACTIONS(869), 1, - anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(711), 1, anon_sym_type, - ACTIONS(1123), 1, + ACTIONS(713), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1091), 1, anon_sym_STAR, - ACTIONS(1197), 1, - anon_sym_COLON, - STATE(990), 1, + ACTIONS(1095), 1, + anon_sym_lambda, + STATE(839), 1, sym_primary_expression, - STATE(1003), 1, + STATE(840), 1, sym_python_string, - STATE(1347), 1, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1731), 1, + STATE(1705), 1, sym_expression, - STATE(2170), 1, - sym_slice, - STATE(2419), 1, + STATE(2469), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + STATE(1898), 2, + sym_lambda_within_for_in_clause, + sym__expression_within_for_in_clause, + ACTIONS(699), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -55479,7 +56216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55496,72 +56233,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [27158] = 25, - ACTIONS(577), 1, + [27188] = 20, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(476), 1, + anon_sym_STAR, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(595), 1, - sym_identifier, - ACTIONS(599), 1, - sym_string_start, - ACTIONS(925), 1, - anon_sym_not, - ACTIONS(929), 1, - anon_sym_lambda, - ACTIONS(931), 1, + ACTIONS(486), 1, anon_sym_await, - ACTIONS(933), 1, - anon_sym_type, - ACTIONS(1115), 1, - sym_python_identifier, - ACTIONS(1171), 1, - anon_sym_STAR, - STATE(850), 1, + ACTIONS(492), 1, + sym_string_start, + STATE(853), 1, sym_python_string, - STATE(883), 1, - sym_primary_expression, - STATE(1193), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1777), 1, - sym_expression, - STATE(2383), 1, - sym__named_expression_lhs, + STATE(1452), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(465), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(473), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(923), 4, + ACTIONS(488), 2, + anon_sym_type, + sym_identifier, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_as_pattern, - sym_conditional_expression, - STATE(1222), 16, + sym_python_identifier, + ACTIONS(566), 9, + anon_sym_GT_GT, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55578,64 +56310,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [27265] = 25, - ACTIONS(527), 1, + [27285] = 25, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(721), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(729), 1, + ACTIONS(903), 1, + anon_sym_lambda, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(1111), 1, sym_python_identifier, - ACTIONS(1095), 1, + ACTIONS(1147), 1, anon_sym_STAR, - ACTIONS(1097), 1, - anon_sym_lambda, - STATE(838), 1, - sym_python_string, - STATE(839), 1, + STATE(876), 1, sym_primary_expression, - STATE(1136), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1854), 1, sym_expression, - STATE(2454), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1889), 2, - sym_lambda_within_for_in_clause, - sym__expression_within_for_in_clause, - ACTIONS(719), 4, + ACTIONS(1105), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -55643,7 +56375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55660,65 +56392,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [27372] = 26, - ACTIONS(625), 1, + [27392] = 25, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(1123), 1, + ACTIONS(1111), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1147), 1, anon_sym_STAR, - ACTIONS(1197), 1, - anon_sym_COLON, - STATE(990), 1, + STATE(876), 1, sym_primary_expression, - STATE(1003), 1, + STATE(889), 1, sym_python_string, - STATE(1347), 1, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1678), 1, + STATE(1854), 1, sym_expression, - STATE(2102), 1, - sym_slice, - STATE(2419), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(1133), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -55726,7 +56457,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55743,64 +56474,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [27481] = 25, - ACTIONS(625), 1, + [27499] = 25, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1813), 1, + STATE(1803), 1, sym_expression, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1291), 2, + ACTIONS(1133), 2, anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -55808,7 +56539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55825,64 +56556,65 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [27588] = 25, - ACTIONS(625), 1, + [27606] = 26, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(990), 1, + ACTIONS(1199), 1, + anon_sym_COLON, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1789), 1, + STATE(1686), 1, sym_expression, - STATE(2419), 1, + STATE(2076), 1, + sym_slice, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -55890,7 +56622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55907,64 +56639,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [27695] = 25, - ACTIONS(527), 1, + [27715] = 25, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(721), 1, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(729), 1, + ACTIONS(987), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(991), 1, sym_python_identifier, - ACTIONS(1095), 1, - anon_sym_STAR, ACTIONS(1097), 1, + anon_sym_STAR, + ACTIONS(1099), 1, anon_sym_lambda, - STATE(838), 1, + STATE(859), 1, sym_python_string, - STATE(839), 1, + STATE(860), 1, sym_primary_expression, - STATE(1136), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1688), 1, sym_expression, - STATE(2454), 1, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1840), 2, + STATE(1903), 2, sym_lambda_within_for_in_clause, sym__expression_within_for_in_clause, - ACTIONS(719), 4, + ACTIONS(985), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -55972,7 +56704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55989,67 +56721,73 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [27802] = 20, - ACTIONS(465), 1, + [27822] = 26, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(474), 1, - anon_sym_STAR, - ACTIONS(478), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(484), 1, - anon_sym_await, - ACTIONS(490), 1, + ACTIONS(621), 1, + sym_identifier, + ACTIONS(625), 1, sym_string_start, - STATE(868), 1, + ACTIONS(875), 1, + anon_sym_not, + ACTIONS(879), 1, + anon_sym_lambda, + ACTIONS(881), 1, + anon_sym_await, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(1123), 1, + sym_python_identifier, + ACTIONS(1151), 1, + anon_sym_STAR, + ACTIONS(1199), 1, + anon_sym_COLON, + STATE(947), 1, + sym_primary_expression, + STATE(952), 1, sym_python_string, - STATE(1260), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1475), 1, - sym_primary_expression, + STATE(1719), 1, + sym_expression, + STATE(2063), 1, + sym_slice, + STATE(2425), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(463), 2, - anon_sym_COLON, - anon_sym_COMMA, - ACTIONS(480), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(476), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - ACTIONS(301), 9, - anon_sym_GT_GT, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1266), 16, + STATE(1654), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_as_pattern, + sym_conditional_expression, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56066,65 +56804,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [27899] = 26, - ACTIONS(625), 1, - anon_sym_LBRACK, + [27931] = 25, ACTIONS(627), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(637), 1, - anon_sym_DASH, ACTIONS(639), 1, + anon_sym_DASH, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(869), 1, - anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(987), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(1123), 1, + ACTIONS(991), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1097), 1, anon_sym_STAR, - ACTIONS(1197), 1, - anon_sym_COLON, - STATE(990), 1, - sym_primary_expression, - STATE(1003), 1, + ACTIONS(1099), 1, + anon_sym_lambda, + STATE(859), 1, sym_python_string, - STATE(1347), 1, + STATE(860), 1, + sym_primary_expression, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1681), 1, + STATE(1699), 1, sym_expression, - STATE(2060), 1, - sym_slice, - STATE(2419), 1, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + STATE(1892), 2, + sym_lambda_within_for_in_clause, + sym__expression_within_for_in_clause, + ACTIONS(985), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -56132,7 +56869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56149,72 +56886,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [28008] = 25, - ACTIONS(553), 1, + [28038] = 20, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(476), 1, + anon_sym_STAR, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(571), 1, - sym_identifier, - ACTIONS(575), 1, - sym_string_start, - ACTIONS(675), 1, - anon_sym_not, - ACTIONS(961), 1, + ACTIONS(486), 1, anon_sym_await, - ACTIONS(963), 1, - anon_sym_type, - ACTIONS(965), 1, - sym_python_identifier, - ACTIONS(1089), 1, - anon_sym_STAR, - ACTIONS(1093), 1, - anon_sym_lambda, - STATE(851), 1, + ACTIONS(492), 1, + sym_string_start, + STATE(853), 1, sym_python_string, - STATE(874), 1, - sym_primary_expression, - STATE(1172), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1729), 1, - sym_expression, - STATE(2497), 1, - sym__named_expression_lhs, + STATE(1452), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(302), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(465), 2, + anon_sym_COLON, + anon_sym_COMMA, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1837), 2, - sym_lambda_within_for_in_clause, - sym__expression_within_for_in_clause, - ACTIONS(959), 4, + ACTIONS(488), 2, + anon_sym_type, + sym_identifier, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_as_pattern, - sym_conditional_expression, - STATE(1223), 16, + sym_python_identifier, + ACTIONS(300), 9, + anon_sym_GT_GT, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56231,65 +56963,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [28115] = 26, - ACTIONS(625), 1, - anon_sym_LBRACK, - ACTIONS(627), 1, - anon_sym_LPAREN, - ACTIONS(629), 1, + [28135] = 25, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(89), 1, + anon_sym_not, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(95), 1, + anon_sym_lambda, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(865), 1, - anon_sym_not, - ACTIONS(869), 1, - anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(1123), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(1165), 1, anon_sym_STAR, - ACTIONS(1197), 1, - anon_sym_COLON, - STATE(990), 1, - sym_primary_expression, - STATE(1003), 1, + STATE(833), 1, sym_python_string, - STATE(1347), 1, + STATE(836), 1, + sym_primary_expression, + STATE(960), 1, sym_list_splat_pattern, - STATE(1726), 1, + STATE(1765), 1, sym_expression, - STATE(2218), 1, - sym_slice, - STATE(2419), 1, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(1105), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -56297,7 +57028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56314,64 +57045,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [28224] = 25, - ACTIONS(625), 1, - anon_sym_LBRACK, - ACTIONS(627), 1, - anon_sym_LPAREN, - ACTIONS(629), 1, + [28242] = 25, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(89), 1, + anon_sym_not, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(95), 1, + anon_sym_lambda, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(865), 1, - anon_sym_not, - ACTIONS(869), 1, - anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(1123), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(990), 1, - sym_primary_expression, - STATE(1003), 1, + STATE(833), 1, sym_python_string, - STATE(1347), 1, + STATE(836), 1, + sym_primary_expression, + STATE(960), 1, sym_list_splat_pattern, - STATE(1838), 1, + STATE(1765), 1, sym_expression, - STATE(2419), 1, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1223), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(863), 4, + ACTIONS(1295), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -56379,7 +57110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56396,72 +57127,68 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [28331] = 25, - ACTIONS(601), 1, + [28349] = 21, + ACTIONS(463), 1, + anon_sym_in, + ACTIONS(465), 1, + anon_sym_COMMA, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(476), 1, + anon_sym_STAR, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(619), 1, - sym_identifier, - ACTIONS(623), 1, - sym_string_start, - ACTIONS(697), 1, - anon_sym_not, - ACTIONS(997), 1, + ACTIONS(486), 1, anon_sym_await, - ACTIONS(999), 1, - anon_sym_type, - ACTIONS(1001), 1, - sym_python_identifier, - ACTIONS(1133), 1, - anon_sym_STAR, - ACTIONS(1135), 1, - anon_sym_lambda, - STATE(857), 1, + ACTIONS(492), 1, + sym_string_start, + STATE(853), 1, sym_python_string, - STATE(858), 1, - sym_primary_expression, - STATE(1163), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1684), 1, - sym_expression, - STATE(2557), 1, - sym__named_expression_lhs, + STATE(1452), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(473), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1877), 2, - sym_lambda_within_for_in_clause, - sym__expression_within_for_in_clause, - ACTIONS(995), 4, + ACTIONS(488), 2, + anon_sym_type, + sym_identifier, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_as_pattern, - sym_conditional_expression, - STATE(1283), 16, + sym_python_identifier, + ACTIONS(566), 9, + anon_sym_GT_GT, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56478,64 +57205,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [28438] = 25, - ACTIONS(601), 1, - anon_sym_LBRACK, + [28448] = 25, ACTIONS(603), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(605), 1, + anon_sym_LPAREN, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(613), 1, - anon_sym_DASH, ACTIONS(615), 1, + anon_sym_DASH, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(697), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(997), 1, + ACTIONS(879), 1, + anon_sym_lambda, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(1001), 1, + ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1133), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1135), 1, - anon_sym_lambda, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + STATE(947), 1, sym_primary_expression, - STATE(1163), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1730), 1, + STATE(1828), 1, sym_expression, - STATE(2557), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1825), 2, - sym_lambda_within_for_in_clause, - sym__expression_within_for_in_clause, - ACTIONS(995), 4, + ACTIONS(1237), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -56543,7 +57270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56560,64 +57287,65 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [28545] = 25, - ACTIONS(43), 1, + [28555] = 26, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(605), 1, + anon_sym_LPAREN, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(93), 1, - anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(875), 1, + anon_sym_not, + ACTIONS(879), 1, + anon_sym_lambda, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(834), 1, - sym_python_string, - STATE(840), 1, + ACTIONS(1199), 1, + anon_sym_COLON, + STATE(947), 1, sym_primary_expression, - STATE(989), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1739), 1, + STATE(1761), 1, sym_expression, - STATE(2396), 1, + STATE(2274), 1, + sym_slice, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1293), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(311), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -56625,7 +57353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56642,58 +57370,57 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [28652] = 21, - ACTIONS(461), 1, - anon_sym_in, - ACTIONS(463), 1, - anon_sym_COMMA, - ACTIONS(465), 1, - anon_sym_LBRACK, + [28664] = 20, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(474), 1, + ACTIONS(476), 1, anon_sym_STAR, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, - sym_ellipsis, ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(486), 1, anon_sym_await, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1475), 1, + STATE(1452), 1, sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(471), 2, + ACTIONS(292), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(302), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(486), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(476), 4, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - ACTIONS(524), 9, + ACTIONS(300), 9, anon_sym_GT_GT, anon_sym_AT, anon_sym_PERCENT, @@ -56703,7 +57430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56720,64 +57447,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [28751] = 25, - ACTIONS(43), 1, + [28761] = 25, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(605), 1, + anon_sym_LPAREN, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(93), 1, - anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(875), 1, + anon_sym_not, + ACTIONS(879), 1, + anon_sym_lambda, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(834), 1, - sym_python_string, - STATE(840), 1, + STATE(947), 1, sym_primary_expression, - STATE(989), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1739), 1, + STATE(1816), 1, sym_expression, - STATE(2396), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1295), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(311), 4, + ACTIONS(1297), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -56785,7 +57512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56802,58 +57529,58 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [28858] = 25, - ACTIONS(601), 1, + [28868] = 25, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(697), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(997), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(1001), 1, + ACTIONS(967), 1, sym_python_identifier, - ACTIONS(1133), 1, + ACTIONS(1101), 1, anon_sym_STAR, - ACTIONS(1135), 1, + ACTIONS(1103), 1, anon_sym_lambda, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + STATE(893), 1, sym_primary_expression, - STATE(1163), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1730), 1, + STATE(1724), 1, sym_expression, - STATE(2557), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1807), 2, + STATE(1783), 2, sym_lambda_within_for_in_clause, sym__expression_within_for_in_clause, - ACTIONS(995), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, @@ -56867,7 +57594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56884,65 +57611,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [28965] = 26, - ACTIONS(465), 1, + [28975] = 25, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(615), 1, + anon_sym_DASH, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(881), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1275), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1297), 1, - anon_sym_COLON, - STATE(868), 1, - sym_python_string, - STATE(922), 1, + STATE(947), 1, sym_primary_expression, - STATE(1260), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1776), 1, + STATE(1803), 1, sym_expression, - STATE(2282), 1, - sym_with_item, - STATE(2446), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(1105), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -56950,7 +57676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56967,64 +57693,65 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [29074] = 25, - ACTIONS(625), 1, + [29082] = 26, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(990), 1, + ACTIONS(1199), 1, + anon_sym_COLON, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1789), 1, + STATE(1696), 1, sym_expression, - STATE(2419), 1, + STATE(2186), 1, + sym_slice, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1131), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -57032,7 +57759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57049,65 +57776,65 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [29181] = 26, - ACTIONS(625), 1, + [29191] = 26, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(637), 1, - anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1123), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1287), 1, anon_sym_STAR, - ACTIONS(1197), 1, + ACTIONS(1299), 1, anon_sym_COLON, - STATE(990), 1, - sym_primary_expression, - STATE(1003), 1, + STATE(853), 1, sym_python_string, - STATE(1347), 1, + STATE(939), 1, + sym_primary_expression, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1690), 1, + STATE(1812), 1, sym_expression, - STATE(2152), 1, - sym_slice, - STATE(2419), 1, + STATE(2269), 1, + sym_with_item, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -57115,7 +57842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57132,65 +57859,65 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [29290] = 26, - ACTIONS(625), 1, + [29300] = 26, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(627), 1, - anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(637), 1, - anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1123), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1285), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, anon_sym_STAR, - ACTIONS(1197), 1, - anon_sym_COLON, - STATE(990), 1, - sym_primary_expression, - STATE(1003), 1, + STATE(853), 1, sym_python_string, - STATE(1347), 1, + STATE(939), 1, + sym_primary_expression, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1812), 1, sym_expression, - STATE(2275), 1, - sym_slice, - STATE(2419), 1, + STATE(2073), 1, + sym_with_item, + STATE(2452), 1, sym__named_expression_lhs, + STATE(2544), 1, + sym_with_clause, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -57198,7 +57925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57215,65 +57942,65 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [29399] = 26, - ACTIONS(577), 1, + [29409] = 26, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(925), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(931), 1, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(1115), 1, + ACTIONS(1111), 1, sym_python_identifier, - ACTIONS(1171), 1, + ACTIONS(1147), 1, anon_sym_STAR, - ACTIONS(1299), 1, + ACTIONS(1301), 1, anon_sym_RPAREN, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(876), 1, sym_primary_expression, - STATE(1193), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1786), 1, + STATE(1794), 1, sym_expression, - STATE(2273), 1, + STATE(2271), 1, sym_with_item, - STATE(2383), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(923), 4, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -57281,7 +58008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57298,58 +58025,58 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [29508] = 25, - ACTIONS(601), 1, + [29518] = 25, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(697), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(997), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(1001), 1, + ACTIONS(967), 1, sym_python_identifier, - ACTIONS(1133), 1, + ACTIONS(1101), 1, anon_sym_STAR, - ACTIONS(1135), 1, + ACTIONS(1103), 1, anon_sym_lambda, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + STATE(893), 1, sym_primary_expression, - STATE(1163), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1680), 1, + STATE(1724), 1, sym_expression, - STATE(2557), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1890), 2, + STATE(1780), 2, sym_lambda_within_for_in_clause, sym__expression_within_for_in_clause, - ACTIONS(995), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, @@ -57363,7 +58090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57380,64 +58107,65 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [29615] = 25, - ACTIONS(577), 1, + [29625] = 26, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(925), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(931), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(1115), 1, + ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1171), 1, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + ACTIONS(1199), 1, + anon_sym_COLON, + STATE(947), 1, sym_primary_expression, - STATE(1193), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1777), 1, + STATE(1676), 1, sym_expression, - STATE(2383), 1, + STATE(2172), 1, + sym_slice, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1131), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(923), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -57445,7 +58173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57462,73 +58190,67 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [29722] = 26, - ACTIONS(625), 1, + [29734] = 20, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(476), 1, + anon_sym_STAR, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(643), 1, - sym_identifier, - ACTIONS(647), 1, - sym_string_start, - ACTIONS(865), 1, - anon_sym_not, - ACTIONS(869), 1, - anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(486), 1, anon_sym_await, - ACTIONS(873), 1, - anon_sym_type, - ACTIONS(1123), 1, - sym_python_identifier, - ACTIONS(1191), 1, - anon_sym_STAR, - ACTIONS(1197), 1, - anon_sym_COLON, - STATE(990), 1, - sym_primary_expression, - STATE(1003), 1, + ACTIONS(492), 1, + sym_string_start, + STATE(853), 1, sym_python_string, - STATE(1347), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1675), 1, - sym_expression, - STATE(2098), 1, - sym_slice, - STATE(2419), 1, - sym__named_expression_lhs, + STATE(1452), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(465), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(473), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(488), 2, + anon_sym_type, + sym_identifier, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_as_pattern, - sym_conditional_expression, - STATE(1379), 16, + sym_python_identifier, + ACTIONS(566), 9, + anon_sym_GT_GT, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57546,62 +58268,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [29831] = 25, - ACTIONS(43), 1, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, - anon_sym_DASH, - ACTIONS(93), 1, - anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(843), 1, + anon_sym_not, + ACTIONS(845), 1, + anon_sym_lambda, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(834), 1, + STATE(853), 1, sym_python_string, - STATE(840), 1, + STATE(939), 1, sym_primary_expression, - STATE(989), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1700), 1, + STATE(1812), 1, sym_expression, - STATE(2253), 1, - sym_expression_list, - STATE(2396), 1, + STATE(2269), 1, + sym_with_item, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -57609,7 +58331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57627,62 +58349,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [29937] = 25, - ACTIONS(465), 1, - anon_sym_LBRACK, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(881), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1131), 1, - anon_sym_COLON, - ACTIONS(1139), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1275), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(922), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1827), 1, + STATE(1758), 1, sym_expression, - STATE(2446), 1, + STATE(2440), 1, + sym_expression_list, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -57690,7 +58412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57708,62 +58430,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [30043] = 25, - ACTIONS(465), 1, - anon_sym_LBRACK, - ACTIONS(467), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(89), 1, + anon_sym_not, + ACTIONS(93), 1, + anon_sym_DASH, + ACTIONS(95), 1, + anon_sym_lambda, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(881), 1, - anon_sym_not, - ACTIONS(883), 1, - anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(1275), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(868), 1, + STATE(833), 1, sym_python_string, - STATE(922), 1, + STATE(836), 1, sym_primary_expression, - STATE(1260), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1752), 1, + STATE(1694), 1, sym_expression, - STATE(2446), 1, - sym__named_expression_lhs, - STATE(2526), 1, + STATE(2253), 1, sym_expression_list, + STATE(2402), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -57771,7 +58493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57789,62 +58511,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [30149] = 25, - ACTIONS(465), 1, - anon_sym_LBRACK, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(881), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1133), 1, + anon_sym_COLON, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1275), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(922), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1776), 1, + STATE(1782), 1, sym_expression, - STATE(2282), 1, - sym_with_item, - STATE(2446), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -57852,7 +58574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57870,62 +58592,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [30255] = 25, - ACTIONS(465), 1, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(530), 1, + anon_sym_DASH, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(881), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(1129), 1, - anon_sym_COLON, - ACTIONS(1139), 1, + ACTIONS(1111), 1, sym_python_identifier, - ACTIONS(1275), 1, + ACTIONS(1147), 1, anon_sym_STAR, - STATE(868), 1, - sym_python_string, - STATE(922), 1, + STATE(876), 1, sym_primary_expression, - STATE(1260), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1827), 1, + STATE(1794), 1, sym_expression, - STATE(2446), 1, + STATE(2271), 1, + sym_with_item, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -57933,7 +58655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57951,62 +58673,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [30361] = 25, - ACTIONS(465), 1, - anon_sym_LBRACK, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(881), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1105), 1, + anon_sym_COLON, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1275), 1, + ACTIONS(1287), 1, anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_COLON, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(922), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1849), 1, + STATE(1782), 1, sym_expression, - STATE(2446), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -58014,7 +58736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58032,62 +58754,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [30467] = 25, - ACTIONS(465), 1, - anon_sym_LBRACK, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(881), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1275), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(868), 1, + ACTIONS(1303), 1, + anon_sym_COLON, + STATE(853), 1, sym_python_string, - STATE(922), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1745), 1, + STATE(1859), 1, sym_expression, - STATE(2446), 1, + STATE(2452), 1, sym__named_expression_lhs, - STATE(2575), 1, - sym_expression_list, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -58095,7 +58817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58113,62 +58835,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [30573] = 25, - ACTIONS(577), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(589), 1, - anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(925), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(931), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1115), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1171), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(850), 1, + STATE(853), 1, sym_python_string, - STATE(883), 1, + STATE(939), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1786), 1, + STATE(1755), 1, sym_expression, - STATE(2273), 1, - sym_with_item, - STATE(2383), 1, + STATE(2441), 1, + sym_expression_list, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(923), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -58176,7 +58898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58194,60 +58916,60 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [30679] = 24, - ACTIONS(527), 1, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(560), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(721), 1, + ACTIONS(701), 1, anon_sym_not, - ACTIONS(725), 1, + ACTIONS(705), 1, anon_sym_lambda, - ACTIONS(729), 1, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(711), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(713), 1, sym_python_identifier, - ACTIONS(1095), 1, + ACTIONS(1091), 1, anon_sym_STAR, - STATE(838), 1, - sym_python_string, STATE(839), 1, sym_primary_expression, - STATE(1136), 1, + STATE(840), 1, + sym_python_string, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1653), 1, + STATE(1663), 1, sym_expression, - STATE(2454), 1, + STATE(2469), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(719), 4, + ACTIONS(699), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 5, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -58255,7 +58977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58272,61 +58994,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [30782] = 24, - ACTIONS(601), 1, - anon_sym_LBRACK, + [30782] = 25, ACTIONS(603), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(605), 1, + anon_sym_LPAREN, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(613), 1, - anon_sym_DASH, ACTIONS(615), 1, + anon_sym_DASH, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(697), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1151), 1, + anon_sym_STAR, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(1309), 1, anon_sym_type, - ACTIONS(1001), 1, + ACTIONS(1311), 1, sym_python_identifier, - ACTIONS(1133), 1, - anon_sym_STAR, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + STATE(947), 1, sym_primary_expression, - STATE(1163), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1695), 1, + STATE(1788), 1, sym_expression, - STATE(2557), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 4, + STATE(1384), 2, + sym_attribute, + sym_subscript, + ACTIONS(1305), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -58334,11 +59059,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 16, + STATE(1351), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -58351,61 +59074,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [30885] = 24, - ACTIONS(577), 1, + [30887] = 24, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(589), 1, - anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(925), 1, - anon_sym_not, - ACTIONS(929), 1, - anon_sym_lambda, - ACTIONS(931), 1, - anon_sym_await, - ACTIONS(933), 1, + ACTIONS(663), 1, + anon_sym_DASH, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1115), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1171), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(850), 1, + ACTIONS(1315), 1, + anon_sym_not, + ACTIONS(1317), 1, + anon_sym_lambda, + ACTIONS(1319), 1, + anon_sym_await, + STATE(853), 1, sym_python_string, - STATE(883), 1, + STATE(1219), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1608), 1, + STATE(1939), 1, sym_expression, - STATE(2383), 1, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(661), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(923), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -58413,7 +59136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58430,61 +59153,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [30988] = 24, - ACTIONS(577), 1, + [30990] = 24, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(925), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(931), 1, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(1115), 1, + ACTIONS(1111), 1, sym_python_identifier, - ACTIONS(1171), 1, + ACTIONS(1147), 1, anon_sym_STAR, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(876), 1, sym_primary_expression, - STATE(1193), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1610), 1, + STATE(1824), 1, sym_expression, - STATE(2383), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(923), 4, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -58492,7 +59215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58509,61 +59232,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [31091] = 24, - ACTIONS(43), 1, + [31093] = 24, + ACTIONS(518), 1, + anon_sym_LBRACK, + ACTIONS(520), 1, + anon_sym_LPAREN, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(93), 1, - anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(899), 1, + anon_sym_not, + ACTIONS(903), 1, + anon_sym_lambda, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(1111), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(1147), 1, anon_sym_STAR, - STATE(834), 1, - sym_python_string, - STATE(840), 1, + STATE(876), 1, sym_primary_expression, - STATE(989), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1558), 1, + STATE(1821), 1, sym_expression, - STATE(2396), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -58571,7 +59294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58588,61 +59311,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [31194] = 24, - ACTIONS(43), 1, + [31196] = 24, + ACTIONS(627), 1, + anon_sym_LBRACK, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(97), 1, + ACTIONS(639), 1, + anon_sym_DASH, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(323), 1, - anon_sym_type, - ACTIONS(325), 1, - sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(520), 1, - anon_sym_DASH, - ACTIONS(1181), 1, - anon_sym_STAR, - ACTIONS(1183), 1, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(1185), 1, + ACTIONS(679), 1, anon_sym_lambda, - ACTIONS(1187), 1, + ACTIONS(987), 1, anon_sym_await, - STATE(834), 1, + ACTIONS(989), 1, + anon_sym_type, + ACTIONS(991), 1, + sym_python_identifier, + ACTIONS(1097), 1, + anon_sym_STAR, + STATE(859), 1, sym_python_string, - STATE(877), 1, + STATE(860), 1, sym_primary_expression, - STATE(989), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1698), 1, + STATE(1709), 1, sym_expression, - STATE(2469), 1, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(518), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(985), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -58650,7 +59373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58667,61 +59390,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [31297] = 24, - ACTIONS(577), 1, + [31299] = 24, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(925), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(931), 1, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(1115), 1, + ACTIONS(1111), 1, sym_python_identifier, - ACTIONS(1171), 1, + ACTIONS(1147), 1, anon_sym_STAR, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(876), 1, sym_primary_expression, - STATE(1193), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1614), 1, + STATE(1836), 1, sym_expression, - STATE(2383), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(923), 4, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -58729,7 +59452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58746,61 +59469,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [31400] = 24, - ACTIONS(465), 1, - anon_sym_LBRACK, - ACTIONS(467), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, + [31402] = 24, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(89), 1, + anon_sym_not, + ACTIONS(93), 1, + anon_sym_DASH, + ACTIONS(95), 1, + anon_sym_lambda, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(881), 1, - anon_sym_not, - ACTIONS(883), 1, - anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(1275), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(868), 1, + STATE(833), 1, sym_python_string, - STATE(922), 1, + STATE(836), 1, sym_primary_expression, - STATE(1260), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1918), 1, + STATE(1560), 1, sym_expression, - STATE(2446), 1, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -58808,7 +59531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58825,61 +59548,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [31503] = 24, - ACTIONS(465), 1, + [31505] = 24, + ACTIONS(494), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(496), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(506), 1, + anon_sym_DASH, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(661), 1, - anon_sym_DASH, - ACTIONS(887), 1, - anon_sym_type, - ACTIONS(1139), 1, - sym_python_identifier, - ACTIONS(1303), 1, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(1305), 1, + ACTIONS(829), 1, anon_sym_not, - ACTIONS(1307), 1, + ACTIONS(831), 1, anon_sym_lambda, - ACTIONS(1309), 1, + ACTIONS(925), 1, anon_sym_await, - STATE(868), 1, - sym_python_string, - STATE(1192), 1, + ACTIONS(927), 1, + anon_sym_type, + ACTIONS(929), 1, + sym_python_identifier, + STATE(837), 1, sym_primary_expression, - STATE(1260), 1, + STATE(844), 1, + sym_python_string, + STATE(1133), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1667), 1, sym_expression, - STATE(2361), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(659), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(923), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -58887,7 +59610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58904,61 +59627,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [31606] = 24, - ACTIONS(577), 1, + [31608] = 24, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(589), 1, - anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(925), 1, - anon_sym_not, - ACTIONS(929), 1, - anon_sym_lambda, - ACTIONS(931), 1, - anon_sym_await, - ACTIONS(933), 1, + ACTIONS(663), 1, + anon_sym_DASH, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1115), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1171), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(850), 1, + ACTIONS(1315), 1, + anon_sym_not, + ACTIONS(1317), 1, + anon_sym_lambda, + ACTIONS(1319), 1, + anon_sym_await, + STATE(853), 1, sym_python_string, - STATE(883), 1, + STATE(1219), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1593), 1, + STATE(1901), 1, sym_expression, - STATE(2383), 1, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(661), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(923), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -58966,7 +59689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58983,61 +59706,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [31709] = 24, - ACTIONS(465), 1, - anon_sym_LBRACK, + [31711] = 24, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(881), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1275), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(922), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1924), 1, + STATE(1655), 1, sym_expression, - STATE(2446), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -59045,7 +59768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59062,61 +59785,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [31812] = 24, - ACTIONS(492), 1, + [31814] = 24, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(823), 1, - anon_sym_STAR, - ACTIONS(827), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(829), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(897), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(901), 1, + ACTIONS(967), 1, sym_python_identifier, - STATE(841), 1, - sym_python_string, - STATE(844), 1, + ACTIONS(1101), 1, + anon_sym_STAR, + STATE(893), 1, sym_primary_expression, - STATE(1028), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1922), 1, + STATE(1735), 1, sym_expression, - STATE(2525), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(895), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1624), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -59124,7 +59847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59141,61 +59864,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [31915] = 24, - ACTIONS(465), 1, + [31917] = 24, + ACTIONS(494), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(496), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(506), 1, + anon_sym_DASH, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(661), 1, - anon_sym_DASH, - ACTIONS(887), 1, - anon_sym_type, - ACTIONS(1139), 1, - sym_python_identifier, - ACTIONS(1303), 1, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(1305), 1, + ACTIONS(829), 1, anon_sym_not, - ACTIONS(1307), 1, + ACTIONS(831), 1, anon_sym_lambda, - ACTIONS(1309), 1, + ACTIONS(925), 1, anon_sym_await, - STATE(868), 1, - sym_python_string, - STATE(1192), 1, + ACTIONS(927), 1, + anon_sym_type, + ACTIONS(929), 1, + sym_python_identifier, + STATE(837), 1, sym_primary_expression, - STATE(1260), 1, + STATE(844), 1, + sym_python_string, + STATE(1133), 1, sym_list_splat_pattern, - STATE(1615), 1, + STATE(1653), 1, sym_expression, - STATE(2361), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(659), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(923), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -59203,7 +59926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59220,61 +59943,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [32018] = 24, - ACTIONS(465), 1, + [32020] = 24, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(554), 1, + anon_sym_DASH, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(560), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(661), 1, - anon_sym_DASH, - ACTIONS(887), 1, - anon_sym_type, - ACTIONS(1139), 1, - sym_python_identifier, - ACTIONS(1303), 1, - anon_sym_STAR, - ACTIONS(1305), 1, + ACTIONS(701), 1, anon_sym_not, - ACTIONS(1307), 1, + ACTIONS(705), 1, anon_sym_lambda, - ACTIONS(1309), 1, + ACTIONS(709), 1, anon_sym_await, - STATE(868), 1, - sym_python_string, - STATE(1192), 1, + ACTIONS(711), 1, + anon_sym_type, + ACTIONS(713), 1, + sym_python_identifier, + ACTIONS(1091), 1, + anon_sym_STAR, + STATE(839), 1, sym_primary_expression, - STATE(1260), 1, + STATE(840), 1, + sym_python_string, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1901), 1, + STATE(1659), 1, sym_expression, - STATE(2361), 1, + STATE(2469), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(659), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(699), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -59282,7 +60005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59299,61 +60022,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [32121] = 24, - ACTIONS(465), 1, + [32123] = 24, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(554), 1, + anon_sym_DASH, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(560), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(881), 1, + ACTIONS(701), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(705), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(711), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(713), 1, sym_python_identifier, - ACTIONS(1275), 1, + ACTIONS(1091), 1, anon_sym_STAR, - STATE(868), 1, - sym_python_string, - STATE(922), 1, + STATE(839), 1, sym_primary_expression, - STATE(1260), 1, + STATE(840), 1, + sym_python_string, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1875), 1, + STATE(1632), 1, sym_expression, - STATE(2446), 1, + STATE(2469), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(699), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -59361,7 +60084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59378,61 +60101,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [32224] = 24, - ACTIONS(43), 1, + [32226] = 24, + ACTIONS(518), 1, + anon_sym_LBRACK, + ACTIONS(520), 1, + anon_sym_LPAREN, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(93), 1, - anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(899), 1, + anon_sym_not, + ACTIONS(903), 1, + anon_sym_lambda, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(1111), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(1147), 1, anon_sym_STAR, - STATE(834), 1, - sym_python_string, - STATE(840), 1, + STATE(876), 1, sym_primary_expression, - STATE(989), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1551), 1, + STATE(1586), 1, sym_expression, - STATE(2396), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -59440,7 +60163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59457,61 +60180,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [32327] = 24, - ACTIONS(465), 1, - anon_sym_LBRACK, + [32329] = 24, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(661), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(887), 1, - anon_sym_type, - ACTIONS(1139), 1, - sym_python_identifier, - ACTIONS(1303), 1, - anon_sym_STAR, - ACTIONS(1305), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(1307), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(1309), 1, + ACTIONS(847), 1, anon_sym_await, - STATE(868), 1, + ACTIONS(849), 1, + anon_sym_type, + ACTIONS(1141), 1, + sym_python_identifier, + ACTIONS(1287), 1, + anon_sym_STAR, + STATE(853), 1, sym_python_string, - STATE(1192), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1947), 1, sym_expression, - STATE(2361), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(659), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -59519,7 +60242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59536,61 +60259,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [32430] = 24, - ACTIONS(577), 1, + [32432] = 24, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(560), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(925), 1, + ACTIONS(701), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(705), 1, anon_sym_lambda, - ACTIONS(931), 1, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(711), 1, anon_sym_type, - ACTIONS(1115), 1, + ACTIONS(713), 1, sym_python_identifier, - ACTIONS(1171), 1, + ACTIONS(1091), 1, anon_sym_STAR, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(839), 1, sym_primary_expression, - STATE(1193), 1, + STATE(840), 1, + sym_python_string, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1831), 1, + STATE(1664), 1, sym_expression, - STATE(2383), 1, + STATE(2469), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(923), 4, + ACTIONS(699), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -59598,7 +60321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59615,47 +60338,47 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [32533] = 24, - ACTIONS(577), 1, + [32535] = 24, + ACTIONS(494), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(496), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(925), 1, + ACTIONS(825), 1, + anon_sym_STAR, + ACTIONS(829), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(831), 1, anon_sym_lambda, - ACTIONS(931), 1, + ACTIONS(925), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(927), 1, anon_sym_type, - ACTIONS(1115), 1, + ACTIONS(929), 1, sym_python_identifier, - ACTIONS(1171), 1, - anon_sym_STAR, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(837), 1, sym_primary_expression, - STATE(1193), 1, + STATE(844), 1, + sym_python_string, + STATE(1133), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1669), 1, sym_expression, - STATE(2383), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, ACTIONS(923), 4, @@ -59663,13 +60386,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -59677,7 +60400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59694,61 +60417,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [32636] = 24, - ACTIONS(43), 1, + [32638] = 24, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, - anon_sym_DASH, - ACTIONS(93), 1, - anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(843), 1, + anon_sym_not, + ACTIONS(845), 1, + anon_sym_lambda, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(834), 1, + STATE(853), 1, sym_python_string, - STATE(840), 1, + STATE(939), 1, sym_primary_expression, - STATE(989), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1739), 1, + STATE(1952), 1, sym_expression, - STATE(2396), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -59756,7 +60479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59773,64 +60496,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [32739] = 25, - ACTIONS(625), 1, + [32741] = 24, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(637), 1, - anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(865), 1, - anon_sym_not, - ACTIONS(869), 1, - anon_sym_lambda, - ACTIONS(1191), 1, - anon_sym_STAR, + ACTIONS(663), 1, + anon_sym_DASH, + ACTIONS(849), 1, + anon_sym_type, + ACTIONS(1141), 1, + sym_python_identifier, ACTIONS(1313), 1, - anon_sym_await, + anon_sym_STAR, ACTIONS(1315), 1, - anon_sym_type, + anon_sym_not, ACTIONS(1317), 1, - sym_python_identifier, - STATE(1003), 1, + anon_sym_lambda, + ACTIONS(1319), 1, + anon_sym_await, + STATE(853), 1, sym_python_string, - STATE(1065), 1, + STATE(1219), 1, sym_primary_expression, - STATE(1347), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1791), 1, + STATE(1891), 1, sym_expression, - STATE(2419), 1, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(661), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1243), 2, - sym_attribute, - sym_subscript, - ACTIONS(1311), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -59838,9 +60558,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 14, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -59854,60 +60576,60 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [32844] = 24, - ACTIONS(465), 1, - anon_sym_LBRACK, - ACTIONS(467), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(322), 1, + anon_sym_type, + ACTIONS(324), 1, + sym_python_identifier, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(599), 1, anon_sym_DASH, - ACTIONS(881), 1, + ACTIONS(1183), 1, + anon_sym_STAR, + ACTIONS(1185), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(1187), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(1189), 1, anon_sym_await, - ACTIONS(887), 1, - anon_sym_type, - ACTIONS(1139), 1, - sym_python_identifier, - ACTIONS(1275), 1, - anon_sym_STAR, - STATE(868), 1, + STATE(833), 1, sym_python_string, - STATE(922), 1, + STATE(882), 1, sym_primary_expression, - STATE(1260), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1881), 1, + STATE(1736), 1, sym_expression, - STATE(2446), 1, + STATE(2475), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(597), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -59915,7 +60637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59933,60 +60655,60 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [32947] = 24, - ACTIONS(492), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(823), 1, - anon_sym_STAR, - ACTIONS(827), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(829), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(897), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(901), 1, + ACTIONS(1123), 1, sym_python_identifier, - STATE(841), 1, - sym_python_string, - STATE(844), 1, + ACTIONS(1151), 1, + anon_sym_STAR, + STATE(947), 1, sym_primary_expression, - STATE(1028), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1779), 1, + STATE(1638), 1, sym_expression, - STATE(2525), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(895), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1624), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -59994,7 +60716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60012,60 +60734,60 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [33050] = 24, - ACTIONS(43), 1, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, - anon_sym_DASH, - ACTIONS(93), 1, - anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(843), 1, + anon_sym_not, + ACTIONS(845), 1, + anon_sym_lambda, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(834), 1, + STATE(853), 1, sym_python_string, - STATE(840), 1, + STATE(939), 1, sym_primary_expression, - STATE(989), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1766), 1, + STATE(1858), 1, sym_expression, - STATE(2396), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -60073,7 +60795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60091,60 +60813,60 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [33153] = 24, - ACTIONS(492), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(823), 1, - anon_sym_STAR, - ACTIONS(827), 1, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(829), 1, + ACTIONS(679), 1, anon_sym_lambda, - ACTIONS(897), 1, + ACTIONS(987), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(901), 1, + ACTIONS(991), 1, sym_python_identifier, - STATE(841), 1, + ACTIONS(1097), 1, + anon_sym_STAR, + STATE(859), 1, sym_python_string, - STATE(844), 1, + STATE(860), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1647), 1, + STATE(1712), 1, sym_expression, - STATE(2525), 1, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(895), 4, + ACTIONS(985), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1624), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -60152,7 +60874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60170,60 +60892,60 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [33256] = 24, - ACTIONS(465), 1, - anon_sym_LBRACK, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(661), 1, + ACTIONS(663), 1, anon_sym_DASH, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1303), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1305), 1, + ACTIONS(1315), 1, anon_sym_not, - ACTIONS(1307), 1, + ACTIONS(1317), 1, anon_sym_lambda, - ACTIONS(1309), 1, + ACTIONS(1319), 1, anon_sym_await, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1192), 1, + STATE(1219), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1955), 1, + STATE(1615), 1, sym_expression, - STATE(2361), 1, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(659), 2, + ACTIONS(661), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -60231,7 +60953,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60249,60 +60971,60 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [33359] = 24, - ACTIONS(625), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(637), 1, - anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1123), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(990), 1, - sym_primary_expression, - STATE(1003), 1, + STATE(853), 1, sym_python_string, - STATE(1347), 1, + STATE(939), 1, + sym_primary_expression, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1625), 1, + STATE(1634), 1, sym_expression, - STATE(2419), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -60310,7 +61032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60328,60 +61050,60 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [33462] = 24, - ACTIONS(492), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(823), 1, - anon_sym_STAR, - ACTIONS(827), 1, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(829), 1, + ACTIONS(679), 1, anon_sym_lambda, - ACTIONS(897), 1, + ACTIONS(987), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(901), 1, + ACTIONS(991), 1, sym_python_identifier, - STATE(841), 1, + ACTIONS(1097), 1, + anon_sym_STAR, + STATE(859), 1, sym_python_string, - STATE(844), 1, + STATE(860), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1648), 1, + STATE(1713), 1, sym_expression, - STATE(2525), 1, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(895), 4, + ACTIONS(985), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1624), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -60389,7 +61111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60407,60 +61129,60 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [33565] = 24, - ACTIONS(577), 1, - anon_sym_LBRACK, - ACTIONS(579), 1, - anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(89), 1, + anon_sym_not, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(95), 1, + anon_sym_lambda, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(925), 1, - anon_sym_not, - ACTIONS(929), 1, - anon_sym_lambda, - ACTIONS(931), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(1115), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(1171), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(850), 1, + STATE(833), 1, sym_python_string, - STATE(883), 1, + STATE(836), 1, sym_primary_expression, - STATE(1193), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1607), 1, + STATE(1770), 1, sym_expression, - STATE(2383), 1, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(923), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -60468,7 +61190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60486,60 +61208,60 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [33668] = 24, - ACTIONS(465), 1, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(530), 1, + anon_sym_DASH, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(881), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1111), 1, sym_python_identifier, - ACTIONS(1275), 1, + ACTIONS(1147), 1, anon_sym_STAR, - STATE(868), 1, - sym_python_string, - STATE(922), 1, + STATE(876), 1, sym_primary_expression, - STATE(1260), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1873), 1, + STATE(1826), 1, sym_expression, - STATE(2446), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -60547,7 +61269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60564,64 +61286,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [33771] = 25, - ACTIONS(577), 1, + [33771] = 24, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(925), 1, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(679), 1, anon_sym_lambda, - ACTIONS(1171), 1, - anon_sym_STAR, - ACTIONS(1321), 1, + ACTIONS(987), 1, anon_sym_await, - ACTIONS(1323), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(1325), 1, + ACTIONS(991), 1, sym_python_identifier, - STATE(850), 1, + ACTIONS(1097), 1, + anon_sym_STAR, + STATE(859), 1, sym_python_string, - STATE(883), 1, + STATE(860), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1846), 1, + STATE(1714), 1, sym_expression, - STATE(2383), 1, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1388), 2, - sym_attribute, - sym_subscript, - ACTIONS(1319), 4, + ACTIONS(985), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -60629,9 +61348,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 14, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -60644,61 +61365,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [33876] = 24, - ACTIONS(43), 1, + [33874] = 24, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, - anon_sym_DASH, - ACTIONS(93), 1, - anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(321), 1, - anon_sym_await, - ACTIONS(323), 1, + ACTIONS(663), 1, + anon_sym_DASH, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(834), 1, + ACTIONS(1315), 1, + anon_sym_not, + ACTIONS(1317), 1, + anon_sym_lambda, + ACTIONS(1319), 1, + anon_sym_await, + STATE(853), 1, sym_python_string, - STATE(840), 1, + STATE(1219), 1, sym_primary_expression, - STATE(989), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1927), 1, sym_expression, - STATE(2396), 1, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(661), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -60706,7 +61427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60723,61 +61444,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [33979] = 24, - ACTIONS(492), 1, - anon_sym_LBRACK, + [33977] = 24, ACTIONS(494), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(496), 1, + anon_sym_LPAREN, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(504), 1, - anon_sym_DASH, ACTIONS(506), 1, + anon_sym_DASH, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(823), 1, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(827), 1, - anon_sym_not, ACTIONS(829), 1, + anon_sym_not, + ACTIONS(831), 1, anon_sym_lambda, - ACTIONS(897), 1, + ACTIONS(925), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(927), 1, anon_sym_type, - ACTIONS(901), 1, + ACTIONS(929), 1, sym_python_identifier, - STATE(841), 1, - sym_python_string, - STATE(844), 1, + STATE(837), 1, sym_primary_expression, - STATE(1028), 1, + STATE(844), 1, + sym_python_string, + STATE(1133), 1, sym_list_splat_pattern, - STATE(1626), 1, + STATE(1633), 1, sym_expression, - STATE(2525), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(895), 4, + ACTIONS(923), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 5, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1624), 7, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -60785,7 +61506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60802,61 +61523,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [34082] = 24, - ACTIONS(465), 1, - anon_sym_LBRACK, - ACTIONS(467), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, + [34080] = 24, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(89), 1, + anon_sym_not, + ACTIONS(93), 1, + anon_sym_DASH, + ACTIONS(95), 1, + anon_sym_lambda, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(881), 1, - anon_sym_not, - ACTIONS(883), 1, - anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(1275), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(868), 1, + STATE(833), 1, sym_python_string, - STATE(922), 1, + STATE(836), 1, sym_primary_expression, - STATE(1260), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1862), 1, + STATE(1806), 1, sym_expression, - STATE(2446), 1, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -60864,7 +61585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60881,61 +61602,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [34185] = 24, - ACTIONS(527), 1, + [34183] = 24, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(721), 1, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(725), 1, + ACTIONS(679), 1, anon_sym_lambda, - ACTIONS(729), 1, + ACTIONS(987), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(991), 1, sym_python_identifier, - ACTIONS(1095), 1, + ACTIONS(1097), 1, anon_sym_STAR, - STATE(838), 1, + STATE(859), 1, sym_python_string, - STATE(839), 1, + STATE(860), 1, sym_primary_expression, - STATE(1136), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1657), 1, + STATE(1715), 1, sym_expression, - STATE(2454), 1, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(719), 4, + ACTIONS(985), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -60943,7 +61664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60960,61 +61681,129 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [34288] = 24, - ACTIONS(465), 1, + [34286] = 10, + ACTIONS(290), 1, + anon_sym_COLON_EQ, + ACTIONS(304), 1, + anon_sym_COMMA, + ACTIONS(1321), 1, + sym_python_identifier, + ACTIONS(1323), 1, + sym_string_start, + STATE(2162), 1, + sym_python_string, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(288), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(300), 10, + sym__newline, anon_sym_LBRACK, - ACTIONS(467), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(292), 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(302), 22, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + [34361] = 25, + ACTIONS(518), 1, + anon_sym_LBRACK, + ACTIONS(520), 1, + anon_sym_LPAREN, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(530), 1, + anon_sym_DASH, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(881), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(1147), 1, + anon_sym_STAR, + ACTIONS(1327), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(1329), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1331), 1, sym_python_identifier, - ACTIONS(1275), 1, - anon_sym_STAR, - STATE(868), 1, - sym_python_string, - STATE(922), 1, + STATE(876), 1, sym_primary_expression, - STATE(1260), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1871), 1, + STATE(1861), 1, sym_expression, - STATE(2446), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + STATE(1397), 2, + sym_attribute, + sym_subscript, + ACTIONS(1325), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -61022,11 +61811,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1235), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -61039,61 +61826,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [34391] = 24, - ACTIONS(577), 1, - anon_sym_LBRACK, - ACTIONS(579), 1, - anon_sym_LPAREN, - ACTIONS(581), 1, + [34466] = 24, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(89), 1, + anon_sym_not, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(95), 1, + anon_sym_lambda, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(925), 1, - anon_sym_not, - ACTIONS(929), 1, - anon_sym_lambda, - ACTIONS(931), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(1115), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(1171), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(850), 1, + STATE(833), 1, sym_python_string, - STATE(883), 1, + STATE(836), 1, sym_primary_expression, - STATE(1193), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1606), 1, + STATE(1700), 1, sym_expression, - STATE(2383), 1, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(923), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -61101,7 +61888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61118,61 +61905,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [34494] = 24, - ACTIONS(492), 1, - anon_sym_LBRACK, + [34569] = 24, ACTIONS(494), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(496), 1, + anon_sym_LPAREN, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(504), 1, - anon_sym_DASH, ACTIONS(506), 1, + anon_sym_DASH, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(823), 1, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(827), 1, - anon_sym_not, ACTIONS(829), 1, + anon_sym_not, + ACTIONS(831), 1, anon_sym_lambda, - ACTIONS(897), 1, + ACTIONS(925), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(927), 1, anon_sym_type, - ACTIONS(901), 1, + ACTIONS(929), 1, sym_python_identifier, - STATE(841), 1, - sym_python_string, - STATE(844), 1, + STATE(837), 1, sym_primary_expression, - STATE(1028), 1, + STATE(844), 1, + sym_python_string, + STATE(1133), 1, sym_list_splat_pattern, - STATE(1914), 1, + STATE(1661), 1, sym_expression, - STATE(2525), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(895), 4, + ACTIONS(923), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 5, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1624), 7, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -61180,7 +61967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61197,61 +61984,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [34597] = 24, - ACTIONS(465), 1, - anon_sym_LBRACK, + [34672] = 24, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(661), 1, + ACTIONS(663), 1, anon_sym_DASH, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1303), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1305), 1, + ACTIONS(1315), 1, anon_sym_not, - ACTIONS(1307), 1, + ACTIONS(1317), 1, anon_sym_lambda, - ACTIONS(1309), 1, + ACTIONS(1319), 1, anon_sym_await, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1192), 1, + STATE(1219), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1903), 1, + STATE(1895), 1, sym_expression, - STATE(2361), 1, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(659), 2, + ACTIONS(661), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -61259,7 +62046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61276,64 +62063,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [34700] = 25, - ACTIONS(577), 1, + [34775] = 24, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(589), 1, - anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(925), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(1171), 1, - anon_sym_STAR, - ACTIONS(1329), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(1331), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1333), 1, + ACTIONS(1141), 1, sym_python_identifier, - STATE(850), 1, + ACTIONS(1287), 1, + anon_sym_STAR, + STATE(853), 1, sym_python_string, - STATE(1031), 1, + STATE(939), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1846), 1, + STATE(1890), 1, sym_expression, - STATE(2383), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1254), 2, - sym_attribute, - sym_subscript, - ACTIONS(1327), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -61341,9 +62125,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 14, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -61356,61 +62142,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [34805] = 24, - ACTIONS(527), 1, + [34878] = 24, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(721), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(725), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(729), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(967), 1, sym_python_identifier, - ACTIONS(1095), 1, + ACTIONS(1101), 1, anon_sym_STAR, - STATE(838), 1, - sym_python_string, - STATE(839), 1, + STATE(893), 1, sym_primary_expression, - STATE(1136), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1649), 1, + STATE(1776), 1, sym_expression, - STATE(2454), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(719), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -61418,7 +62204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61435,61 +62221,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [34908] = 24, - ACTIONS(601), 1, - anon_sym_LBRACK, + [34981] = 25, ACTIONS(603), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(605), 1, + anon_sym_LPAREN, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(613), 1, - anon_sym_DASH, ACTIONS(615), 1, + anon_sym_DASH, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(697), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1151), 1, + anon_sym_STAR, + ACTIONS(1335), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(1337), 1, anon_sym_type, - ACTIONS(1001), 1, + ACTIONS(1339), 1, sym_python_identifier, - ACTIONS(1133), 1, - anon_sym_STAR, - STATE(857), 1, + STATE(952), 1, sym_python_string, - STATE(858), 1, + STATE(1088), 1, sym_primary_expression, - STATE(1163), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1742), 1, + STATE(1788), 1, sym_expression, - STATE(2557), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 4, + STATE(1268), 2, + sym_attribute, + sym_subscript, + ACTIONS(1333), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -61497,11 +62286,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 16, + STATE(1351), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -61514,61 +62301,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [35011] = 24, - ACTIONS(465), 1, + [35086] = 24, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(639), 1, + anon_sym_DASH, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(661), 1, - anon_sym_DASH, - ACTIONS(887), 1, - anon_sym_type, - ACTIONS(1139), 1, - sym_python_identifier, - ACTIONS(1303), 1, - anon_sym_STAR, - ACTIONS(1305), 1, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(1307), 1, + ACTIONS(679), 1, anon_sym_lambda, - ACTIONS(1309), 1, + ACTIONS(987), 1, anon_sym_await, - STATE(868), 1, + ACTIONS(989), 1, + anon_sym_type, + ACTIONS(991), 1, + sym_python_identifier, + ACTIONS(1097), 1, + anon_sym_STAR, + STATE(859), 1, sym_python_string, - STATE(1192), 1, + STATE(860), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1672), 1, sym_expression, - STATE(2361), 1, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(659), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(985), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -61576,7 +62363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61593,61 +62380,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [35114] = 24, - ACTIONS(492), 1, + [35189] = 24, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(560), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(823), 1, - anon_sym_STAR, - ACTIONS(827), 1, + ACTIONS(701), 1, anon_sym_not, - ACTIONS(829), 1, + ACTIONS(705), 1, anon_sym_lambda, - ACTIONS(897), 1, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(711), 1, anon_sym_type, - ACTIONS(901), 1, + ACTIONS(713), 1, sym_python_identifier, - STATE(841), 1, - sym_python_string, - STATE(844), 1, + ACTIONS(1091), 1, + anon_sym_STAR, + STATE(839), 1, sym_primary_expression, - STATE(1028), 1, + STATE(840), 1, + sym_python_string, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1621), 1, + STATE(1711), 1, sym_expression, - STATE(2525), 1, + STATE(2469), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(895), 4, + ACTIONS(699), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 5, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1624), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -61655,7 +62442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61672,61 +62459,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [35217] = 24, - ACTIONS(465), 1, + [35292] = 24, + ACTIONS(494), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(496), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(506), 1, + anon_sym_DASH, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(881), 1, + ACTIONS(825), 1, + anon_sym_STAR, + ACTIONS(829), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(831), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(925), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(927), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(929), 1, sym_python_identifier, - ACTIONS(1275), 1, - anon_sym_STAR, - STATE(868), 1, - sym_python_string, - STATE(922), 1, + STATE(837), 1, sym_primary_expression, - STATE(1260), 1, + STATE(844), 1, + sym_python_string, + STATE(1133), 1, sym_list_splat_pattern, - STATE(1827), 1, + STATE(1670), 1, sym_expression, - STATE(2446), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(923), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -61734,7 +62521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61751,61 +62538,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [35320] = 24, - ACTIONS(527), 1, + [35395] = 24, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(539), 1, - anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(721), 1, - anon_sym_not, - ACTIONS(725), 1, - anon_sym_lambda, - ACTIONS(729), 1, - anon_sym_await, - ACTIONS(731), 1, + ACTIONS(663), 1, + anon_sym_DASH, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1095), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(838), 1, + ACTIONS(1315), 1, + anon_sym_not, + ACTIONS(1317), 1, + anon_sym_lambda, + ACTIONS(1319), 1, + anon_sym_await, + STATE(853), 1, sym_python_string, - STATE(839), 1, + STATE(1219), 1, sym_primary_expression, - STATE(1136), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1620), 1, + STATE(1931), 1, sym_expression, - STATE(2454), 1, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(661), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(719), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -61813,7 +62600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61830,61 +62617,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [35423] = 24, - ACTIONS(527), 1, + [35498] = 24, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(539), 1, - anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(721), 1, - anon_sym_not, - ACTIONS(725), 1, - anon_sym_lambda, - ACTIONS(729), 1, - anon_sym_await, - ACTIONS(731), 1, + ACTIONS(663), 1, + anon_sym_DASH, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1095), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(838), 1, + ACTIONS(1315), 1, + anon_sym_not, + ACTIONS(1317), 1, + anon_sym_lambda, + ACTIONS(1319), 1, + anon_sym_await, + STATE(853), 1, sym_python_string, - STATE(839), 1, + STATE(1219), 1, sym_primary_expression, - STATE(1136), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1619), 1, + STATE(1884), 1, sym_expression, - STATE(2454), 1, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(661), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(719), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -61892,7 +62679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61909,61 +62696,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [35526] = 24, - ACTIONS(492), 1, - anon_sym_LBRACK, + [35601] = 24, ACTIONS(494), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(496), 1, + anon_sym_LPAREN, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(504), 1, - anon_sym_DASH, ACTIONS(506), 1, + anon_sym_DASH, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(823), 1, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(827), 1, - anon_sym_not, ACTIONS(829), 1, + anon_sym_not, + ACTIONS(831), 1, anon_sym_lambda, - ACTIONS(897), 1, + ACTIONS(925), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(927), 1, anon_sym_type, - ACTIONS(901), 1, + ACTIONS(929), 1, sym_python_identifier, - STATE(841), 1, - sym_python_string, - STATE(844), 1, + STATE(837), 1, sym_primary_expression, - STATE(1028), 1, + STATE(844), 1, + sym_python_string, + STATE(1133), 1, sym_list_splat_pattern, - STATE(1623), 1, + STATE(1665), 1, sym_expression, - STATE(2525), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(895), 4, + ACTIONS(923), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 5, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1624), 7, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -61971,7 +62758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61988,61 +62775,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [35629] = 24, - ACTIONS(465), 1, - anon_sym_LBRACK, + [35704] = 24, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(661), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(887), 1, - anon_sym_type, - ACTIONS(1139), 1, - sym_python_identifier, - ACTIONS(1303), 1, - anon_sym_STAR, - ACTIONS(1305), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(1307), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(1309), 1, + ACTIONS(847), 1, anon_sym_await, - STATE(868), 1, + ACTIONS(849), 1, + anon_sym_type, + ACTIONS(1141), 1, + sym_python_identifier, + ACTIONS(1287), 1, + anon_sym_STAR, + STATE(853), 1, sym_python_string, - STATE(1192), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1919), 1, + STATE(1636), 1, sym_expression, - STATE(2361), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(659), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -62050,7 +62837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62067,61 +62854,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [35732] = 24, - ACTIONS(492), 1, - anon_sym_LBRACK, + [35807] = 24, ACTIONS(494), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(496), 1, + anon_sym_LPAREN, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(504), 1, - anon_sym_DASH, ACTIONS(506), 1, + anon_sym_DASH, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(823), 1, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(827), 1, - anon_sym_not, ACTIONS(829), 1, + anon_sym_not, + ACTIONS(831), 1, anon_sym_lambda, - ACTIONS(897), 1, + ACTIONS(925), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(927), 1, anon_sym_type, - ACTIONS(901), 1, + ACTIONS(929), 1, sym_python_identifier, - STATE(841), 1, - sym_python_string, - STATE(844), 1, + STATE(837), 1, sym_primary_expression, - STATE(1028), 1, + STATE(844), 1, + sym_python_string, + STATE(1133), 1, sym_list_splat_pattern, - STATE(1638), 1, + STATE(1647), 1, sym_expression, - STATE(2525), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(895), 4, + ACTIONS(923), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 5, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1624), 7, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -62129,7 +62916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62146,61 +62933,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [35835] = 24, - ACTIONS(465), 1, - anon_sym_LBRACK, + [35910] = 24, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(661), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(887), 1, - anon_sym_type, - ACTIONS(1139), 1, - sym_python_identifier, - ACTIONS(1303), 1, - anon_sym_STAR, - ACTIONS(1305), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(1307), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(1309), 1, + ACTIONS(847), 1, anon_sym_await, - STATE(868), 1, + ACTIONS(849), 1, + anon_sym_type, + ACTIONS(1141), 1, + sym_python_identifier, + ACTIONS(1287), 1, + anon_sym_STAR, + STATE(853), 1, sym_python_string, - STATE(1192), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1936), 1, + STATE(1628), 1, sym_expression, - STATE(2361), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(659), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -62208,7 +62995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62225,61 +63012,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [35938] = 24, - ACTIONS(492), 1, - anon_sym_LBRACK, - ACTIONS(494), 1, - anon_sym_LPAREN, - ACTIONS(496), 1, + [36013] = 24, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(89), 1, + anon_sym_not, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(95), 1, + anon_sym_lambda, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(823), 1, - anon_sym_STAR, - ACTIONS(827), 1, - anon_sym_not, - ACTIONS(829), 1, - anon_sym_lambda, - ACTIONS(897), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(901), 1, + ACTIONS(324), 1, sym_python_identifier, - STATE(841), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(1165), 1, + anon_sym_STAR, + STATE(833), 1, sym_python_string, - STATE(844), 1, + STATE(836), 1, sym_primary_expression, - STATE(1028), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1641), 1, + STATE(1532), 1, sym_expression, - STATE(2525), 1, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(895), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1624), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -62287,7 +63074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62304,61 +63091,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [36041] = 24, - ACTIONS(465), 1, - anon_sym_LBRACK, + [36116] = 24, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(661), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(887), 1, - anon_sym_type, - ACTIONS(1139), 1, - sym_python_identifier, - ACTIONS(1303), 1, - anon_sym_STAR, - ACTIONS(1305), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(1307), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(1309), 1, + ACTIONS(847), 1, anon_sym_await, - STATE(868), 1, + ACTIONS(849), 1, + anon_sym_type, + ACTIONS(1141), 1, + sym_python_identifier, + ACTIONS(1287), 1, + anon_sym_STAR, + STATE(853), 1, sym_python_string, - STATE(1192), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1954), 1, + STATE(1637), 1, sym_expression, - STATE(2361), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(659), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -62366,7 +63153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62383,61 +63170,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [36144] = 24, - ACTIONS(527), 1, + [36219] = 24, + ACTIONS(494), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(496), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(721), 1, + ACTIONS(825), 1, + anon_sym_STAR, + ACTIONS(829), 1, anon_sym_not, - ACTIONS(725), 1, + ACTIONS(831), 1, anon_sym_lambda, - ACTIONS(729), 1, + ACTIONS(925), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(927), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(929), 1, sym_python_identifier, - ACTIONS(1095), 1, - anon_sym_STAR, - STATE(838), 1, - sym_python_string, - STATE(839), 1, + STATE(837), 1, sym_primary_expression, - STATE(1136), 1, + STATE(844), 1, + sym_python_string, + STATE(1133), 1, sym_list_splat_pattern, - STATE(1651), 1, + STATE(1926), 1, sym_expression, - STATE(2454), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(719), 4, + ACTIONS(923), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 5, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -62445,7 +63232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62462,61 +63249,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [36247] = 24, - ACTIONS(553), 1, + [36322] = 24, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(675), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(961), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1089), 1, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(947), 1, sym_primary_expression, - STATE(1172), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1732), 1, + STATE(1641), 1, sym_expression, - STATE(2497), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(959), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -62524,7 +63311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62541,61 +63328,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [36350] = 24, - ACTIONS(465), 1, - anon_sym_LBRACK, + [36425] = 24, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(661), 1, + ACTIONS(663), 1, anon_sym_DASH, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1303), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1305), 1, + ACTIONS(1315), 1, anon_sym_not, - ACTIONS(1307), 1, + ACTIONS(1317), 1, anon_sym_lambda, - ACTIONS(1309), 1, + ACTIONS(1319), 1, anon_sym_await, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1192), 1, + STATE(1219), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1613), 1, + STATE(1883), 1, sym_expression, - STATE(2361), 1, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(659), 2, + ACTIONS(661), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -62603,7 +63390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62620,61 +63407,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [36453] = 24, - ACTIONS(527), 1, + [36528] = 24, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(721), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(725), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(729), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(967), 1, sym_python_identifier, - ACTIONS(1095), 1, + ACTIONS(1101), 1, anon_sym_STAR, - STATE(838), 1, - sym_python_string, - STATE(839), 1, + STATE(893), 1, sym_primary_expression, - STATE(1136), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1634), 1, + STATE(1730), 1, sym_expression, - STATE(2454), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(719), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -62682,7 +63469,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62699,61 +63486,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [36556] = 24, - ACTIONS(465), 1, - anon_sym_LBRACK, + [36631] = 24, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(661), 1, + ACTIONS(663), 1, anon_sym_DASH, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1303), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1305), 1, + ACTIONS(1315), 1, anon_sym_not, - ACTIONS(1307), 1, + ACTIONS(1317), 1, anon_sym_lambda, - ACTIONS(1309), 1, + ACTIONS(1319), 1, anon_sym_await, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1192), 1, + STATE(1219), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1943), 1, + STATE(1875), 1, sym_expression, - STATE(2361), 1, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(659), 2, + ACTIONS(661), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -62761,7 +63548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62778,61 +63565,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [36659] = 24, - ACTIONS(577), 1, + [36734] = 24, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(589), 1, - anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(925), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(931), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1115), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1171), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(850), 1, + STATE(853), 1, sym_python_string, - STATE(883), 1, + STATE(939), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1819), 1, + STATE(1888), 1, sym_expression, - STATE(2383), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(923), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -62840,7 +63627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62857,61 +63644,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [36762] = 24, - ACTIONS(492), 1, + [36837] = 24, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(823), 1, - anon_sym_STAR, - ACTIONS(827), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(829), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(897), 1, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(901), 1, + ACTIONS(1111), 1, sym_python_identifier, - STATE(841), 1, - sym_python_string, - STATE(844), 1, + ACTIONS(1147), 1, + anon_sym_STAR, + STATE(876), 1, sym_primary_expression, - STATE(1028), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1880), 1, + STATE(1860), 1, sym_expression, - STATE(2525), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(895), 4, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1624), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -62919,7 +63706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62936,61 +63723,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [36865] = 24, - ACTIONS(577), 1, + [36940] = 24, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(925), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(931), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(1115), 1, + ACTIONS(967), 1, sym_python_identifier, - ACTIONS(1171), 1, + ACTIONS(1101), 1, anon_sym_STAR, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(893), 1, sym_primary_expression, - STATE(1193), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1729), 1, sym_expression, - STATE(2383), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(923), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -62998,7 +63785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63015,61 +63802,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [36968] = 24, - ACTIONS(465), 1, + [37043] = 24, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(583), 1, + anon_sym_DASH, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(881), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(967), 1, sym_python_identifier, - ACTIONS(1275), 1, + ACTIONS(1101), 1, anon_sym_STAR, - STATE(868), 1, - sym_python_string, - STATE(922), 1, + STATE(893), 1, sym_primary_expression, - STATE(1260), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1639), 1, + STATE(1728), 1, sym_expression, - STATE(2446), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -63077,7 +63864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63094,61 +63881,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [37071] = 24, - ACTIONS(465), 1, - anon_sym_LBRACK, + [37146] = 24, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(661), 1, + ACTIONS(663), 1, anon_sym_DASH, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1303), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1305), 1, + ACTIONS(1315), 1, anon_sym_not, - ACTIONS(1307), 1, + ACTIONS(1317), 1, anon_sym_lambda, - ACTIONS(1309), 1, + ACTIONS(1319), 1, anon_sym_await, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1192), 1, + STATE(1219), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1896), 1, + STATE(1920), 1, sym_expression, - STATE(2361), 1, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(659), 2, + ACTIONS(661), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -63156,7 +63943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63173,61 +63960,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [37174] = 24, - ACTIONS(465), 1, - anon_sym_LBRACK, - ACTIONS(467), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, + [37249] = 24, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(89), 1, + anon_sym_not, + ACTIONS(93), 1, + anon_sym_DASH, + ACTIONS(95), 1, + anon_sym_lambda, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(881), 1, - anon_sym_not, - ACTIONS(883), 1, - anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(1275), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(868), 1, + STATE(833), 1, sym_python_string, - STATE(922), 1, + STATE(836), 1, sym_primary_expression, - STATE(1260), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1640), 1, + STATE(1768), 1, sym_expression, - STATE(2446), 1, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -63235,7 +64022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63252,61 +64039,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [37277] = 24, - ACTIONS(553), 1, + [37352] = 24, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(560), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(675), 1, + ACTIONS(701), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(705), 1, anon_sym_lambda, - ACTIONS(961), 1, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(711), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(713), 1, sym_python_identifier, - ACTIONS(1089), 1, + ACTIONS(1091), 1, anon_sym_STAR, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(839), 1, sym_primary_expression, - STATE(1172), 1, + STATE(840), 1, + sym_python_string, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1770), 1, + STATE(1658), 1, sym_expression, - STATE(2497), 1, + STATE(2469), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(959), 4, + ACTIONS(699), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -63314,7 +64101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63331,61 +64118,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [37380] = 24, - ACTIONS(465), 1, - anon_sym_LBRACK, + [37455] = 24, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(881), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1275), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(922), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1642), 1, + STATE(1868), 1, sym_expression, - STATE(2446), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -63393,7 +64180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63410,61 +64197,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [37483] = 24, - ACTIONS(577), 1, + [37558] = 24, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(589), 1, - anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(925), 1, - anon_sym_not, - ACTIONS(929), 1, - anon_sym_lambda, - ACTIONS(931), 1, - anon_sym_await, - ACTIONS(933), 1, + ACTIONS(663), 1, + anon_sym_DASH, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1115), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1171), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(850), 1, + ACTIONS(1315), 1, + anon_sym_not, + ACTIONS(1317), 1, + anon_sym_lambda, + ACTIONS(1319), 1, + anon_sym_await, + STATE(853), 1, sym_python_string, - STATE(883), 1, + STATE(1219), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1777), 1, + STATE(1942), 1, sym_expression, - STATE(2383), 1, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(661), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(923), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -63472,7 +64259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63489,61 +64276,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [37586] = 24, - ACTIONS(465), 1, - anon_sym_LBRACK, - ACTIONS(467), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, + [37661] = 24, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(89), 1, + anon_sym_not, + ACTIONS(93), 1, + anon_sym_DASH, + ACTIONS(95), 1, + anon_sym_lambda, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(881), 1, - anon_sym_not, - ACTIONS(883), 1, - anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(1275), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(868), 1, + STATE(833), 1, sym_python_string, - STATE(922), 1, + STATE(836), 1, sym_primary_expression, - STATE(1260), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1615), 1, + STATE(1558), 1, sym_expression, - STATE(2446), 1, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -63551,7 +64338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63568,69 +64355,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [37689] = 24, - ACTIONS(465), 1, - anon_sym_LBRACK, + [37764] = 19, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(476), 1, + anon_sym_STAR, + ACTIONS(480), 1, + anon_sym_DASH, + ACTIONS(484), 1, sym_ellipsis, ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(881), 1, - anon_sym_not, - ACTIONS(883), 1, - anon_sym_lambda, - ACTIONS(885), 1, anon_sym_await, - ACTIONS(887), 1, - anon_sym_type, - ACTIONS(1139), 1, - sym_python_identifier, - ACTIONS(1275), 1, - anon_sym_STAR, - STATE(868), 1, + ACTIONS(492), 1, + sym_string_start, + STATE(853), 1, sym_python_string, - STATE(922), 1, - sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1643), 1, - sym_expression, - STATE(2446), 1, - sym__named_expression_lhs, + STATE(1452), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(473), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(488), 2, + anon_sym_type, + sym_identifier, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_as_pattern, - sym_conditional_expression, - STATE(1266), 16, + sym_python_identifier, + ACTIONS(566), 9, + anon_sym_GT_GT, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63647,61 +64429,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [37792] = 24, - ACTIONS(601), 1, + [37857] = 24, + ACTIONS(494), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(496), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(697), 1, + ACTIONS(825), 1, + anon_sym_STAR, + ACTIONS(829), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(831), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(925), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(927), 1, anon_sym_type, - ACTIONS(1001), 1, + ACTIONS(929), 1, sym_python_identifier, - ACTIONS(1133), 1, - anon_sym_STAR, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + STATE(837), 1, sym_primary_expression, - STATE(1163), 1, + STATE(844), 1, + sym_python_string, + STATE(1133), 1, sym_list_splat_pattern, - STATE(1727), 1, + STATE(1912), 1, sym_expression, - STATE(2557), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 4, + ACTIONS(923), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -63709,7 +64491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63726,61 +64508,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [37895] = 24, - ACTIONS(625), 1, + [37960] = 24, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(1123), 1, + ACTIONS(967), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1101), 1, anon_sym_STAR, - STATE(990), 1, + STATE(893), 1, sym_primary_expression, - STATE(1003), 1, + STATE(894), 1, sym_python_string, - STATE(1347), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1628), 1, + STATE(1727), 1, sym_expression, - STATE(2419), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -63788,7 +64570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63805,61 +64587,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [37998] = 24, - ACTIONS(577), 1, + [38063] = 24, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(925), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(931), 1, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(1115), 1, + ACTIONS(1111), 1, sym_python_identifier, - ACTIONS(1171), 1, + ACTIONS(1147), 1, anon_sym_STAR, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(876), 1, sym_primary_expression, - STATE(1193), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1811), 1, + STATE(1854), 1, sym_expression, - STATE(2383), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(923), 4, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -63867,7 +64649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63884,61 +64666,127 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [38101] = 24, - ACTIONS(553), 1, + [38166] = 11, + ACTIONS(288), 1, + anon_sym_EQ, + ACTIONS(290), 1, + anon_sym_COLON_EQ, + ACTIONS(304), 1, + anon_sym_COMMA, + ACTIONS(326), 1, + anon_sym_COLON, + ACTIONS(1321), 1, + sym_python_identifier, + ACTIONS(1323), 1, + sym_string_start, + STATE(2162), 1, + sym_python_string, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(300), 10, + sym__newline, anon_sym_LBRACK, - ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(557), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(292), 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(302), 22, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(567), 1, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + [38243] = 24, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, + anon_sym_LBRACE, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(675), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(961), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1089), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(851), 1, + STATE(853), 1, sym_python_string, - STATE(874), 1, + STATE(939), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1699), 1, + STATE(1650), 1, sym_expression, - STATE(2497), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(959), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -63946,7 +64794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63963,61 +64811,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [38204] = 24, - ACTIONS(601), 1, + [38346] = 25, + ACTIONS(494), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(496), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(697), 1, + ACTIONS(825), 1, + anon_sym_STAR, + ACTIONS(829), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(831), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1343), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(1345), 1, anon_sym_type, - ACTIONS(1001), 1, + ACTIONS(1347), 1, sym_python_identifier, - ACTIONS(1133), 1, - anon_sym_STAR, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + STATE(837), 1, sym_primary_expression, - STATE(1163), 1, + STATE(844), 1, + sym_python_string, + STATE(1133), 1, sym_list_splat_pattern, - STATE(1686), 1, + STATE(1823), 1, sym_expression, - STATE(2557), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 4, + STATE(1394), 2, + sym_attribute, + sym_subscript, + ACTIONS(1341), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -64025,11 +64876,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 16, + STATE(1136), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -64042,61 +64891,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [38307] = 24, - ACTIONS(527), 1, + [38451] = 24, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(721), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(725), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(729), 1, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(1111), 1, sym_python_identifier, - ACTIONS(1095), 1, + ACTIONS(1147), 1, anon_sym_STAR, - STATE(838), 1, - sym_python_string, - STATE(839), 1, + STATE(876), 1, sym_primary_expression, - STATE(1136), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1650), 1, + STATE(1856), 1, sym_expression, - STATE(2454), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(719), 4, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -64104,7 +64953,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64121,61 +64970,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [38410] = 24, - ACTIONS(465), 1, - anon_sym_LBRACK, + [38554] = 24, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(881), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1275), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(922), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1644), 1, + STATE(1886), 1, sym_expression, - STATE(2446), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -64183,7 +65032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64200,61 +65049,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [38513] = 24, - ACTIONS(43), 1, + [38657] = 24, + ACTIONS(494), 1, + anon_sym_LBRACK, + ACTIONS(496), 1, + anon_sym_LPAREN, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(93), 1, - anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(825), 1, + anon_sym_STAR, + ACTIONS(829), 1, + anon_sym_not, + ACTIONS(831), 1, + anon_sym_lambda, + ACTIONS(925), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(927), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(929), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(1167), 1, - anon_sym_STAR, - STATE(834), 1, - sym_python_string, - STATE(840), 1, + STATE(837), 1, sym_primary_expression, - STATE(989), 1, + STATE(844), 1, + sym_python_string, + STATE(1133), 1, sym_list_splat_pattern, - STATE(1561), 1, + STATE(1668), 1, sym_expression, - STATE(2396), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(923), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -64262,7 +65111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64279,61 +65128,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [38616] = 24, - ACTIONS(43), 1, + [38760] = 24, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_not, - ACTIONS(91), 1, - anon_sym_DASH, ACTIONS(93), 1, + anon_sym_DASH, + ACTIONS(95), 1, anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(834), 1, + STATE(833), 1, sym_python_string, - STATE(840), 1, + STATE(836), 1, sym_primary_expression, - STATE(989), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1543), 1, + STATE(1550), 1, sym_expression, - STATE(2396), 1, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -64341,7 +65190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64358,126 +65207,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [38719] = 10, - ACTIONS(288), 1, - anon_sym_COLON_EQ, - ACTIONS(305), 1, - anon_sym_COMMA, - ACTIONS(1335), 1, - sym_python_identifier, - ACTIONS(1337), 1, - sym_string_start, - STATE(2153), 1, - sym_python_string, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(286), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(301), 10, - sym__newline, + [38863] = 24, + ACTIONS(494), 1, anon_sym_LBRACK, + ACTIONS(496), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(290), 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(303), 22, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - [38794] = 24, - ACTIONS(43), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(93), 1, - anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(825), 1, + anon_sym_STAR, + ACTIONS(829), 1, + anon_sym_not, + ACTIONS(831), 1, + anon_sym_lambda, + ACTIONS(925), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(927), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(929), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(1167), 1, - anon_sym_STAR, - STATE(834), 1, - sym_python_string, - STATE(840), 1, + STATE(837), 1, sym_primary_expression, - STATE(989), 1, + STATE(844), 1, + sym_python_string, + STATE(1133), 1, sym_list_splat_pattern, - STATE(1546), 1, + STATE(1934), 1, sym_expression, - STATE(2396), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(923), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -64485,7 +65269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64502,61 +65286,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [38897] = 24, - ACTIONS(465), 1, + [38966] = 24, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(583), 1, + anon_sym_DASH, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(881), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(967), 1, sym_python_identifier, - ACTIONS(1275), 1, + ACTIONS(1101), 1, anon_sym_STAR, - STATE(868), 1, - sym_python_string, - STATE(922), 1, + STATE(893), 1, sym_primary_expression, - STATE(1260), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1828), 1, + STATE(1716), 1, sym_expression, - STATE(2446), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -64564,7 +65348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64581,61 +65365,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [39000] = 24, - ACTIONS(43), 1, + [39069] = 24, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, - anon_sym_DASH, - ACTIONS(93), 1, - anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(843), 1, + anon_sym_not, + ACTIONS(845), 1, + anon_sym_lambda, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(834), 1, + STATE(853), 1, sym_python_string, - STATE(840), 1, + STATE(939), 1, sym_primary_expression, - STATE(989), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1706), 1, + STATE(1781), 1, sym_expression, - STATE(2396), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -64643,7 +65427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64660,61 +65444,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [39103] = 24, - ACTIONS(492), 1, + [39172] = 24, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(823), 1, - anon_sym_STAR, - ACTIONS(827), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(829), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(897), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(901), 1, + ACTIONS(1123), 1, sym_python_identifier, - STATE(841), 1, - sym_python_string, - STATE(844), 1, + ACTIONS(1151), 1, + anon_sym_STAR, + STATE(947), 1, sym_primary_expression, - STATE(1028), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, STATE(1652), 1, sym_expression, - STATE(2525), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(895), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1624), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -64722,7 +65506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64739,61 +65523,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [39206] = 24, - ACTIONS(553), 1, + [39275] = 24, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(675), 1, - anon_sym_not, ACTIONS(677), 1, + anon_sym_not, + ACTIONS(679), 1, anon_sym_lambda, - ACTIONS(961), 1, + ACTIONS(987), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(991), 1, sym_python_identifier, - ACTIONS(1089), 1, + ACTIONS(1097), 1, anon_sym_STAR, - STATE(851), 1, + STATE(859), 1, sym_python_string, - STATE(874), 1, + STATE(860), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(1759), 1, sym_expression, - STATE(2497), 1, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(959), 4, + ACTIONS(985), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -64801,7 +65585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64818,61 +65602,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [39309] = 24, - ACTIONS(465), 1, + [39378] = 25, + ACTIONS(494), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(496), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(506), 1, + anon_sym_DASH, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(661), 1, - anon_sym_DASH, - ACTIONS(887), 1, - anon_sym_type, - ACTIONS(1139), 1, - sym_python_identifier, - ACTIONS(1303), 1, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(1305), 1, + ACTIONS(829), 1, anon_sym_not, - ACTIONS(1307), 1, + ACTIONS(831), 1, anon_sym_lambda, - ACTIONS(1309), 1, + ACTIONS(1351), 1, anon_sym_await, - STATE(868), 1, + ACTIONS(1353), 1, + anon_sym_type, + ACTIONS(1355), 1, + sym_python_identifier, + STATE(844), 1, sym_python_string, - STATE(1192), 1, + STATE(1059), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1133), 1, sym_list_splat_pattern, - STATE(1913), 1, + STATE(1823), 1, sym_expression, - STATE(2361), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(659), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + STATE(1084), 2, + sym_attribute, + sym_subscript, + ACTIONS(1349), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -64880,11 +65667,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1136), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -64897,61 +65682,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [39412] = 24, - ACTIONS(43), 1, + [39483] = 24, + ACTIONS(518), 1, + anon_sym_LBRACK, + ACTIONS(520), 1, + anon_sym_LPAREN, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(93), 1, - anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(899), 1, + anon_sym_not, + ACTIONS(903), 1, + anon_sym_lambda, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(1111), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(1147), 1, anon_sym_STAR, - STATE(834), 1, - sym_python_string, - STATE(840), 1, + STATE(876), 1, sym_primary_expression, - STATE(989), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1526), 1, + STATE(1605), 1, sym_expression, - STATE(2396), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -64959,7 +65744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64976,61 +65761,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [39515] = 24, - ACTIONS(625), 1, + [39586] = 24, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1789), 1, + STATE(1803), 1, sym_expression, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -65038,7 +65823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -65055,61 +65840,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [39618] = 24, - ACTIONS(43), 1, + [39689] = 24, + ACTIONS(542), 1, + anon_sym_LBRACK, + ACTIONS(544), 1, + anon_sym_LPAREN, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(93), 1, - anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(560), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(701), 1, + anon_sym_not, + ACTIONS(705), 1, + anon_sym_lambda, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(711), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(713), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(1091), 1, anon_sym_STAR, - STATE(834), 1, - sym_python_string, - STATE(840), 1, + STATE(839), 1, sym_primary_expression, - STATE(989), 1, + STATE(840), 1, + sym_python_string, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1530), 1, + STATE(1660), 1, sym_expression, - STATE(2396), 1, + STATE(2469), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(699), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -65117,7 +65902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -65134,61 +65919,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [39721] = 24, - ACTIONS(527), 1, + [39792] = 24, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(721), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(725), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(729), 1, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(1111), 1, sym_python_identifier, - ACTIONS(1095), 1, + ACTIONS(1147), 1, anon_sym_STAR, - STATE(838), 1, - sym_python_string, - STATE(839), 1, + STATE(876), 1, sym_primary_expression, - STATE(1136), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1755), 1, + STATE(1622), 1, sym_expression, - STATE(2454), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(719), 4, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -65196,7 +65981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -65213,64 +65998,135 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [39824] = 25, - ACTIONS(492), 1, + [39895] = 19, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(476), 1, + anon_sym_STAR, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(510), 1, - sym_identifier, - ACTIONS(514), 1, + ACTIONS(486), 1, + anon_sym_await, + ACTIONS(492), 1, sym_string_start, - ACTIONS(823), 1, - anon_sym_STAR, - ACTIONS(827), 1, + STATE(853), 1, + sym_python_string, + STATE(1269), 1, + sym_list_splat_pattern, + STATE(1452), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(302), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(482), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(488), 2, + anon_sym_type, + sym_identifier, + ACTIONS(478), 4, + anon_sym_print, + anon_sym_exec, + anon_sym_async, + anon_sym_match, + ACTIONS(490), 6, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + sym_python_identifier, + ACTIONS(300), 9, + anon_sym_GT_GT, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1278), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_generator_expression, + sym_parenthesized_expression, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_concatenated_string, + sym_await, + [39988] = 24, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(89), 1, anon_sym_not, - ACTIONS(829), 1, + ACTIONS(93), 1, + anon_sym_DASH, + ACTIONS(95), 1, anon_sym_lambda, - ACTIONS(1341), 1, + ACTIONS(99), 1, + sym_ellipsis, + ACTIONS(111), 1, + sym_identifier, + ACTIONS(115), 1, + sym_string_start, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(1343), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(1345), 1, + ACTIONS(324), 1, sym_python_identifier, - STATE(841), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(1165), 1, + anon_sym_STAR, + STATE(833), 1, sym_python_string, - STATE(1028), 1, - sym_list_splat_pattern, - STATE(1034), 1, + STATE(836), 1, sym_primary_expression, - STATE(1787), 1, + STATE(960), 1, + sym_list_splat_pattern, + STATE(1556), 1, sym_expression, - STATE(2525), 1, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1127), 2, - sym_attribute, - sym_subscript, - ACTIONS(1339), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1624), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -65278,9 +66134,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 14, + STATE(964), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -65293,61 +66151,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [39929] = 24, - ACTIONS(553), 1, + [40091] = 24, + ACTIONS(494), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(496), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(675), 1, + ACTIONS(825), 1, + anon_sym_STAR, + ACTIONS(829), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(831), 1, anon_sym_lambda, - ACTIONS(961), 1, + ACTIONS(925), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(927), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(929), 1, sym_python_identifier, - ACTIONS(1089), 1, - anon_sym_STAR, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(837), 1, sym_primary_expression, - STATE(1172), 1, + STATE(844), 1, + sym_python_string, + STATE(1133), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1953), 1, sym_expression, - STATE(2497), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(959), 4, + ACTIONS(923), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -65355,7 +66213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -65372,61 +66230,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [40032] = 24, - ACTIONS(553), 1, + [40194] = 24, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(675), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(961), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1089), 1, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(947), 1, sym_primary_expression, - STATE(1172), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1722), 1, + STATE(1635), 1, sym_expression, - STATE(2497), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(959), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -65434,7 +66292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -65451,61 +66309,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [40135] = 24, - ACTIONS(465), 1, - anon_sym_LBRACK, + [40297] = 24, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(881), 1, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1275), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(922), 1, + STATE(939), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1646), 1, + STATE(1782), 1, sym_expression, - STATE(2446), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -65513,7 +66371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -65530,61 +66388,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [40238] = 24, - ACTIONS(577), 1, + [40400] = 24, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(925), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(931), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(1115), 1, + ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1171), 1, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(947), 1, sym_primary_expression, - STATE(1193), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1841), 1, + STATE(1649), 1, sym_expression, - STATE(2383), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(923), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -65592,7 +66450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -65609,61 +66467,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [40341] = 24, - ACTIONS(625), 1, + [40503] = 24, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(637), 1, - anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(865), 1, - anon_sym_not, - ACTIONS(869), 1, - anon_sym_lambda, - ACTIONS(871), 1, - anon_sym_await, - ACTIONS(873), 1, + ACTIONS(663), 1, + anon_sym_DASH, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1123), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(990), 1, - sym_primary_expression, - STATE(1003), 1, + ACTIONS(1315), 1, + anon_sym_not, + ACTIONS(1317), 1, + anon_sym_lambda, + ACTIONS(1319), 1, + anon_sym_await, + STATE(853), 1, sym_python_string, - STATE(1347), 1, + STATE(1219), 1, + sym_primary_expression, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1845), 1, + STATE(1628), 1, sym_expression, - STATE(2419), 1, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(661), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -65671,7 +66529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -65688,61 +66546,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [40444] = 24, - ACTIONS(553), 1, + [40606] = 24, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(675), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(961), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(883), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1089), 1, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(947), 1, sym_primary_expression, - STATE(1172), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1721), 1, + STATE(1646), 1, sym_expression, - STATE(2497), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(959), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -65750,7 +66608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -65767,61 +66625,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [40547] = 24, - ACTIONS(43), 1, + [40709] = 24, + ACTIONS(542), 1, + anon_sym_LBRACK, + ACTIONS(544), 1, + anon_sym_LPAREN, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(93), 1, - anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(560), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(701), 1, + anon_sym_not, + ACTIONS(705), 1, + anon_sym_lambda, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(711), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(713), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(1091), 1, anon_sym_STAR, - STATE(834), 1, - sym_python_string, - STATE(840), 1, + STATE(839), 1, sym_primary_expression, - STATE(989), 1, + STATE(840), 1, + sym_python_string, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1796), 1, + STATE(1743), 1, sym_expression, - STATE(2396), 1, + STATE(2469), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(699), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -65829,7 +66687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -65846,61 +66704,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [40650] = 24, - ACTIONS(625), 1, - anon_sym_LBRACK, - ACTIONS(627), 1, - anon_sym_LPAREN, - ACTIONS(629), 1, + [40812] = 24, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(89), 1, + anon_sym_not, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(95), 1, + anon_sym_lambda, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(865), 1, - anon_sym_not, - ACTIONS(869), 1, - anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(1123), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(990), 1, - sym_primary_expression, - STATE(1003), 1, + STATE(833), 1, sym_python_string, - STATE(1347), 1, + STATE(836), 1, + sym_primary_expression, + STATE(960), 1, sym_list_splat_pattern, - STATE(1630), 1, + STATE(1569), 1, sym_expression, - STATE(2419), 1, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -65908,7 +66766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -65925,61 +66783,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [40753] = 24, - ACTIONS(625), 1, + [40915] = 24, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1631), 1, + STATE(1644), 1, sym_expression, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -65987,7 +66845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -66004,127 +66862,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [40856] = 11, - ACTIONS(286), 1, - anon_sym_EQ, - ACTIONS(288), 1, - anon_sym_COLON_EQ, - ACTIONS(295), 1, - anon_sym_COLON, - ACTIONS(305), 1, - anon_sym_COMMA, - ACTIONS(1335), 1, - sym_python_identifier, - ACTIONS(1337), 1, - sym_string_start, - STATE(2153), 1, - sym_python_string, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(301), 10, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(290), 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(303), 22, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - [40933] = 24, - ACTIONS(553), 1, - anon_sym_LBRACK, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(557), 1, + [41018] = 24, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(89), 1, + anon_sym_not, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(95), 1, + anon_sym_lambda, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(675), 1, - anon_sym_not, - ACTIONS(677), 1, - anon_sym_lambda, - ACTIONS(961), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(1089), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(851), 1, + STATE(833), 1, sym_python_string, - STATE(874), 1, + STATE(836), 1, sym_primary_expression, - STATE(1172), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1720), 1, + STATE(1531), 1, sym_expression, - STATE(2497), 1, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(959), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -66132,7 +66924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -66149,61 +66941,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [41036] = 24, - ACTIONS(625), 1, + [41121] = 24, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(881), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(883), 1, anon_sym_type, ACTIONS(1123), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(990), 1, + STATE(947), 1, sym_primary_expression, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1632), 1, + STATE(1643), 1, sym_expression, - STATE(2419), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -66211,7 +67003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -66228,61 +67020,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [41139] = 24, - ACTIONS(625), 1, + [41224] = 24, + ACTIONS(494), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(496), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(825), 1, + anon_sym_STAR, + ACTIONS(829), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(831), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(925), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(927), 1, anon_sym_type, - ACTIONS(1123), 1, + ACTIONS(929), 1, sym_python_identifier, - ACTIONS(1191), 1, - anon_sym_STAR, - STATE(990), 1, + STATE(837), 1, sym_primary_expression, - STATE(1003), 1, + STATE(844), 1, sym_python_string, - STATE(1347), 1, + STATE(1133), 1, sym_list_splat_pattern, - STATE(1633), 1, + STATE(1648), 1, sym_expression, - STATE(2419), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(923), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -66290,7 +67082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -66307,61 +67099,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [41242] = 24, - ACTIONS(625), 1, - anon_sym_LBRACK, - ACTIONS(627), 1, - anon_sym_LPAREN, - ACTIONS(629), 1, + [41327] = 24, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(89), 1, + anon_sym_not, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(95), 1, + anon_sym_lambda, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(865), 1, - anon_sym_not, - ACTIONS(869), 1, - anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(1123), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(990), 1, - sym_primary_expression, - STATE(1003), 1, + STATE(833), 1, sym_python_string, - STATE(1347), 1, + STATE(836), 1, + sym_primary_expression, + STATE(960), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1829), 1, sym_expression, - STATE(2419), 1, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -66369,7 +67161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -66386,64 +67178,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [41345] = 25, - ACTIONS(492), 1, + [41430] = 24, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(823), 1, - anon_sym_STAR, - ACTIONS(827), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(829), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(1349), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(1351), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(1353), 1, + ACTIONS(967), 1, sym_python_identifier, - STATE(841), 1, - sym_python_string, - STATE(844), 1, + ACTIONS(1101), 1, + anon_sym_STAR, + STATE(893), 1, sym_primary_expression, - STATE(1028), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1787), 1, + STATE(1710), 1, sym_expression, - STATE(2525), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1389), 2, - sym_attribute, - sym_subscript, - ACTIONS(1347), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1624), 7, + STATE(1685), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -66451,9 +67240,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 14, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -66466,64 +67257,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [41450] = 25, - ACTIONS(625), 1, + [41533] = 24, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(869), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(1191), 1, - anon_sym_STAR, - ACTIONS(1357), 1, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(1359), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(1361), 1, + ACTIONS(1111), 1, sym_python_identifier, - STATE(990), 1, + ACTIONS(1147), 1, + anon_sym_STAR, + STATE(876), 1, sym_primary_expression, - STATE(1003), 1, + STATE(889), 1, sym_python_string, - STATE(1347), 1, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1791), 1, + STATE(1613), 1, sym_expression, - STATE(2419), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1383), 2, - sym_attribute, - sym_subscript, - ACTIONS(1355), 4, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -66531,9 +67319,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 14, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -66546,61 +67336,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [41555] = 24, - ACTIONS(601), 1, + [41636] = 24, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(697), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(1001), 1, + ACTIONS(1111), 1, sym_python_identifier, - ACTIONS(1133), 1, + ACTIONS(1147), 1, anon_sym_STAR, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + STATE(876), 1, sym_primary_expression, - STATE(1163), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1716), 1, + STATE(1612), 1, sym_expression, - STATE(2557), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 4, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -66608,7 +67398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -66625,64 +67415,69 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [41658] = 19, - ACTIONS(465), 1, - anon_sym_LBRACK, + [41739] = 24, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(474), 1, - anon_sym_STAR, - ACTIONS(478), 1, - anon_sym_DASH, - ACTIONS(482), 1, - sym_ellipsis, ACTIONS(484), 1, - anon_sym_await, - ACTIONS(490), 1, + sym_ellipsis, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, sym_string_start, - STATE(868), 1, + ACTIONS(663), 1, + anon_sym_DASH, + ACTIONS(849), 1, + anon_sym_type, + ACTIONS(1141), 1, + sym_python_identifier, + ACTIONS(1313), 1, + anon_sym_STAR, + ACTIONS(1315), 1, + anon_sym_not, + ACTIONS(1317), 1, + anon_sym_lambda, + ACTIONS(1319), 1, + anon_sym_await, + STATE(853), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1475), 1, + STATE(1219), 1, sym_primary_expression, + STATE(1269), 1, + sym_list_splat_pattern, + STATE(1943), 1, + sym_expression, + STATE(2365), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(480), 2, + ACTIONS(661), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(476), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - ACTIONS(301), 9, - anon_sym_GT_GT, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1266), 16, + STATE(1603), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_as_pattern, + sym_conditional_expression, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -66699,61 +67494,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [41751] = 24, - ACTIONS(577), 1, + [41842] = 24, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(589), 1, - anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(925), 1, - anon_sym_not, - ACTIONS(929), 1, - anon_sym_lambda, - ACTIONS(931), 1, - anon_sym_await, - ACTIONS(933), 1, + ACTIONS(663), 1, + anon_sym_DASH, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1115), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1171), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(850), 1, + ACTIONS(1315), 1, + anon_sym_not, + ACTIONS(1317), 1, + anon_sym_lambda, + ACTIONS(1319), 1, + anon_sym_await, + STATE(853), 1, sym_python_string, - STATE(883), 1, + STATE(1219), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1581), 1, + STATE(1951), 1, sym_expression, - STATE(2383), 1, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(661), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(923), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -66761,7 +67556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -66778,64 +67573,69 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [41854] = 19, - ACTIONS(465), 1, - anon_sym_LBRACK, - ACTIONS(467), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, + [41945] = 24, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(474), 1, - anon_sym_STAR, - ACTIONS(478), 1, + ACTIONS(89), 1, + anon_sym_not, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(95), 1, + anon_sym_lambda, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(484), 1, - anon_sym_await, - ACTIONS(490), 1, + ACTIONS(111), 1, + sym_identifier, + ACTIONS(115), 1, sym_string_start, - STATE(868), 1, + ACTIONS(320), 1, + anon_sym_await, + ACTIONS(322), 1, + anon_sym_type, + ACTIONS(324), 1, + sym_python_identifier, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(1165), 1, + anon_sym_STAR, + STATE(833), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1475), 1, + STATE(836), 1, sym_primary_expression, + STATE(960), 1, + sym_list_splat_pattern, + STATE(1565), 1, + sym_expression, + STATE(2402), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(471), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(480), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(476), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - ACTIONS(524), 9, - anon_sym_GT_GT, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1266), 16, + STATE(1526), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_as_pattern, + sym_conditional_expression, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -66852,61 +67652,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [41947] = 24, - ACTIONS(465), 1, + [42048] = 24, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(615), 1, + anon_sym_DASH, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(621), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(661), 1, - anon_sym_DASH, - ACTIONS(887), 1, - anon_sym_type, - ACTIONS(1139), 1, - sym_python_identifier, - ACTIONS(1303), 1, - anon_sym_STAR, - ACTIONS(1305), 1, + ACTIONS(875), 1, anon_sym_not, - ACTIONS(1307), 1, + ACTIONS(879), 1, anon_sym_lambda, - ACTIONS(1309), 1, + ACTIONS(881), 1, anon_sym_await, - STATE(868), 1, - sym_python_string, - STATE(1192), 1, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(1123), 1, + sym_python_identifier, + ACTIONS(1151), 1, + anon_sym_STAR, + STATE(947), 1, sym_primary_expression, - STATE(1260), 1, + STATE(952), 1, + sym_python_string, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1944), 1, + STATE(1843), 1, sym_expression, - STATE(2361), 1, + STATE(2425), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(659), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(873), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(623), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1654), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -66914,7 +67714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -66931,61 +67731,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [42050] = 24, - ACTIONS(465), 1, + [42151] = 24, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(639), 1, + anon_sym_DASH, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(661), 1, - anon_sym_DASH, - ACTIONS(887), 1, - anon_sym_type, - ACTIONS(1139), 1, - sym_python_identifier, - ACTIONS(1303), 1, - anon_sym_STAR, - ACTIONS(1305), 1, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(1307), 1, + ACTIONS(679), 1, anon_sym_lambda, - ACTIONS(1309), 1, + ACTIONS(987), 1, anon_sym_await, - STATE(868), 1, + ACTIONS(989), 1, + anon_sym_type, + ACTIONS(991), 1, + sym_python_identifier, + ACTIONS(1097), 1, + anon_sym_STAR, + STATE(859), 1, sym_python_string, - STATE(1192), 1, + STATE(860), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1920), 1, + STATE(1725), 1, sym_expression, - STATE(2361), 1, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(659), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(985), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -66993,7 +67793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -67010,61 +67810,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [42153] = 24, - ACTIONS(492), 1, + [42254] = 24, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(560), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(823), 1, - anon_sym_STAR, - ACTIONS(827), 1, + ACTIONS(701), 1, anon_sym_not, - ACTIONS(829), 1, + ACTIONS(705), 1, anon_sym_lambda, - ACTIONS(897), 1, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(711), 1, anon_sym_type, - ACTIONS(901), 1, + ACTIONS(713), 1, sym_python_identifier, - STATE(841), 1, - sym_python_string, - STATE(844), 1, + ACTIONS(1091), 1, + anon_sym_STAR, + STATE(839), 1, sym_primary_expression, - STATE(1028), 1, + STATE(840), 1, + sym_python_string, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1814), 1, + STATE(1662), 1, sym_expression, - STATE(2525), 1, + STATE(2469), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(895), 4, + ACTIONS(699), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 5, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1624), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -67072,7 +67872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -67089,61 +67889,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [42256] = 24, - ACTIONS(601), 1, + [42357] = 24, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(613), 1, - anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(697), 1, - anon_sym_not, - ACTIONS(699), 1, - anon_sym_lambda, - ACTIONS(997), 1, - anon_sym_await, - ACTIONS(999), 1, + ACTIONS(663), 1, + anon_sym_DASH, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1001), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1133), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(857), 1, + ACTIONS(1315), 1, + anon_sym_not, + ACTIONS(1317), 1, + anon_sym_lambda, + ACTIONS(1319), 1, + anon_sym_await, + STATE(853), 1, sym_python_string, - STATE(858), 1, + STATE(1219), 1, sym_primary_expression, - STATE(1163), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1691), 1, + STATE(1935), 1, sym_expression, - STATE(2557), 1, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(661), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -67151,7 +67951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -67168,61 +67968,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [42359] = 24, - ACTIONS(43), 1, + [42460] = 24, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, - anon_sym_DASH, - ACTIONS(93), 1, - anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(843), 1, + anon_sym_not, + ACTIONS(845), 1, + anon_sym_lambda, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(834), 1, + STATE(853), 1, sym_python_string, - STATE(840), 1, + STATE(939), 1, sym_primary_expression, - STATE(989), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1574), 1, + STATE(1615), 1, sym_expression, - STATE(2396), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -67230,7 +68030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -67247,55 +68047,55 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [42462] = 24, - ACTIONS(601), 1, + [42563] = 24, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(697), 1, + ACTIONS(729), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(731), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(963), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(965), 1, anon_sym_type, - ACTIONS(1001), 1, + ACTIONS(967), 1, sym_python_identifier, - ACTIONS(1133), 1, + ACTIONS(1101), 1, anon_sym_STAR, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + STATE(893), 1, sym_primary_expression, - STATE(1163), 1, + STATE(894), 1, + sym_python_string, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1693), 1, + STATE(1726), 1, sym_expression, - STATE(2557), 1, + STATE(2543), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 4, + ACTIONS(961), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(591), 5, sym_integer, sym_float, sym_true, @@ -67309,7 +68109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -67326,61 +68126,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [42565] = 24, - ACTIONS(553), 1, + [42666] = 24, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(571), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(675), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(677), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(961), 1, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(965), 1, + ACTIONS(1111), 1, sym_python_identifier, - ACTIONS(1089), 1, + ACTIONS(1147), 1, anon_sym_STAR, - STATE(851), 1, - sym_python_string, - STATE(874), 1, + STATE(876), 1, sym_primary_expression, - STATE(1172), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1709), 1, + STATE(1583), 1, sym_expression, - STATE(2497), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(959), 4, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1736), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -67388,7 +68188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1223), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -67405,61 +68205,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [42668] = 24, - ACTIONS(601), 1, + [42769] = 24, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(613), 1, - anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(697), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1001), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1133), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(857), 1, + STATE(853), 1, sym_python_string, - STATE(858), 1, + STATE(939), 1, sym_primary_expression, - STATE(1163), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1694), 1, + STATE(1896), 1, sym_expression, - STATE(2557), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -67467,7 +68267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -67484,61 +68284,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [42771] = 24, - ACTIONS(492), 1, + [42872] = 24, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(823), 1, - anon_sym_STAR, - ACTIONS(827), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(829), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(897), 1, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(901), 1, + ACTIONS(1111), 1, sym_python_identifier, - STATE(841), 1, - sym_python_string, - STATE(844), 1, + ACTIONS(1147), 1, + anon_sym_STAR, + STATE(876), 1, sym_primary_expression, - STATE(1028), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1897), 1, + STATE(1611), 1, sym_expression, - STATE(2525), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(895), 4, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1624), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -67546,7 +68346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -67563,61 +68363,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [42874] = 24, - ACTIONS(492), 1, + [42975] = 24, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(504), 1, - anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(823), 1, - anon_sym_STAR, - ACTIONS(827), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(843), 1, anon_sym_not, - ACTIONS(829), 1, + ACTIONS(845), 1, anon_sym_lambda, - ACTIONS(897), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(901), 1, + ACTIONS(1141), 1, sym_python_identifier, - STATE(841), 1, + ACTIONS(1287), 1, + anon_sym_STAR, + STATE(853), 1, sym_python_string, - STATE(844), 1, + STATE(939), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1627), 1, + STATE(1640), 1, sym_expression, - STATE(2525), 1, + STATE(2452), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(895), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1624), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -67625,7 +68425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -67642,61 +68442,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [42977] = 24, - ACTIONS(492), 1, + [43078] = 24, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(510), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(823), 1, - anon_sym_STAR, - ACTIONS(827), 1, + ACTIONS(677), 1, anon_sym_not, - ACTIONS(829), 1, + ACTIONS(679), 1, anon_sym_lambda, - ACTIONS(897), 1, + ACTIONS(987), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(989), 1, anon_sym_type, - ACTIONS(901), 1, + ACTIONS(991), 1, sym_python_identifier, - STATE(841), 1, + ACTIONS(1097), 1, + anon_sym_STAR, + STATE(859), 1, sym_python_string, - STATE(844), 1, + STATE(860), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1636), 1, + STATE(1738), 1, sym_expression, - STATE(2525), 1, + STATE(2482), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(895), 4, + ACTIONS(985), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 5, + ACTIONS(647), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1624), 7, + STATE(1702), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -67704,7 +68504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1026), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -67721,61 +68521,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [43080] = 24, - ACTIONS(577), 1, + [43181] = 24, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(595), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(925), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(929), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(931), 1, + ACTIONS(905), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(907), 1, anon_sym_type, - ACTIONS(1115), 1, + ACTIONS(1111), 1, sym_python_identifier, - ACTIONS(1171), 1, + ACTIONS(1147), 1, anon_sym_STAR, - STATE(850), 1, - sym_python_string, - STATE(883), 1, + STATE(876), 1, sym_primary_expression, - STATE(1193), 1, + STATE(889), 1, + sym_python_string, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1587), 1, + STATE(1606), 1, sym_expression, - STATE(2383), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(923), 4, + ACTIONS(897), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1611), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -67783,7 +68583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -67800,61 +68600,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [43183] = 24, - ACTIONS(43), 1, + [43284] = 24, + ACTIONS(494), 1, + anon_sym_LBRACK, + ACTIONS(496), 1, + anon_sym_LPAREN, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(93), 1, - anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(825), 1, + anon_sym_STAR, + ACTIONS(829), 1, + anon_sym_not, + ACTIONS(831), 1, + anon_sym_lambda, + ACTIONS(925), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(927), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(929), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(1167), 1, - anon_sym_STAR, - STATE(834), 1, - sym_python_string, - STATE(840), 1, + STATE(837), 1, sym_primary_expression, - STATE(989), 1, + STATE(844), 1, + sym_python_string, + STATE(1133), 1, sym_list_splat_pattern, - STATE(1665), 1, + STATE(1830), 1, sym_expression, - STATE(2396), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(923), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -67862,7 +68662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -67879,61 +68679,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [43286] = 24, - ACTIONS(43), 1, + [43387] = 24, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(97), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(323), 1, + ACTIONS(663), 1, + anon_sym_DASH, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(520), 1, - anon_sym_DASH, - ACTIONS(1181), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1183), 1, + ACTIONS(1315), 1, anon_sym_not, - ACTIONS(1185), 1, + ACTIONS(1317), 1, anon_sym_lambda, - ACTIONS(1187), 1, + ACTIONS(1319), 1, anon_sym_await, - STATE(834), 1, + STATE(853), 1, sym_python_string, - STATE(877), 1, + STATE(1219), 1, sym_primary_expression, - STATE(989), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1669), 1, + STATE(1955), 1, sym_expression, - STATE(2469), 1, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(518), 2, + ACTIONS(661), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -67941,7 +68741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -67958,61 +68758,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [43389] = 24, - ACTIONS(465), 1, - anon_sym_LBRACK, - ACTIONS(467), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, + [43490] = 24, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(322), 1, + anon_sym_type, + ACTIONS(324), 1, + sym_python_identifier, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(599), 1, anon_sym_DASH, - ACTIONS(881), 1, + ACTIONS(1183), 1, + anon_sym_STAR, + ACTIONS(1185), 1, anon_sym_not, - ACTIONS(883), 1, + ACTIONS(1187), 1, anon_sym_lambda, - ACTIONS(885), 1, + ACTIONS(1189), 1, anon_sym_await, - ACTIONS(887), 1, - anon_sym_type, - ACTIONS(1139), 1, - sym_python_identifier, - ACTIONS(1275), 1, - anon_sym_STAR, - STATE(868), 1, + STATE(833), 1, sym_python_string, - STATE(922), 1, + STATE(882), 1, sym_primary_expression, - STATE(1260), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1613), 1, + STATE(1674), 1, sym_expression, - STATE(2446), 1, + STATE(2475), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(597), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -68020,7 +68820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -68037,61 +68837,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [43492] = 24, - ACTIONS(465), 1, - anon_sym_LBRACK, + [43593] = 24, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(663), 1, anon_sym_DASH, - ACTIONS(881), 1, - anon_sym_not, - ACTIONS(883), 1, - anon_sym_lambda, - ACTIONS(885), 1, - anon_sym_await, - ACTIONS(887), 1, + ACTIONS(849), 1, anon_sym_type, - ACTIONS(1139), 1, + ACTIONS(1141), 1, sym_python_identifier, - ACTIONS(1275), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(868), 1, + ACTIONS(1315), 1, + anon_sym_not, + ACTIONS(1317), 1, + anon_sym_lambda, + ACTIONS(1319), 1, + anon_sym_await, + STATE(853), 1, sym_python_string, - STATE(922), 1, + STATE(1219), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1824), 1, + STATE(1944), 1, sym_expression, - STATE(2446), 1, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(651), 2, + ACTIONS(661), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(841), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1603), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -68099,7 +68899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -68116,61 +68916,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [43595] = 24, - ACTIONS(43), 1, + [43696] = 24, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(97), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(323), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(520), 1, + ACTIONS(599), 1, anon_sym_DASH, - ACTIONS(1181), 1, - anon_sym_STAR, ACTIONS(1183), 1, - anon_sym_not, + anon_sym_STAR, ACTIONS(1185), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(1187), 1, + anon_sym_lambda, + ACTIONS(1189), 1, anon_sym_await, - STATE(834), 1, + STATE(833), 1, sym_python_string, - STATE(877), 1, + STATE(882), 1, sym_primary_expression, - STATE(989), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1668), 1, + STATE(1673), 1, sym_expression, - STATE(2469), 1, + STATE(2475), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(518), 2, + ACTIONS(597), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -68178,7 +68978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -68195,61 +68995,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [43698] = 24, - ACTIONS(43), 1, + [43799] = 24, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(97), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(323), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(520), 1, + ACTIONS(599), 1, anon_sym_DASH, - ACTIONS(1181), 1, - anon_sym_STAR, ACTIONS(1183), 1, - anon_sym_not, + anon_sym_STAR, ACTIONS(1185), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(1187), 1, + anon_sym_lambda, + ACTIONS(1189), 1, anon_sym_await, - STATE(834), 1, + STATE(833), 1, sym_python_string, - STATE(877), 1, + STATE(882), 1, sym_primary_expression, - STATE(989), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1667), 1, + STATE(1704), 1, sym_expression, - STATE(2469), 1, + STATE(2475), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(518), 2, + ACTIONS(597), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -68257,7 +69057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -68274,61 +69074,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [43801] = 24, - ACTIONS(43), 1, + [43902] = 24, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(97), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(323), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(520), 1, + ACTIONS(599), 1, anon_sym_DASH, - ACTIONS(1181), 1, - anon_sym_STAR, ACTIONS(1183), 1, - anon_sym_not, + anon_sym_STAR, ACTIONS(1185), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(1187), 1, + anon_sym_lambda, + ACTIONS(1189), 1, anon_sym_await, - STATE(834), 1, + STATE(833), 1, sym_python_string, - STATE(877), 1, + STATE(882), 1, sym_primary_expression, - STATE(989), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1530), 1, + STATE(1531), 1, sym_expression, - STATE(2469), 1, + STATE(2475), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(518), 2, + ACTIONS(597), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -68336,7 +69136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -68353,61 +69153,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [43904] = 24, - ACTIONS(43), 1, + [44005] = 24, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(97), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(323), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(520), 1, + ACTIONS(599), 1, anon_sym_DASH, - ACTIONS(1181), 1, - anon_sym_STAR, ACTIONS(1183), 1, - anon_sym_not, + anon_sym_STAR, ACTIONS(1185), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(1187), 1, + anon_sym_lambda, + ACTIONS(1189), 1, anon_sym_await, - STATE(834), 1, + STATE(833), 1, sym_python_string, - STATE(877), 1, + STATE(882), 1, sym_primary_expression, - STATE(989), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1664), 1, + STATE(1693), 1, sym_expression, - STATE(2469), 1, + STATE(2475), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(518), 2, + ACTIONS(597), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -68415,7 +69215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -68432,140 +69232,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [44007] = 24, - ACTIONS(43), 1, + [44108] = 24, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(97), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(323), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(520), 1, - anon_sym_DASH, - ACTIONS(1181), 1, - anon_sym_STAR, - ACTIONS(1183), 1, - anon_sym_not, - ACTIONS(1185), 1, - anon_sym_lambda, - ACTIONS(1187), 1, - anon_sym_await, - STATE(834), 1, - sym_python_string, - STATE(877), 1, - sym_primary_expression, - STATE(989), 1, - sym_list_splat_pattern, - STATE(1663), 1, - sym_expression, - STATE(2469), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(518), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - anon_sym_print, - anon_sym_exec, - anon_sym_async, - anon_sym_match, - ACTIONS(105), 5, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - STATE(1529), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_as_pattern, - sym_conditional_expression, - STATE(971), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_generator_expression, - sym_parenthesized_expression, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_concatenated_string, - sym_await, - [44110] = 24, - ACTIONS(465), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(469), 1, - anon_sym_LBRACE, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(661), 1, + ACTIONS(599), 1, anon_sym_DASH, - ACTIONS(887), 1, - anon_sym_type, - ACTIONS(1139), 1, - sym_python_identifier, - ACTIONS(1303), 1, + ACTIONS(1183), 1, anon_sym_STAR, - ACTIONS(1305), 1, + ACTIONS(1185), 1, anon_sym_not, - ACTIONS(1307), 1, + ACTIONS(1187), 1, anon_sym_lambda, - ACTIONS(1309), 1, + ACTIONS(1189), 1, anon_sym_await, - STATE(868), 1, + STATE(833), 1, sym_python_string, - STATE(1192), 1, + STATE(882), 1, sym_primary_expression, - STATE(1260), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1900), 1, + STATE(1721), 1, sym_expression, - STATE(2361), 1, + STATE(2475), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(659), 2, + ACTIONS(597), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -68573,7 +69294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -68590,61 +69311,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [44213] = 24, - ACTIONS(43), 1, + [44211] = 24, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(97), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(323), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(520), 1, + ACTIONS(599), 1, anon_sym_DASH, - ACTIONS(1181), 1, - anon_sym_STAR, ACTIONS(1183), 1, - anon_sym_not, + anon_sym_STAR, ACTIONS(1185), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(1187), 1, + anon_sym_lambda, + ACTIONS(1189), 1, anon_sym_await, - STATE(834), 1, + STATE(833), 1, sym_python_string, - STATE(877), 1, + STATE(882), 1, sym_primary_expression, - STATE(989), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1660), 1, + STATE(1722), 1, sym_expression, - STATE(2469), 1, + STATE(2475), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(518), 2, + ACTIONS(597), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -68652,7 +69373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -68669,61 +69390,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [44316] = 24, - ACTIONS(601), 1, + [44314] = 24, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(619), 1, + ACTIONS(560), 1, sym_identifier, - ACTIONS(623), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(697), 1, + ACTIONS(701), 1, anon_sym_not, - ACTIONS(699), 1, + ACTIONS(705), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(711), 1, anon_sym_type, - ACTIONS(1001), 1, + ACTIONS(713), 1, sym_python_identifier, - ACTIONS(1133), 1, + ACTIONS(1091), 1, anon_sym_STAR, - STATE(857), 1, - sym_python_string, - STATE(858), 1, + STATE(839), 1, sym_primary_expression, - STATE(1163), 1, + STATE(840), 1, + sym_python_string, + STATE(1103), 1, sym_list_splat_pattern, - STATE(1696), 1, + STATE(1651), 1, sym_expression, - STATE(2557), 1, + STATE(2469), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 4, + ACTIONS(699), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 5, + ACTIONS(562), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1685), 7, + STATE(1657), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -68731,7 +69452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1283), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -68748,61 +69469,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [44419] = 24, - ACTIONS(43), 1, + [44417] = 24, + ACTIONS(494), 1, + anon_sym_LBRACK, + ACTIONS(496), 1, + anon_sym_LPAREN, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_not, - ACTIONS(91), 1, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(93), 1, - anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(512), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(825), 1, + anon_sym_STAR, + ACTIONS(829), 1, + anon_sym_not, + ACTIONS(831), 1, + anon_sym_lambda, + ACTIONS(925), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(927), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(929), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(1167), 1, - anon_sym_STAR, - STATE(834), 1, - sym_python_string, - STATE(840), 1, + STATE(837), 1, sym_primary_expression, - STATE(989), 1, + STATE(844), 1, + sym_python_string, + STATE(1133), 1, sym_list_splat_pattern, - STATE(1788), 1, + STATE(1793), 1, sym_expression, - STATE(2396), 1, + STATE(2529), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(923), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(514), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1642), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -68810,7 +69531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -68827,61 +69548,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [44522] = 24, - ACTIONS(43), 1, + [44520] = 24, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(97), 1, + ACTIONS(89), 1, + anon_sym_not, + ACTIONS(93), 1, + anon_sym_DASH, + ACTIONS(95), 1, + anon_sym_lambda, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(323), 1, + ACTIONS(320), 1, + anon_sym_await, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(520), 1, - anon_sym_DASH, - ACTIONS(1181), 1, + ACTIONS(1165), 1, anon_sym_STAR, - ACTIONS(1183), 1, - anon_sym_not, - ACTIONS(1185), 1, - anon_sym_lambda, - ACTIONS(1187), 1, - anon_sym_await, - STATE(834), 1, + STATE(833), 1, sym_python_string, - STATE(877), 1, + STATE(836), 1, sym_primary_expression, - STATE(989), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1526), 1, + STATE(1765), 1, sym_expression, - STATE(2469), 1, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(518), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -68889,7 +69610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -68906,61 +69627,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [44625] = 24, - ACTIONS(527), 1, - anon_sym_LBRACK, - ACTIONS(529), 1, - anon_sym_LPAREN, - ACTIONS(531), 1, + [44623] = 24, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(539), 1, - anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(545), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(549), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(721), 1, - anon_sym_not, - ACTIONS(725), 1, - anon_sym_lambda, - ACTIONS(729), 1, - anon_sym_await, - ACTIONS(731), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(733), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(1095), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(599), 1, + anon_sym_DASH, + ACTIONS(1183), 1, anon_sym_STAR, - STATE(838), 1, + ACTIONS(1185), 1, + anon_sym_not, + ACTIONS(1187), 1, + anon_sym_lambda, + ACTIONS(1189), 1, + anon_sym_await, + STATE(833), 1, sym_python_string, - STATE(839), 1, + STATE(882), 1, sym_primary_expression, - STATE(1136), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1734), 1, + STATE(1532), 1, sym_expression, - STATE(2454), 1, + STATE(2475), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(597), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(719), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1655), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -68968,7 +69689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1140), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -68985,61 +69706,61 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [44728] = 24, - ACTIONS(43), 1, + [44726] = 24, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_not, - ACTIONS(91), 1, - anon_sym_DASH, ACTIONS(93), 1, + anon_sym_DASH, + ACTIONS(95), 1, anon_sym_lambda, - ACTIONS(97), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(109), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(113), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(321), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(323), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(325), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(451), 1, - anon_sym_LBRACK, ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(834), 1, + STATE(833), 1, sym_python_string, - STATE(840), 1, + STATE(836), 1, sym_primary_expression, - STATE(989), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1775), 1, + STATE(1807), 1, sym_expression, - STATE(2396), 1, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1529), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -69047,7 +69768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(971), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -69064,61 +69785,64 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [44831] = 24, - ACTIONS(465), 1, + [44829] = 25, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(530), 1, + anon_sym_DASH, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(536), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(661), 1, - anon_sym_DASH, - ACTIONS(887), 1, - anon_sym_type, - ACTIONS(1139), 1, - sym_python_identifier, - ACTIONS(1303), 1, - anon_sym_STAR, - ACTIONS(1305), 1, + ACTIONS(899), 1, anon_sym_not, - ACTIONS(1307), 1, + ACTIONS(903), 1, anon_sym_lambda, - ACTIONS(1309), 1, + ACTIONS(1147), 1, + anon_sym_STAR, + ACTIONS(1359), 1, anon_sym_await, - STATE(868), 1, + ACTIONS(1361), 1, + anon_sym_type, + ACTIONS(1363), 1, + sym_python_identifier, + STATE(889), 1, sym_python_string, - STATE(1192), 1, + STATE(1130), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1224), 1, sym_list_splat_pattern, - STATE(1923), 1, + STATE(1861), 1, sym_expression, - STATE(2361), 1, + STATE(2388), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(659), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 4, + STATE(1295), 2, + sym_attribute, + sym_subscript, + ACTIONS(1357), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(538), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1601), 7, + STATE(1627), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -69126,11 +69850,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1266), 16, + STATE(1235), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -69144,60 +69866,60 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [44934] = 24, - ACTIONS(625), 1, - anon_sym_LBRACK, - ACTIONS(627), 1, - anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(89), 1, + anon_sym_not, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(95), 1, + anon_sym_lambda, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(643), 1, + ACTIONS(111), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(865), 1, - anon_sym_not, - ACTIONS(869), 1, - anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(873), 1, + ACTIONS(322), 1, anon_sym_type, - ACTIONS(1123), 1, + ACTIONS(324), 1, sym_python_identifier, - ACTIONS(1191), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(990), 1, - sym_primary_expression, - STATE(1003), 1, + STATE(833), 1, sym_python_string, - STATE(1347), 1, + STATE(836), 1, + sym_primary_expression, + STATE(960), 1, sym_list_splat_pattern, - STATE(1635), 1, + STATE(1690), 1, sym_expression, - STATE(2419), 1, + STATE(2402), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(863), 4, + ACTIONS(310), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 5, + ACTIONS(107), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1637), 7, + STATE(1526), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -69205,7 +69927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_as_pattern, sym_conditional_expression, - STATE(1379), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -69223,21 +69945,21 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [45037] = 9, - ACTIONS(288), 1, + ACTIONS(290), 1, anon_sym_COLON_EQ, - ACTIONS(305), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(1363), 1, - anon_sym_for, ACTIONS(1365), 1, + anon_sym_for, + ACTIONS(1367), 1, anon_sym_with, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(286), 2, + ACTIONS(288), 2, anon_sym_EQ, anon_sym_COLON, - ACTIONS(290), 13, + ACTIONS(292), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -69251,7 +69973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(303), 15, + ACTIONS(302), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -69267,7 +69989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 17, + ACTIONS(300), 17, sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, @@ -69286,23 +70008,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, [45109] = 9, - ACTIONS(1371), 1, - anon_sym_else, ACTIONS(1373), 1, - anon_sym_except_STAR, + anon_sym_else, ACTIONS(1375), 1, + anon_sym_except, + ACTIONS(1377), 1, anon_sym_finally, - STATE(624), 1, + STATE(606), 1, sym_else_clause, - STATE(675), 1, + STATE(673), 1, sym_finally_clause, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(559), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1367), 9, + STATE(553), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1369), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -69312,7 +70034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1369), 34, + ACTIONS(1371), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -69348,23 +70070,23 @@ static const uint16_t ts_small_parse_table[] = { sym_python_identifier, sym_identifier, [45180] = 9, - ACTIONS(1371), 1, + ACTIONS(1373), 1, anon_sym_else, - ACTIONS(1375), 1, - anon_sym_finally, ACTIONS(1377), 1, - anon_sym_except, - STATE(624), 1, + anon_sym_finally, + ACTIONS(1379), 1, + anon_sym_except_STAR, + STATE(606), 1, sym_else_clause, - STATE(675), 1, + STATE(673), 1, sym_finally_clause, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(560), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1367), 9, + STATE(550), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1369), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -69374,7 +70096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1369), 34, + ACTIONS(1371), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -69409,24 +70131,87 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [45251] = 9, - ACTIONS(1371), 1, - anon_sym_else, + [45251] = 10, + ACTIONS(1381), 1, + anon_sym_EQ, + ACTIONS(1383), 1, + anon_sym_COLON_EQ, + ACTIONS(1387), 1, + anon_sym_LBRACK, + ACTIONS(1389), 1, + anon_sym_COLON, + ACTIONS(1394), 1, + anon_sym_COMMA, + STATE(1915), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1385), 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(1397), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 16, + sym__newline, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45324] = 9, ACTIONS(1373), 1, - anon_sym_except_STAR, + anon_sym_else, ACTIONS(1375), 1, + anon_sym_except, + ACTIONS(1377), 1, anon_sym_finally, - STATE(608), 1, + STATE(616), 1, sym_else_clause, - STATE(676), 1, + STATE(668), 1, sym_finally_clause, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(559), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1379), 9, + STATE(553), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1399), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -69436,7 +70221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1381), 34, + ACTIONS(1401), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -69471,24 +70256,24 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [45322] = 9, - ACTIONS(1371), 1, + [45395] = 9, + ACTIONS(1373), 1, anon_sym_else, - ACTIONS(1375), 1, - anon_sym_finally, ACTIONS(1377), 1, - anon_sym_except, - STATE(608), 1, + anon_sym_finally, + ACTIONS(1379), 1, + anon_sym_except_STAR, + STATE(616), 1, sym_else_clause, - STATE(676), 1, + STATE(668), 1, sym_finally_clause, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(560), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1379), 9, + STATE(550), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1399), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -69498,7 +70283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1381), 34, + ACTIONS(1401), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -69533,82 +70318,18 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [45393] = 10, + [45466] = 7, ACTIONS(1383), 1, - anon_sym_EQ, - ACTIONS(1385), 1, anon_sym_COLON_EQ, - ACTIONS(1389), 1, - anon_sym_LBRACK, - ACTIONS(1391), 1, - anon_sym_COLON, - ACTIONS(1396), 1, + ACTIONS(1394), 1, anon_sym_COMMA, - STATE(1885), 1, - sym_type_parameter, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1387), 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(1399), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1394), 16, - sym__newline, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45466] = 8, - ACTIONS(286), 1, + ACTIONS(1381), 2, anon_sym_EQ, - ACTIONS(288), 1, - anon_sym_COLON_EQ, - ACTIONS(295), 1, anon_sym_COLON, - ACTIONS(305), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(290), 13, + ACTIONS(1385), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -69622,7 +70343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(303), 15, + ACTIONS(1397), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -69638,7 +70359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 17, + ACTIONS(1392), 17, sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, @@ -69656,18 +70377,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45534] = 7, - ACTIONS(288), 1, + [45532] = 7, + ACTIONS(290), 1, anon_sym_COLON_EQ, - ACTIONS(305), 1, + ACTIONS(304), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(286), 2, + ACTIONS(288), 2, anon_sym_EQ, anon_sym_COLON, - ACTIONS(290), 13, + ACTIONS(292), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -69681,7 +70402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(303), 15, + ACTIONS(302), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -69697,7 +70418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 17, + ACTIONS(300), 17, sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, @@ -69715,77 +70436,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45600] = 7, + [45598] = 8, ACTIONS(288), 1, - anon_sym_COLON_EQ, - ACTIONS(305), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(286), 2, anon_sym_EQ, - anon_sym_COLON, - ACTIONS(290), 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(303), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(301), 17, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45666] = 7, - ACTIONS(1385), 1, + ACTIONS(290), 1, anon_sym_COLON_EQ, - ACTIONS(1396), 1, + ACTIONS(304), 1, anon_sym_COMMA, + ACTIONS(326), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1383), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(1387), 13, + ACTIONS(292), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -69799,7 +70462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1399), 15, + ACTIONS(302), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -69815,7 +70478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 17, + ACTIONS(300), 17, sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, @@ -69833,182 +70496,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45732] = 8, - ACTIONS(286), 1, - anon_sym_EQ, - ACTIONS(288), 1, + [45666] = 7, + ACTIONS(290), 1, anon_sym_COLON_EQ, - ACTIONS(295), 1, - anon_sym_COLON, - ACTIONS(305), 1, + ACTIONS(304), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(290), 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(303), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(301), 17, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45800] = 23, - ACTIONS(469), 1, - anon_sym_LBRACE, - ACTIONS(478), 1, - anon_sym_DASH, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(1401), 1, - anon_sym_LBRACK, - ACTIONS(1403), 1, - anon_sym_LPAREN, - ACTIONS(1405), 1, - anon_sym_STAR, - ACTIONS(1409), 1, - anon_sym_await, - ACTIONS(1411), 1, - anon_sym_type, - ACTIONS(1413), 1, - sym_python_identifier, - STATE(868), 1, - sym_python_string, - STATE(1406), 1, - sym_list_splat_pattern, - STATE(1446), 1, - sym_primary_expression, - STATE(1882), 1, - sym_pattern, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(480), 2, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1407), 2, - sym_attribute, - sym_subscript, - STATE(1907), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(801), 4, + ACTIONS(288), 2, anon_sym_EQ, anon_sym_COLON, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1407), 4, - anon_sym_print, - anon_sym_exec, - anon_sym_async, - anon_sym_match, - ACTIONS(488), 5, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - STATE(1266), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_generator_expression, - sym_parenthesized_expression, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_concatenated_string, - sym_await, - [45897] = 3, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(1415), 16, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 32, - sym__newline, + ACTIONS(292), 13, anon_sym_PLUS_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -70021,12 +70521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45954] = 3, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(1419), 16, - anon_sym_EQ, + ACTIONS(302), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -70042,15 +70537,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 32, + ACTIONS(300), 17, sym__newline, - anon_sym_PLUS_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_DOT, - anon_sym_COMMA, anon_sym_as, anon_sym_in, anon_sym_if, @@ -70061,31 +70553,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [46011] = 6, - ACTIONS(1383), 1, + anon_sym_LT_GT, + anon_sym_is, + [45732] = 8, + ACTIONS(288), 1, anon_sym_EQ, - ACTIONS(1396), 1, + ACTIONS(290), 1, + anon_sym_COLON_EQ, + ACTIONS(304), 1, anon_sym_COMMA, + ACTIONS(326), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1387), 14, + ACTIONS(292), 13, anon_sym_PLUS_EQ, - anon_sym_COLON, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -70098,7 +70581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1399), 15, + ACTIONS(302), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -70114,7 +70597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 17, + ACTIONS(300), 17, sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, @@ -70132,11 +70615,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46074] = 3, + [45800] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1423), 16, + ACTIONS(1403), 16, anon_sym_EQ, anon_sym_STAR, anon_sym_GT_GT, @@ -70153,7 +70636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1425), 32, + ACTIONS(1405), 32, sym__newline, anon_sym_PLUS_EQ, anon_sym_LBRACK, @@ -70186,11 +70669,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46131] = 3, + [45857] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1423), 16, + ACTIONS(1407), 16, anon_sym_EQ, anon_sym_STAR, anon_sym_GT_GT, @@ -70207,7 +70690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1425), 32, + ACTIONS(1409), 32, sym__newline, anon_sym_PLUS_EQ, anon_sym_LBRACK, @@ -70240,19 +70723,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46188] = 5, + [45914] = 6, + ACTIONS(1411), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(461), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(524), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOT, - ACTIONS(471), 13, + ACTIONS(1417), 2, + anon_sym_COLON, + anon_sym_COMMA, + ACTIONS(1413), 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(1420), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -70266,12 +70760,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(463), 29, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1415), 17, sym__newline, - anon_sym_PLUS_EQ, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_DOT, anon_sym_as, anon_sym_in, anon_sym_if, @@ -70284,107 +70780,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [46249] = 23, - ACTIONS(469), 1, - anon_sym_LBRACE, - ACTIONS(478), 1, - anon_sym_DASH, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(1401), 1, - anon_sym_LBRACK, - ACTIONS(1403), 1, - anon_sym_LPAREN, - ACTIONS(1405), 1, - anon_sym_STAR, - ACTIONS(1409), 1, - anon_sym_await, - ACTIONS(1411), 1, - anon_sym_type, - ACTIONS(1413), 1, - sym_python_identifier, - STATE(868), 1, - sym_python_string, - STATE(1406), 1, - sym_list_splat_pattern, - STATE(1446), 1, - sym_primary_expression, - STATE(1882), 1, - sym_pattern, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(480), 2, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1407), 2, - sym_attribute, - sym_subscript, - STATE(1907), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(817), 4, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1407), 4, - anon_sym_print, - anon_sym_exec, - anon_sym_async, - anon_sym_match, - ACTIONS(488), 5, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - STATE(1266), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_generator_expression, - sym_parenthesized_expression, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_concatenated_string, - sym_await, - [46346] = 8, - ACTIONS(1431), 1, - anon_sym_elif, - ACTIONS(1433), 1, - anon_sym_else, - STATE(573), 1, - aux_sym_if_statement_repeat1, - STATE(600), 1, - sym_elif_clause, - STATE(665), 1, - sym_else_clause, + [45977] = 5, + ACTIONS(1426), 1, + anon_sym_except_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1427), 9, + STATE(550), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1422), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -70394,7 +70799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1429), 34, + ACTIONS(1424), 36, anon_sym_def, anon_sym_import, anon_sym_from, @@ -70410,10 +70815,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nonlocal, anon_sym_exec, anon_sym_if, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_not, anon_sym_DASH, @@ -70429,21 +70836,127 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [46413] = 8, - ACTIONS(1431), 1, - anon_sym_elif, - ACTIONS(1433), 1, - anon_sym_else, - STATE(574), 1, - aux_sym_if_statement_repeat1, - STATE(600), 1, - sym_elif_clause, - STATE(674), 1, - sym_else_clause, + [46038] = 6, + ACTIONS(1381), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1431), 2, + anon_sym_COLON, + anon_sym_COMMA, + ACTIONS(1385), 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(1434), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1429), 17, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46101] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1436), 16, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1438), 32, + sym__newline, + anon_sym_PLUS_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [46158] = 5, + ACTIONS(1444), 1, + anon_sym_except, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1435), 9, + STATE(553), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1440), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -70453,7 +70966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1437), 34, + ACTIONS(1442), 36, anon_sym_def, anon_sym_import, anon_sym_from, @@ -70469,10 +70982,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nonlocal, anon_sym_exec, anon_sym_if, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_not, anon_sym_DASH, @@ -70488,11 +71003,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [46480] = 3, + [46219] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1419), 16, + ACTIONS(1447), 16, anon_sym_EQ, anon_sym_STAR, anon_sym_GT_GT, @@ -70509,7 +71024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 32, + ACTIONS(1449), 32, sym__newline, anon_sym_PLUS_EQ, anon_sym_LBRACK, @@ -70542,19 +71057,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46537] = 5, + [46276] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(461), 3, + ACTIONS(1451), 16, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(524), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOT, - ACTIONS(471), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -70568,11 +71076,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(463), 29, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1453), 32, sym__newline, anon_sym_PLUS_EQ, + anon_sym_LBRACK, anon_sym_COLON, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_in, @@ -70598,16 +71111,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46598] = 5, - ACTIONS(1443), 1, - anon_sym_except_STAR, + [46333] = 8, + ACTIONS(1459), 1, + anon_sym_elif, + ACTIONS(1461), 1, + anon_sym_else, + STATE(563), 1, + aux_sym_if_statement_repeat1, + STATE(599), 1, + sym_elif_clause, + STATE(665), 1, + sym_else_clause, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(559), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1439), 9, + ACTIONS(1455), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -70617,7 +71135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1441), 36, + ACTIONS(1457), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -70633,12 +71151,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nonlocal, anon_sym_exec, anon_sym_if, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_not, anon_sym_DASH, @@ -70654,16 +71170,79 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [46659] = 5, - ACTIONS(1450), 1, - anon_sym_except, + [46400] = 7, + ACTIONS(1475), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(560), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1446), 9, + ACTIONS(1467), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(1470), 2, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(1463), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1472), 12, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1465), 28, + sym__newline, + anon_sym_PLUS_EQ, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [46465] = 8, + ACTIONS(1459), 1, + anon_sym_elif, + ACTIONS(1461), 1, + anon_sym_else, + STATE(570), 1, + aux_sym_if_statement_repeat1, + STATE(599), 1, + sym_elif_clause, + STATE(655), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1477), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -70673,7 +71252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1448), 36, + ACTIONS(1479), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -70689,12 +71268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nonlocal, anon_sym_exec, anon_sym_if, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_not, anon_sym_DASH, @@ -70710,23 +71287,30 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [46720] = 7, - ACTIONS(1465), 1, - anon_sym_PIPE, + [46532] = 6, + ACTIONS(1381), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1457), 2, - anon_sym_LBRACK, - anon_sym_LPAREN, - ACTIONS(1460), 2, + ACTIONS(1394), 2, anon_sym_COLON, - anon_sym_DOT, - ACTIONS(1453), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1462), 12, + anon_sym_COMMA, + ACTIONS(1385), 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(1397), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -70736,14 +71320,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, + anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1455), 28, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 17, sym__newline, - anon_sym_PLUS_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_DOT, anon_sym_as, anon_sym_in, anon_sym_if, @@ -70756,6 +71344,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, + [46595] = 23, + ACTIONS(471), 1, + anon_sym_LBRACE, + ACTIONS(480), 1, + anon_sym_DASH, + ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, + sym_string_start, + ACTIONS(1481), 1, + anon_sym_LBRACK, + ACTIONS(1483), 1, + anon_sym_LPAREN, + ACTIONS(1485), 1, + anon_sym_STAR, + ACTIONS(1489), 1, + anon_sym_await, + ACTIONS(1491), 1, + anon_sym_type, + ACTIONS(1493), 1, + sym_python_identifier, + STATE(853), 1, + sym_python_string, + STATE(1405), 1, + sym_list_splat_pattern, + STATE(1451), 1, + sym_primary_expression, + STATE(1918), 1, + sym_pattern, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(482), 2, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1407), 2, + sym_attribute, + sym_subscript, + STATE(1904), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(819), 4, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1487), 4, + anon_sym_print, + anon_sym_exec, + anon_sym_async, + anon_sym_match, + ACTIONS(490), 5, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + STATE(1278), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_generator_expression, + sym_parenthesized_expression, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_concatenated_string, + sym_await, + [46692] = 6, + ACTIONS(1411), 1, + anon_sym_EQ, + ACTIONS(1417), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1413), 14, + anon_sym_PLUS_EQ, + anon_sym_COLON, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -70768,17 +71441,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46785] = 6, - ACTIONS(1383), 1, + ACTIONS(1420), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1415), 17, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46755] = 6, + ACTIONS(1495), 1, anon_sym_EQ, + ACTIONS(1501), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1396), 2, - anon_sym_COLON, - anon_sym_COMMA, - ACTIONS(1387), 13, + ACTIONS(1497), 14, anon_sym_PLUS_EQ, + anon_sym_COLON, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -70791,7 +71498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1399), 15, + ACTIONS(1504), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -70807,7 +71514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 17, + ACTIONS(1499), 17, sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, @@ -70825,19 +71532,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46848] = 5, + [46818] = 8, + ACTIONS(1459), 1, + anon_sym_elif, + ACTIONS(1461), 1, + anon_sym_else, + STATE(574), 1, + aux_sym_if_statement_repeat1, + STATE(599), 1, + sym_elif_clause, + STATE(666), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1506), 9, + sym__dedent, + sym_string_start, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + ACTIONS(1508), 34, + anon_sym_def, + 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_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_not, + anon_sym_DASH, + anon_sym_lambda, + anon_sym_yield, + anon_sym_await, + anon_sym_match, + anon_sym_type, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + sym_python_identifier, + sym_identifier, + [46885] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1453), 3, + ACTIONS(1463), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1457), 3, + ACTIONS(1467), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, - ACTIONS(1462), 13, + ACTIONS(1472), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -70851,7 +71617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1455), 29, + ACTIONS(1465), 29, sym__newline, anon_sym_PLUS_EQ, anon_sym_COLON, @@ -70881,17 +71647,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46909] = 6, - ACTIONS(1383), 1, + [46946] = 6, + ACTIONS(1381), 1, anon_sym_EQ, + ACTIONS(1431), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1469), 2, - anon_sym_COLON, - anon_sym_COMMA, - ACTIONS(1387), 13, + ACTIONS(1385), 14, anon_sym_PLUS_EQ, + anon_sym_COLON, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -70904,7 +71670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1472), 15, + ACTIONS(1434), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -70920,7 +71686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 17, + ACTIONS(1429), 17, sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, @@ -70938,12 +71704,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46972] = 3, + [47009] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1474), 16, + ACTIONS(463), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(566), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + ACTIONS(473), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -70957,16 +71730,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1476), 32, + ACTIONS(465), 29, sym__newline, anon_sym_PLUS_EQ, - anon_sym_LBRACK, anon_sym_COLON, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_in, @@ -70992,15 +71760,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [47029] = 6, - ACTIONS(1383), 1, + [47070] = 23, + ACTIONS(471), 1, + anon_sym_LBRACE, + ACTIONS(480), 1, + anon_sym_DASH, + ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, + sym_string_start, + ACTIONS(1481), 1, + anon_sym_LBRACK, + ACTIONS(1483), 1, + anon_sym_LPAREN, + ACTIONS(1485), 1, + anon_sym_STAR, + ACTIONS(1489), 1, + anon_sym_await, + ACTIONS(1491), 1, + anon_sym_type, + ACTIONS(1493), 1, + sym_python_identifier, + STATE(853), 1, + sym_python_string, + STATE(1405), 1, + sym_list_splat_pattern, + STATE(1451), 1, + sym_primary_expression, + STATE(1918), 1, + sym_pattern, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(482), 2, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1407), 2, + sym_attribute, + sym_subscript, + STATE(1904), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(803), 4, anon_sym_EQ, - ACTIONS(1469), 1, + anon_sym_COLON, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1487), 4, + anon_sym_print, + anon_sym_exec, + anon_sym_async, + anon_sym_match, + ACTIONS(490), 5, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + STATE(1278), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_generator_expression, + sym_parenthesized_expression, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_concatenated_string, + sym_await, + [47167] = 6, + ACTIONS(1381), 1, + anon_sym_EQ, + ACTIONS(1394), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1387), 14, + ACTIONS(1385), 14, anon_sym_PLUS_EQ, anon_sym_COLON, anon_sym_DASH_EQ, @@ -71015,7 +71857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1472), 15, + ACTIONS(1397), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -71031,7 +71873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 17, + ACTIONS(1392), 17, sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, @@ -71049,11 +71891,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47092] = 3, + [47230] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1478), 16, + ACTIONS(1403), 16, anon_sym_EQ, anon_sym_STAR, anon_sym_GT_GT, @@ -71070,7 +71912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1480), 32, + ACTIONS(1405), 32, sym__newline, anon_sym_PLUS_EQ, anon_sym_LBRACK, @@ -71103,30 +71945,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [47149] = 6, - ACTIONS(1482), 1, - anon_sym_EQ, - ACTIONS(1488), 1, - anon_sym_COMMA, + [47287] = 8, + ACTIONS(1459), 1, + anon_sym_elif, + ACTIONS(1461), 1, + anon_sym_else, + STATE(574), 1, + aux_sym_if_statement_repeat1, + STATE(599), 1, + sym_elif_clause, + STATE(645), 1, + sym_else_clause, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1484), 14, - anon_sym_PLUS_EQ, - anon_sym_COLON, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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(1491), 15, + ACTIONS(1510), 9, + sym__dedent, + sym_string_start, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + ACTIONS(1512), 34, + anon_sym_def, + 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_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_not, + anon_sym_DASH, + anon_sym_lambda, + anon_sym_yield, + anon_sym_await, + anon_sym_match, + anon_sym_type, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + sym_python_identifier, + sym_identifier, + [47354] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1407), 16, + anon_sym_EQ, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -71142,12 +72025,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1486), 17, + ACTIONS(1409), 32, sym__newline, + anon_sym_PLUS_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_DOT, + anon_sym_COMMA, anon_sym_as, anon_sym_in, anon_sym_if, @@ -71160,17 +72046,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47212] = 6, - ACTIONS(1493), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(1499), 2, - anon_sym_COLON, - anon_sym_COMMA, - ACTIONS(1495), 13, - anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -71183,50 +72058,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1502), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1497), 17, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [47275] = 6, - ACTIONS(1482), 1, + [47411] = 6, + ACTIONS(1495), 1, anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1488), 2, + ACTIONS(1501), 2, anon_sym_COLON, anon_sym_COMMA, - ACTIONS(1484), 13, + ACTIONS(1497), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -71240,7 +72081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1491), 15, + ACTIONS(1504), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -71256,7 +72097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1486), 17, + ACTIONS(1499), 17, sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, @@ -71274,30 +72115,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47338] = 6, - ACTIONS(1493), 1, - anon_sym_EQ, - ACTIONS(1499), 1, - anon_sym_COMMA, + [47474] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1495), 14, - anon_sym_PLUS_EQ, - anon_sym_COLON, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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(1502), 15, + ACTIONS(463), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(566), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + ACTIONS(473), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -71311,14 +72141,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1497), 17, + ACTIONS(465), 29, sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_PLUS_EQ, + anon_sym_COLON, anon_sym_SEMI, - anon_sym_DOT, + anon_sym_COMMA, anon_sym_as, anon_sym_in, anon_sym_if, @@ -71331,21 +72159,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47401] = 8, - ACTIONS(1431), 1, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47535] = 6, + ACTIONS(1518), 1, anon_sym_elif, - ACTIONS(1433), 1, - anon_sym_else, - STATE(556), 1, + STATE(574), 1, aux_sym_if_statement_repeat1, - STATE(600), 1, + STATE(599), 1, sym_elif_clause, - STATE(650), 1, - sym_else_clause, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1504), 9, + ACTIONS(1514), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -71355,7 +72191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1506), 34, + ACTIONS(1516), 35, anon_sym_def, anon_sym_import, anon_sym_from, @@ -71371,6 +72207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nonlocal, anon_sym_exec, anon_sym_if, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -71390,31 +72227,22 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [47468] = 8, - ACTIONS(1431), 1, - anon_sym_elif, - ACTIONS(1433), 1, - anon_sym_else, - STATE(574), 1, - aux_sym_if_statement_repeat1, - STATE(600), 1, - sym_elif_clause, - STATE(653), 1, - sym_else_clause, + [47597] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1508), 9, + ACTIONS(1521), 10, sym__dedent, sym_string_start, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1510), 34, + ACTIONS(1523), 36, anon_sym_def, anon_sym_import, anon_sym_from, @@ -71430,10 +72258,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nonlocal, anon_sym_exec, anon_sym_if, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_not, anon_sym_DASH, @@ -71449,17 +72279,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [47535] = 6, - ACTIONS(1516), 1, - anon_sym_elif, - STATE(574), 1, - aux_sym_if_statement_repeat1, - STATE(600), 1, - sym_elif_clause, + [47652] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1512), 9, + ACTIONS(1525), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -71469,7 +72293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1514), 35, + ACTIONS(1527), 37, anon_sym_def, anon_sym_import, anon_sym_from, @@ -71490,6 +72314,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_not, anon_sym_DASH, @@ -71505,11 +72331,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [47597] = 3, + [47707] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1519), 9, + ACTIONS(1529), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -71519,7 +72345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1521), 37, + ACTIONS(1531), 37, anon_sym_def, anon_sym_import, anon_sym_from, @@ -71557,11 +72383,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [47652] = 3, + [47762] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1523), 10, + ACTIONS(1533), 10, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -71572,7 +72398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1525), 36, + ACTIONS(1535), 36, anon_sym_def, anon_sym_import, anon_sym_from, @@ -71609,126 +72435,94 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [47707] = 3, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(1527), 9, - sym__dedent, + [47817] = 24, + ACTIONS(471), 1, + anon_sym_LBRACE, + ACTIONS(480), 1, + anon_sym_DASH, + ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, sym_string_start, + ACTIONS(1537), 1, anon_sym_LBRACK, + ACTIONS(1539), 1, anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(1541), 1, + anon_sym_RPAREN, + ACTIONS(1543), 1, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - ACTIONS(1529), 37, - anon_sym_def, - 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_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_not, - anon_sym_DASH, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(1547), 1, anon_sym_await, - anon_sym_match, + ACTIONS(1549), 1, anon_sym_type, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, + ACTIONS(1551), 1, sym_python_identifier, - sym_identifier, - [47762] = 3, + STATE(853), 1, + sym_python_string, + STATE(1435), 1, + sym_primary_expression, + STATE(1459), 1, + sym_list_splat_pattern, + STATE(2118), 1, + sym_pattern, + STATE(2555), 1, + sym__patterns, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1531), 10, - sym__dedent, - sym_string_start, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_except_STAR, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - ACTIONS(1533), 36, - anon_sym_def, - anon_sym_import, - anon_sym_from, + STATE(1469), 2, + sym_attribute, + sym_subscript, + STATE(2260), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1545), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_if, - anon_sym_else, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_not, - anon_sym_DASH, - anon_sym_lambda, - anon_sym_yield, - anon_sym_await, anon_sym_match, - anon_sym_type, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - sym_identifier, - [47817] = 3, + STATE(1278), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_generator_expression, + sym_parenthesized_expression, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_concatenated_string, + sym_await, + [47914] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1535), 10, + ACTIONS(1553), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1537), 36, + ACTIONS(1555), 37, anon_sym_def, anon_sym_import, anon_sym_from, @@ -71749,6 +72543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_not, @@ -71765,22 +72560,21 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [47872] = 3, + [47969] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1539), 10, + ACTIONS(1557), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1541), 36, + ACTIONS(1559), 37, anon_sym_def, anon_sym_import, anon_sym_from, @@ -71801,6 +72595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_not, @@ -71817,63 +72612,84 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [47927] = 3, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(1543), 9, - sym__dedent, + [48024] = 24, + ACTIONS(471), 1, + anon_sym_LBRACE, + ACTIONS(480), 1, + anon_sym_DASH, + ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, sym_string_start, + ACTIONS(1537), 1, anon_sym_LBRACK, + ACTIONS(1539), 1, anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(1543), 1, anon_sym_STAR, + ACTIONS(1547), 1, + anon_sym_await, + ACTIONS(1549), 1, + anon_sym_type, + ACTIONS(1551), 1, + sym_python_identifier, + ACTIONS(1561), 1, + anon_sym_RPAREN, + STATE(853), 1, + sym_python_string, + STATE(1435), 1, + sym_primary_expression, + STATE(1459), 1, + sym_list_splat_pattern, + STATE(2118), 1, + sym_pattern, + STATE(2391), 1, + sym__patterns, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - ACTIONS(1545), 37, - anon_sym_def, - anon_sym_import, - anon_sym_from, + STATE(1469), 2, + sym_attribute, + sym_subscript, + STATE(2260), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1545), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_if, - anon_sym_else, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_not, - anon_sym_DASH, - anon_sym_lambda, - anon_sym_yield, - anon_sym_await, anon_sym_match, - anon_sym_type, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - sym_identifier, - [47982] = 3, + STATE(1278), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_generator_expression, + sym_parenthesized_expression, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_concatenated_string, + sym_await, + [48121] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1531), 9, + ACTIONS(1563), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -71883,7 +72699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1533), 37, + ACTIONS(1565), 37, anon_sym_def, anon_sym_import, anon_sym_from, @@ -71921,21 +72737,22 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [48037] = 3, + [48176] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1535), 9, + ACTIONS(1567), 10, sym__dedent, sym_string_start, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1537), 37, + ACTIONS(1569), 36, anon_sym_def, anon_sym_import, anon_sym_from, @@ -71956,7 +72773,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_not, @@ -71973,11 +72789,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [48092] = 3, + [48231] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1547), 10, + ACTIONS(1571), 10, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -71988,7 +72804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1549), 36, + ACTIONS(1573), 36, anon_sym_def, anon_sym_import, anon_sym_from, @@ -72025,94 +72841,22 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [48147] = 24, - ACTIONS(469), 1, - anon_sym_LBRACE, - ACTIONS(478), 1, - anon_sym_DASH, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(1551), 1, - anon_sym_LBRACK, - ACTIONS(1553), 1, - anon_sym_LPAREN, - ACTIONS(1555), 1, - anon_sym_RPAREN, - ACTIONS(1557), 1, - anon_sym_STAR, - ACTIONS(1561), 1, - anon_sym_await, - ACTIONS(1563), 1, - anon_sym_type, - ACTIONS(1565), 1, - sym_python_identifier, - STATE(868), 1, - sym_python_string, - STATE(1467), 1, - sym_primary_expression, - STATE(1471), 1, - sym_list_splat_pattern, - STATE(2169), 1, - sym_pattern, - STATE(2539), 1, - sym__patterns, + [48286] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1460), 2, - sym_attribute, - sym_subscript, - STATE(2261), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1559), 4, - anon_sym_print, - anon_sym_exec, - anon_sym_async, - anon_sym_match, - ACTIONS(488), 5, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - STATE(1266), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_generator_expression, - sym_parenthesized_expression, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_concatenated_string, - sym_await, - [48244] = 3, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(1567), 9, + ACTIONS(1553), 10, sym__dedent, sym_string_start, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1569), 37, + ACTIONS(1555), 36, anon_sym_def, anon_sym_import, anon_sym_from, @@ -72133,7 +72877,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_not, @@ -72150,11 +72893,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [48299] = 3, + [48341] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1539), 9, + ACTIONS(1575), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -72164,7 +72907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1541), 37, + ACTIONS(1577), 37, anon_sym_def, anon_sym_import, anon_sym_from, @@ -72202,11 +72945,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [48354] = 3, + [48396] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1571), 9, + ACTIONS(1579), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -72216,7 +72959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1573), 37, + ACTIONS(1581), 37, anon_sym_def, anon_sym_import, anon_sym_from, @@ -72254,21 +72997,22 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [48409] = 3, + [48451] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1575), 9, + ACTIONS(1563), 10, sym__dedent, sym_string_start, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1577), 37, + ACTIONS(1565), 36, anon_sym_def, anon_sym_import, anon_sym_from, @@ -72289,7 +73033,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_not, @@ -72306,11 +73049,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [48464] = 3, + [48506] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1579), 10, + ACTIONS(1583), 10, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -72321,7 +73064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1581), 36, + ACTIONS(1585), 36, anon_sym_def, anon_sym_import, anon_sym_from, @@ -72358,11 +73101,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [48519] = 3, + [48561] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1583), 9, + ACTIONS(1571), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -72372,7 +73115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1585), 37, + ACTIONS(1573), 37, anon_sym_def, anon_sym_import, anon_sym_from, @@ -72410,95 +73153,21 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [48574] = 24, - ACTIONS(469), 1, - anon_sym_LBRACE, - ACTIONS(478), 1, - anon_sym_DASH, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(1551), 1, - anon_sym_LBRACK, - ACTIONS(1553), 1, - anon_sym_LPAREN, - ACTIONS(1557), 1, - anon_sym_STAR, - ACTIONS(1561), 1, - anon_sym_await, - ACTIONS(1563), 1, - anon_sym_type, - ACTIONS(1565), 1, - sym_python_identifier, - ACTIONS(1587), 1, - anon_sym_RPAREN, - STATE(868), 1, - sym_python_string, - STATE(1467), 1, - sym_primary_expression, - STATE(1471), 1, - sym_list_splat_pattern, - STATE(2169), 1, - sym_pattern, - STATE(2388), 1, - sym__patterns, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(480), 2, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1460), 2, - sym_attribute, - sym_subscript, - STATE(2261), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1559), 4, - anon_sym_print, - anon_sym_exec, - anon_sym_async, - anon_sym_match, - ACTIONS(488), 5, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - STATE(1266), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_generator_expression, - sym_parenthesized_expression, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_concatenated_string, - sym_await, - [48671] = 3, + [48616] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1575), 10, + ACTIONS(1587), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1577), 36, + ACTIONS(1589), 37, anon_sym_def, anon_sym_import, anon_sym_from, @@ -72519,6 +73188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_not, @@ -72535,22 +73205,21 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [48726] = 3, + [48671] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1527), 10, + ACTIONS(1591), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1529), 36, + ACTIONS(1593), 37, anon_sym_def, anon_sym_import, anon_sym_from, @@ -72571,6 +73240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_not, @@ -72587,22 +73257,21 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [48781] = 3, + [48726] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1589), 10, + ACTIONS(1583), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1591), 36, + ACTIONS(1585), 37, anon_sym_def, anon_sym_import, anon_sym_from, @@ -72623,6 +73292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_not, @@ -72639,21 +73309,22 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [48836] = 3, + [48781] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1593), 9, + ACTIONS(1579), 10, sym__dedent, sym_string_start, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1595), 37, + ACTIONS(1581), 36, anon_sym_def, anon_sym_import, anon_sym_from, @@ -72674,7 +73345,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_not, @@ -72691,21 +73361,22 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [48891] = 3, + [48836] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1535), 9, + ACTIONS(1595), 10, sym__dedent, sym_string_start, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1537), 36, + ACTIONS(1597), 36, anon_sym_def, anon_sym_import, anon_sym_from, @@ -72721,12 +73392,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nonlocal, anon_sym_exec, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_not, anon_sym_DASH, @@ -72742,15 +73413,86 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [48945] = 5, - ACTIONS(1433), 1, + [48891] = 23, + ACTIONS(471), 1, + anon_sym_LBRACE, + ACTIONS(480), 1, + anon_sym_DASH, + ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, + sym_string_start, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(1601), 1, + anon_sym_LPAREN, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1607), 1, + anon_sym_await, + ACTIONS(1609), 1, + anon_sym_type, + ACTIONS(1611), 1, + sym_python_identifier, + STATE(853), 1, + sym_python_string, + STATE(1454), 1, + sym_primary_expression, + STATE(1475), 1, + sym_list_splat_pattern, + STATE(2133), 1, + sym_pattern, + STATE(2491), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(482), 2, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1471), 2, + sym_attribute, + sym_subscript, + STATE(1493), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1605), 4, + anon_sym_print, + anon_sym_exec, + anon_sym_async, + anon_sym_match, + ACTIONS(490), 5, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + STATE(1278), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_generator_expression, + sym_parenthesized_expression, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_concatenated_string, + sym_await, + [48985] = 5, + ACTIONS(1461), 1, anon_sym_else, - STATE(654), 1, + STATE(678), 1, sym_else_clause, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1597), 9, + ACTIONS(1613), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -72760,7 +73502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1599), 34, + ACTIONS(1615), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -72795,15 +73537,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [49003] = 5, - ACTIONS(1433), 1, - anon_sym_else, - STATE(669), 1, - sym_else_clause, + [49043] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1601), 9, + ACTIONS(1617), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -72813,7 +73551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1603), 34, + ACTIONS(1619), 36, anon_sym_def, anon_sym_import, anon_sym_from, @@ -72829,6 +73567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nonlocal, anon_sym_exec, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -72848,11 +73588,157 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [49061] = 3, + [49097] = 23, + ACTIONS(471), 1, + anon_sym_LBRACE, + ACTIONS(480), 1, + anon_sym_DASH, + ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, + sym_string_start, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(1601), 1, + anon_sym_LPAREN, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1607), 1, + anon_sym_await, + ACTIONS(1609), 1, + anon_sym_type, + ACTIONS(1611), 1, + sym_python_identifier, + STATE(853), 1, + sym_python_string, + STATE(1454), 1, + sym_primary_expression, + STATE(1475), 1, + sym_list_splat_pattern, + STATE(2081), 1, + sym_pattern, + STATE(2534), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(482), 2, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1471), 2, + sym_attribute, + sym_subscript, + STATE(1493), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1605), 4, + anon_sym_print, + anon_sym_exec, + anon_sym_async, + anon_sym_match, + ACTIONS(490), 5, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + STATE(1278), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_generator_expression, + sym_parenthesized_expression, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_concatenated_string, + sym_await, + [49191] = 23, + ACTIONS(471), 1, + anon_sym_LBRACE, + ACTIONS(480), 1, + anon_sym_DASH, + ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, + sym_string_start, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(1601), 1, + anon_sym_LPAREN, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1607), 1, + anon_sym_await, + ACTIONS(1609), 1, + anon_sym_type, + ACTIONS(1611), 1, + sym_python_identifier, + STATE(853), 1, + sym_python_string, + STATE(1454), 1, + sym_primary_expression, + STATE(1475), 1, + sym_list_splat_pattern, + STATE(2104), 1, + sym_pattern, + STATE(2515), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(482), 2, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1471), 2, + sym_attribute, + sym_subscript, + STATE(1493), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1605), 4, + anon_sym_print, + anon_sym_exec, + anon_sym_async, + anon_sym_match, + ACTIONS(490), 5, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + STATE(1278), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_generator_expression, + sym_parenthesized_expression, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_concatenated_string, + sym_await, + [49285] = 5, + ACTIONS(1461), 1, + anon_sym_else, + STATE(669), 1, + sym_else_clause, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1605), 9, + ACTIONS(1621), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -72862,7 +73748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1607), 36, + ACTIONS(1623), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -72878,8 +73764,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nonlocal, anon_sym_exec, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -72899,11 +73783,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [49115] = 3, + [49343] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1575), 9, + ACTIONS(1583), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -72913,7 +73797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1577), 36, + ACTIONS(1585), 36, anon_sym_def, anon_sym_import, anon_sym_from, @@ -72950,15 +73834,82 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [49169] = 5, - ACTIONS(1433), 1, - anon_sym_else, - STATE(671), 1, - sym_else_clause, + [49397] = 23, + ACTIONS(471), 1, + anon_sym_LBRACE, + ACTIONS(480), 1, + anon_sym_DASH, + ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, + sym_string_start, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(1601), 1, + anon_sym_LPAREN, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1607), 1, + anon_sym_await, + ACTIONS(1609), 1, + anon_sym_type, + ACTIONS(1611), 1, + sym_python_identifier, + STATE(853), 1, + sym_python_string, + STATE(1454), 1, + sym_primary_expression, + STATE(1475), 1, + sym_list_splat_pattern, + STATE(2071), 1, + sym_pattern, + STATE(2539), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(482), 2, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1471), 2, + sym_attribute, + sym_subscript, + STATE(1493), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1605), 4, + anon_sym_print, + anon_sym_exec, + anon_sym_async, + anon_sym_match, + ACTIONS(490), 5, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + STATE(1278), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_generator_expression, + sym_parenthesized_expression, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_concatenated_string, + sym_await, + [49491] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1609), 9, + ACTIONS(1553), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -72968,7 +73919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1611), 34, + ACTIONS(1555), 36, anon_sym_def, anon_sym_import, anon_sym_from, @@ -72984,6 +73935,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nonlocal, anon_sym_exec, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -73003,11 +73956,15 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [49227] = 3, + [49545] = 5, + ACTIONS(1377), 1, + anon_sym_finally, + STATE(649), 1, + sym_finally_clause, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1531), 9, + ACTIONS(1625), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -73017,7 +73974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1533), 36, + ACTIONS(1627), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -73033,8 +73990,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nonlocal, anon_sym_exec, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -73054,63 +74009,63 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [49281] = 23, - ACTIONS(469), 1, + [49603] = 23, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1613), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1617), 1, + ACTIONS(1603), 1, anon_sym_STAR, - ACTIONS(1621), 1, + ACTIONS(1607), 1, anon_sym_await, - ACTIONS(1623), 1, + ACTIONS(1609), 1, anon_sym_type, - ACTIONS(1625), 1, + ACTIONS(1611), 1, sym_python_identifier, - STATE(868), 1, + ACTIONS(1629), 1, + anon_sym_in, + STATE(853), 1, sym_python_string, - STATE(1435), 1, - sym_list_splat_pattern, - STATE(1468), 1, + STATE(1454), 1, sym_primary_expression, - STATE(2011), 1, + STATE(1475), 1, + sym_list_splat_pattern, + STATE(1503), 1, sym_pattern, - STATE(2464), 1, - sym_pattern_list, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1466), 2, + STATE(1471), 2, sym_attribute, sym_subscript, - STATE(1491), 2, + STATE(1493), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1619), 4, + ACTIONS(1605), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -73125,62 +74080,153 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [49375] = 3, + [49697] = 23, + ACTIONS(471), 1, + anon_sym_LBRACE, + ACTIONS(480), 1, + anon_sym_DASH, + ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, + sym_string_start, + ACTIONS(1537), 1, + anon_sym_LBRACK, + ACTIONS(1539), 1, + anon_sym_LPAREN, + ACTIONS(1543), 1, + anon_sym_STAR, + ACTIONS(1547), 1, + anon_sym_await, + ACTIONS(1549), 1, + anon_sym_type, + ACTIONS(1551), 1, + sym_python_identifier, + ACTIONS(1631), 1, + anon_sym_RPAREN, + STATE(853), 1, + sym_python_string, + STATE(1435), 1, + sym_primary_expression, + STATE(1459), 1, + sym_list_splat_pattern, + STATE(2298), 1, + sym_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1627), 9, - sym__dedent, + ACTIONS(482), 2, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1469), 2, + sym_attribute, + sym_subscript, + STATE(2260), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1545), 4, + anon_sym_print, + anon_sym_exec, + anon_sym_async, + anon_sym_match, + ACTIONS(490), 5, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + STATE(1278), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_generator_expression, + sym_parenthesized_expression, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_concatenated_string, + sym_await, + [49791] = 23, + ACTIONS(471), 1, + anon_sym_LBRACE, + ACTIONS(480), 1, + anon_sym_DASH, + ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, sym_string_start, + ACTIONS(1599), 1, anon_sym_LBRACK, + ACTIONS(1601), 1, anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(1603), 1, anon_sym_STAR, + ACTIONS(1607), 1, + anon_sym_await, + ACTIONS(1609), 1, + anon_sym_type, + ACTIONS(1611), 1, + sym_python_identifier, + STATE(853), 1, + sym_python_string, + STATE(1454), 1, + sym_primary_expression, + STATE(1475), 1, + sym_list_splat_pattern, + STATE(2107), 1, + sym_pattern, + STATE(2512), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - ACTIONS(1629), 36, - anon_sym_def, - anon_sym_import, - anon_sym_from, + STATE(1471), 2, + sym_attribute, + sym_subscript, + STATE(1493), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1605), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_not, - anon_sym_DASH, - anon_sym_lambda, - anon_sym_yield, - anon_sym_await, anon_sym_match, - anon_sym_type, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - sym_identifier, - [49429] = 3, + STATE(1278), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_generator_expression, + sym_parenthesized_expression, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_concatenated_string, + sym_await, + [49885] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1631), 9, + ACTIONS(1563), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -73190,7 +74236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1633), 36, + ACTIONS(1565), 36, anon_sym_def, anon_sym_import, anon_sym_from, @@ -73227,86 +74273,15 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [49483] = 23, - ACTIONS(469), 1, - anon_sym_LBRACE, - ACTIONS(478), 1, - anon_sym_DASH, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(1613), 1, - anon_sym_LBRACK, - ACTIONS(1615), 1, - anon_sym_LPAREN, - ACTIONS(1617), 1, - anon_sym_STAR, - ACTIONS(1621), 1, - anon_sym_await, - ACTIONS(1623), 1, - anon_sym_type, - ACTIONS(1625), 1, - sym_python_identifier, - ACTIONS(1635), 1, - anon_sym_in, - STATE(868), 1, - sym_python_string, - STATE(1435), 1, - sym_list_splat_pattern, - STATE(1468), 1, - sym_primary_expression, - STATE(1504), 1, - sym_pattern, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(480), 2, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1466), 2, - sym_attribute, - sym_subscript, - STATE(1491), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1619), 4, - anon_sym_print, - anon_sym_exec, - anon_sym_async, - anon_sym_match, - ACTIONS(488), 5, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - STATE(1266), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_generator_expression, - sym_parenthesized_expression, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_concatenated_string, - sym_await, - [49577] = 5, - ACTIONS(1375), 1, - anon_sym_finally, - STATE(673), 1, - sym_finally_clause, + [49939] = 5, + ACTIONS(1461), 1, + anon_sym_else, + STATE(652), 1, + sym_else_clause, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1637), 9, + ACTIONS(1633), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -73316,7 +74291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1639), 34, + ACTIONS(1635), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -73351,63 +74326,63 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [49635] = 23, - ACTIONS(469), 1, + [49997] = 23, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1613), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1617), 1, + ACTIONS(1603), 1, anon_sym_STAR, - ACTIONS(1621), 1, + ACTIONS(1607), 1, anon_sym_await, - ACTIONS(1623), 1, + ACTIONS(1609), 1, anon_sym_type, - ACTIONS(1625), 1, + ACTIONS(1611), 1, sym_python_identifier, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1435), 1, - sym_list_splat_pattern, - STATE(1468), 1, + STATE(1454), 1, sym_primary_expression, - STATE(2067), 1, + STATE(1475), 1, + sym_list_splat_pattern, + STATE(2012), 1, sym_pattern, - STATE(2498), 1, + STATE(2581), 1, sym_pattern_list, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1466), 2, + STATE(1471), 2, sym_attribute, sym_subscript, - STATE(1491), 2, + STATE(1493), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1619), 4, + ACTIONS(1605), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -73422,63 +74397,63 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [49729] = 23, - ACTIONS(469), 1, + [50091] = 23, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1613), 1, + ACTIONS(1537), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1539), 1, anon_sym_LPAREN, - ACTIONS(1617), 1, + ACTIONS(1543), 1, anon_sym_STAR, - ACTIONS(1621), 1, + ACTIONS(1547), 1, anon_sym_await, - ACTIONS(1623), 1, + ACTIONS(1549), 1, anon_sym_type, - ACTIONS(1625), 1, + ACTIONS(1551), 1, sym_python_identifier, - STATE(868), 1, + ACTIONS(1637), 1, + anon_sym_RPAREN, + STATE(853), 1, sym_python_string, STATE(1435), 1, - sym_list_splat_pattern, - STATE(1468), 1, sym_primary_expression, - STATE(2056), 1, + STATE(1459), 1, + sym_list_splat_pattern, + STATE(2298), 1, sym_pattern, - STATE(2506), 1, - sym_pattern_list, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1466), 2, + STATE(1469), 2, sym_attribute, sym_subscript, - STATE(1491), 2, + STATE(2260), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1619), 4, + ACTIONS(1545), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -73493,21 +74468,74 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [49823] = 23, - ACTIONS(469), 1, + [50185] = 5, + ACTIONS(1461), 1, + anon_sym_else, + STATE(657), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1639), 9, + sym__dedent, + sym_string_start, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + ACTIONS(1641), 34, + anon_sym_def, + 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_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_not, + anon_sym_DASH, + anon_sym_lambda, + anon_sym_yield, + anon_sym_await, + anon_sym_match, + anon_sym_type, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + sym_python_identifier, + sym_identifier, + [50243] = 23, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1641), 1, - anon_sym_LBRACK, - ACTIONS(1643), 1, + ACTIONS(1637), 1, anon_sym_RBRACK, + ACTIONS(1643), 1, + anon_sym_LBRACK, ACTIONS(1645), 1, anon_sym_LPAREN, ACTIONS(1647), 1, @@ -73518,24 +74546,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, ACTIONS(1655), 1, sym_python_identifier, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1452), 1, - sym_primary_expression, - STATE(1455), 1, + STATE(1443), 1, sym_list_splat_pattern, - STATE(2319), 1, + STATE(1477), 1, + sym_primary_expression, + STATE(2347), 1, sym_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1456), 2, + STATE(1437), 2, sym_attribute, sym_subscript, - STATE(2284), 2, + STATE(2294), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(1649), 4, @@ -73543,13 +74571,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -73564,86 +74592,68 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [49917] = 23, - ACTIONS(469), 1, - anon_sym_LBRACE, - ACTIONS(478), 1, - anon_sym_DASH, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, + [50337] = 5, + ACTIONS(1377), 1, + anon_sym_finally, + STATE(674), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1657), 9, + sym__dedent, sym_string_start, - ACTIONS(1613), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, anon_sym_LPAREN, - ACTIONS(1617), 1, + anon_sym_LBRACE, anon_sym_STAR, - ACTIONS(1621), 1, - anon_sym_await, - ACTIONS(1623), 1, - anon_sym_type, - ACTIONS(1625), 1, - sym_python_identifier, - STATE(868), 1, - sym_python_string, - STATE(1435), 1, - sym_list_splat_pattern, - STATE(1468), 1, - sym_primary_expression, - STATE(2125), 1, - sym_pattern, - STATE(2451), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(480), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1466), 2, - sym_attribute, - sym_subscript, - STATE(1491), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1619), 4, + sym_ellipsis, + ACTIONS(1659), 34, + anon_sym_def, + 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_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_not, + anon_sym_DASH, + anon_sym_lambda, + anon_sym_yield, + anon_sym_await, anon_sym_match, - ACTIONS(488), 5, + anon_sym_type, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_generator_expression, - sym_parenthesized_expression, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_concatenated_string, - sym_await, - [50011] = 5, - ACTIONS(1433), 1, + sym_python_identifier, + sym_identifier, + [50395] = 5, + ACTIONS(1461), 1, anon_sym_else, - STATE(666), 1, + STATE(677), 1, sym_else_clause, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1657), 9, + ACTIONS(1661), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -73653,7 +74663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1659), 34, + ACTIONS(1663), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -73688,134 +74698,165 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [50069] = 23, - ACTIONS(469), 1, - anon_sym_LBRACE, - ACTIONS(478), 1, - anon_sym_DASH, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, + [50453] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1571), 9, + sym__dedent, sym_string_start, - ACTIONS(1613), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, anon_sym_LPAREN, - ACTIONS(1617), 1, + anon_sym_LBRACE, anon_sym_STAR, - ACTIONS(1621), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + ACTIONS(1573), 36, + anon_sym_def, + 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_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_not, + anon_sym_DASH, + anon_sym_lambda, + anon_sym_yield, anon_sym_await, - ACTIONS(1623), 1, + anon_sym_match, anon_sym_type, - ACTIONS(1625), 1, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, sym_python_identifier, - STATE(868), 1, - sym_python_string, - STATE(1435), 1, - sym_list_splat_pattern, - STATE(1468), 1, - sym_primary_expression, - STATE(2028), 1, - sym_pattern, - STATE(2531), 1, - sym_pattern_list, + sym_identifier, + [50507] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(1579), 9, + sym__dedent, + sym_string_start, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR, anon_sym_PLUS, anon_sym_TILDE, - STATE(1466), 2, - sym_attribute, - sym_subscript, - STATE(1491), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1619), 4, + sym_ellipsis, + ACTIONS(1581), 36, + anon_sym_def, + 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_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_not, + anon_sym_DASH, + anon_sym_lambda, + anon_sym_yield, + anon_sym_await, anon_sym_match, - ACTIONS(488), 5, + anon_sym_type, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_generator_expression, - sym_parenthesized_expression, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_concatenated_string, - sym_await, - [50163] = 23, - ACTIONS(469), 1, + sym_python_identifier, + sym_identifier, + [50561] = 23, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1613), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1617), 1, + ACTIONS(1603), 1, anon_sym_STAR, - ACTIONS(1621), 1, + ACTIONS(1607), 1, anon_sym_await, - ACTIONS(1623), 1, + ACTIONS(1609), 1, anon_sym_type, - ACTIONS(1625), 1, + ACTIONS(1611), 1, sym_python_identifier, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1435), 1, - sym_list_splat_pattern, - STATE(1468), 1, + STATE(1454), 1, sym_primary_expression, - STATE(2124), 1, + STATE(1475), 1, + sym_list_splat_pattern, + STATE(2125), 1, sym_pattern, - STATE(2386), 1, + STATE(2370), 1, sym_pattern_list, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1466), 2, + STATE(1471), 2, sym_attribute, sym_subscript, - STATE(1491), 2, + STATE(1493), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1619), 4, + ACTIONS(1605), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -73830,63 +74871,63 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [50257] = 23, - ACTIONS(469), 1, + [50655] = 23, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1551), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1553), 1, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1557), 1, + ACTIONS(1603), 1, anon_sym_STAR, - ACTIONS(1561), 1, + ACTIONS(1607), 1, anon_sym_await, - ACTIONS(1563), 1, + ACTIONS(1609), 1, anon_sym_type, - ACTIONS(1565), 1, + ACTIONS(1611), 1, sym_python_identifier, - ACTIONS(1661), 1, - anon_sym_RPAREN, - STATE(868), 1, + ACTIONS(1665), 1, + anon_sym_in, + STATE(853), 1, sym_python_string, - STATE(1467), 1, + STATE(1454), 1, sym_primary_expression, - STATE(1471), 1, + STATE(1475), 1, sym_list_splat_pattern, - STATE(2235), 1, + STATE(1503), 1, sym_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1460), 2, + STATE(1471), 2, sym_attribute, sym_subscript, - STATE(2261), 2, + STATE(1493), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1559), 4, + ACTIONS(1605), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -73901,63 +74942,63 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [50351] = 23, - ACTIONS(469), 1, + [50749] = 23, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1613), 1, + ACTIONS(1631), 1, + anon_sym_RBRACK, + ACTIONS(1643), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1645), 1, anon_sym_LPAREN, - ACTIONS(1617), 1, + ACTIONS(1647), 1, anon_sym_STAR, - ACTIONS(1621), 1, + ACTIONS(1651), 1, anon_sym_await, - ACTIONS(1623), 1, + ACTIONS(1653), 1, anon_sym_type, - ACTIONS(1625), 1, + ACTIONS(1655), 1, sym_python_identifier, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1435), 1, + STATE(1443), 1, sym_list_splat_pattern, - STATE(1468), 1, + STATE(1477), 1, sym_primary_expression, - STATE(2048), 1, + STATE(2347), 1, sym_pattern, - STATE(2509), 1, - sym_pattern_list, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1466), 2, + STATE(1437), 2, sym_attribute, sym_subscript, - STATE(1491), 2, + STATE(2294), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1619), 4, + ACTIONS(1649), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -73972,11 +75013,15 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [50445] = 3, + [50843] = 5, + ACTIONS(1461), 1, + anon_sym_else, + STATE(672), 1, + sym_else_clause, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1527), 9, + ACTIONS(1667), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -73986,7 +75031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1529), 36, + ACTIONS(1669), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -74002,8 +75047,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nonlocal, anon_sym_exec, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -74023,63 +75066,63 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [50499] = 23, - ACTIONS(469), 1, + [50901] = 23, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1613), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1617), 1, + ACTIONS(1603), 1, anon_sym_STAR, - ACTIONS(1621), 1, + ACTIONS(1607), 1, anon_sym_await, - ACTIONS(1623), 1, + ACTIONS(1609), 1, anon_sym_type, - ACTIONS(1625), 1, + ACTIONS(1611), 1, sym_python_identifier, - ACTIONS(1663), 1, - anon_sym_in, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1435), 1, - sym_list_splat_pattern, - STATE(1468), 1, + STATE(1454), 1, sym_primary_expression, - STATE(1504), 1, + STATE(1475), 1, + sym_list_splat_pattern, + STATE(2080), 1, sym_pattern, + STATE(2537), 1, + sym_pattern_list, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1466), 2, + STATE(1471), 2, sym_attribute, sym_subscript, - STATE(1491), 2, + STATE(1493), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1619), 4, + ACTIONS(1605), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -74094,15 +75137,11 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [50593] = 5, - ACTIONS(1433), 1, - anon_sym_else, - STATE(652), 1, - sym_else_clause, + [50995] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1665), 9, + ACTIONS(1671), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -74112,7 +75151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1667), 34, + ACTIONS(1673), 36, anon_sym_def, anon_sym_import, anon_sym_from, @@ -74128,6 +75167,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nonlocal, anon_sym_exec, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -74147,15 +75188,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [50651] = 5, - ACTIONS(1433), 1, - anon_sym_else, - STATE(670), 1, - sym_else_clause, + [51049] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1669), 9, + ACTIONS(1675), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -74165,7 +75202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1671), 34, + ACTIONS(1677), 36, anon_sym_def, anon_sym_import, anon_sym_from, @@ -74181,6 +75218,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nonlocal, anon_sym_exec, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -74200,63 +75239,130 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [50709] = 23, - ACTIONS(469), 1, + [51103] = 22, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1613), 1, + ACTIONS(1643), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1645), 1, anon_sym_LPAREN, - ACTIONS(1617), 1, + ACTIONS(1647), 1, anon_sym_STAR, - ACTIONS(1621), 1, + ACTIONS(1651), 1, + anon_sym_await, + ACTIONS(1653), 1, + anon_sym_type, + ACTIONS(1655), 1, + sym_python_identifier, + STATE(853), 1, + sym_python_string, + STATE(1443), 1, + sym_list_splat_pattern, + STATE(1477), 1, + sym_primary_expression, + STATE(2347), 1, + sym_pattern, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(482), 2, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1437), 2, + sym_attribute, + sym_subscript, + STATE(2294), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1649), 4, + anon_sym_print, + anon_sym_exec, + anon_sym_async, + anon_sym_match, + ACTIONS(490), 5, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + STATE(1278), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_generator_expression, + sym_parenthesized_expression, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_concatenated_string, + sym_await, + [51194] = 22, + ACTIONS(471), 1, + anon_sym_LBRACE, + ACTIONS(480), 1, + anon_sym_DASH, + ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, + sym_string_start, + ACTIONS(935), 1, + anon_sym_LBRACK, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(943), 1, anon_sym_await, - ACTIONS(1623), 1, + ACTIONS(945), 1, anon_sym_type, - ACTIONS(1625), 1, + ACTIONS(947), 1, sym_python_identifier, - STATE(868), 1, + ACTIONS(1679), 1, + anon_sym_STAR, + STATE(853), 1, sym_python_string, - STATE(1435), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1468), 1, + STATE(1460), 1, sym_primary_expression, - STATE(2016), 1, + STATE(1503), 1, sym_pattern, - STATE(2528), 1, - sym_pattern_list, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1466), 2, + STATE(1386), 2, sym_attribute, sym_subscript, - STATE(1491), 2, + STATE(1493), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1619), 4, + ACTIONS(941), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -74271,63 +75377,111 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [50803] = 23, - ACTIONS(469), 1, + [51285] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1553), 9, + sym__dedent, + sym_string_start, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(478), 1, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + ACTIONS(1555), 35, + anon_sym_def, + 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_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_not, anon_sym_DASH, - ACTIONS(482), 1, + anon_sym_lambda, + anon_sym_yield, + anon_sym_await, + anon_sym_match, + anon_sym_type, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + sym_python_identifier, + sym_identifier, + [51338] = 22, + ACTIONS(471), 1, + anon_sym_LBRACE, + ACTIONS(480), 1, + anon_sym_DASH, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1551), 1, + ACTIONS(1537), 1, anon_sym_LBRACK, - ACTIONS(1553), 1, + ACTIONS(1539), 1, anon_sym_LPAREN, - ACTIONS(1557), 1, + ACTIONS(1543), 1, anon_sym_STAR, - ACTIONS(1561), 1, + ACTIONS(1547), 1, anon_sym_await, - ACTIONS(1563), 1, + ACTIONS(1549), 1, anon_sym_type, - ACTIONS(1565), 1, + ACTIONS(1551), 1, sym_python_identifier, - ACTIONS(1643), 1, - anon_sym_RPAREN, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1467), 1, + STATE(1435), 1, sym_primary_expression, - STATE(1471), 1, + STATE(1459), 1, sym_list_splat_pattern, - STATE(2235), 1, + STATE(2298), 1, sym_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1460), 2, + STATE(1469), 2, sym_attribute, sym_subscript, - STATE(2261), 2, + STATE(2260), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1559), 4, + ACTIONS(1545), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -74342,15 +75496,11 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [50897] = 5, - ACTIONS(1375), 1, - anon_sym_finally, - STATE(667), 1, - sym_finally_clause, + [51429] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1673), 9, + ACTIONS(1681), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -74360,7 +75510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1675), 34, + ACTIONS(1683), 35, anon_sym_def, anon_sym_import, anon_sym_from, @@ -74380,6 +75530,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_not, anon_sym_DASH, @@ -74395,11 +75546,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [50955] = 3, + [51482] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1539), 9, + ACTIONS(1571), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -74409,7 +75560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1541), 36, + ACTIONS(1573), 35, anon_sym_def, anon_sym_import, anon_sym_from, @@ -74425,7 +75576,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nonlocal, anon_sym_exec, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_async, anon_sym_for, @@ -74446,63 +75596,61 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [51009] = 23, - ACTIONS(469), 1, + [51535] = 22, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1641), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1645), 1, + ACTIONS(1601), 1, anon_sym_LPAREN, - ACTIONS(1647), 1, + ACTIONS(1603), 1, anon_sym_STAR, - ACTIONS(1651), 1, + ACTIONS(1607), 1, anon_sym_await, - ACTIONS(1653), 1, + ACTIONS(1609), 1, anon_sym_type, - ACTIONS(1655), 1, + ACTIONS(1611), 1, sym_python_identifier, - ACTIONS(1661), 1, - anon_sym_RBRACK, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1452), 1, + STATE(1454), 1, sym_primary_expression, - STATE(1455), 1, + STATE(1475), 1, sym_list_splat_pattern, - STATE(2319), 1, + STATE(1503), 1, sym_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1456), 2, + STATE(1471), 2, sym_attribute, sym_subscript, - STATE(2284), 2, + STATE(1493), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1649), 4, + ACTIONS(1605), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -74517,11 +75665,11 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [51103] = 3, + [51626] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1531), 9, + ACTIONS(1583), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -74531,7 +75679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1533), 35, + ACTIONS(1585), 35, anon_sym_def, anon_sym_import, anon_sym_from, @@ -74547,11 +75695,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nonlocal, anon_sym_exec, anon_sym_if, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_not, anon_sym_DASH, @@ -74567,149 +75715,61 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [51156] = 22, - ACTIONS(469), 1, - anon_sym_LBRACE, - ACTIONS(478), 1, - anon_sym_DASH, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(1401), 1, - anon_sym_LBRACK, - ACTIONS(1403), 1, - anon_sym_LPAREN, - ACTIONS(1405), 1, - anon_sym_STAR, - ACTIONS(1409), 1, - anon_sym_await, - ACTIONS(1411), 1, - anon_sym_type, - ACTIONS(1413), 1, - sym_python_identifier, - STATE(868), 1, - sym_python_string, - STATE(1406), 1, - sym_list_splat_pattern, - STATE(1446), 1, - sym_primary_expression, - STATE(1882), 1, - sym_pattern, + [51679] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1407), 2, - sym_attribute, - sym_subscript, - STATE(1907), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1407), 4, - anon_sym_print, - anon_sym_exec, - anon_sym_async, - anon_sym_match, - ACTIONS(488), 5, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - STATE(1266), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_generator_expression, - sym_parenthesized_expression, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_concatenated_string, - sym_await, - [51247] = 22, - ACTIONS(469), 1, - anon_sym_LBRACE, - ACTIONS(478), 1, - anon_sym_DASH, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, + ACTIONS(1583), 9, + sym__dedent, sym_string_start, - ACTIONS(1613), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, anon_sym_LPAREN, - ACTIONS(1617), 1, + anon_sym_LBRACE, anon_sym_STAR, - ACTIONS(1621), 1, - anon_sym_await, - ACTIONS(1623), 1, - anon_sym_type, - ACTIONS(1625), 1, - sym_python_identifier, - STATE(868), 1, - sym_python_string, - STATE(1435), 1, - sym_list_splat_pattern, - STATE(1468), 1, - sym_primary_expression, - STATE(1504), 1, - sym_pattern, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(480), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1466), 2, - sym_attribute, - sym_subscript, - STATE(1491), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1619), 4, + sym_ellipsis, + ACTIONS(1585), 35, + anon_sym_def, + 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_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_if, + anon_sym_else, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_not, + anon_sym_DASH, + anon_sym_lambda, + anon_sym_yield, + anon_sym_await, anon_sym_match, - ACTIONS(488), 5, + anon_sym_type, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_generator_expression, - sym_parenthesized_expression, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_concatenated_string, - sym_await, - [51338] = 3, + sym_python_identifier, + sym_identifier, + [51732] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1539), 9, + ACTIONS(1685), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -74719,7 +75779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1541), 35, + ACTIONS(1687), 35, anon_sym_def, anon_sym_import, anon_sym_from, @@ -74755,61 +75815,61 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [51391] = 22, - ACTIONS(469), 1, + [51785] = 22, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(803), 1, + ACTIONS(1481), 1, anon_sym_LBRACK, - ACTIONS(805), 1, + ACTIONS(1483), 1, anon_sym_LPAREN, - ACTIONS(811), 1, + ACTIONS(1485), 1, + anon_sym_STAR, + ACTIONS(1489), 1, anon_sym_await, - ACTIONS(813), 1, + ACTIONS(1491), 1, anon_sym_type, - ACTIONS(815), 1, + ACTIONS(1493), 1, sym_python_identifier, - ACTIONS(1677), 1, - anon_sym_STAR, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1167), 1, + STATE(1405), 1, sym_list_splat_pattern, - STATE(1443), 1, + STATE(1451), 1, sym_primary_expression, - STATE(1465), 1, + STATE(1918), 1, sym_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1158), 2, + STATE(1407), 2, sym_attribute, sym_subscript, - STATE(1454), 2, + STATE(1904), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(809), 4, + ACTIONS(1487), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -74824,11 +75884,11 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [51482] = 3, + [51876] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1679), 9, + ACTIONS(1563), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -74838,7 +75898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1681), 35, + ACTIONS(1565), 35, anon_sym_def, anon_sym_import, anon_sym_from, @@ -74854,11 +75914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nonlocal, anon_sym_exec, anon_sym_if, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_not, anon_sym_DASH, @@ -74874,11 +75934,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [51535] = 3, + [51929] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1535), 9, + ACTIONS(1579), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -74888,7 +75948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1537), 35, + ACTIONS(1581), 35, anon_sym_def, anon_sym_import, anon_sym_from, @@ -74904,11 +75964,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nonlocal, anon_sym_exec, anon_sym_if, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_not, anon_sym_DASH, @@ -74924,11 +75984,80 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [51588] = 3, + [51982] = 22, + ACTIONS(471), 1, + anon_sym_LBRACE, + ACTIONS(480), 1, + anon_sym_DASH, + ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, + sym_string_start, + ACTIONS(805), 1, + anon_sym_LBRACK, + ACTIONS(807), 1, + anon_sym_LPAREN, + ACTIONS(813), 1, + anon_sym_await, + ACTIONS(815), 1, + anon_sym_type, + ACTIONS(817), 1, + sym_python_identifier, + ACTIONS(1689), 1, + anon_sym_STAR, + STATE(853), 1, + sym_python_string, + STATE(1304), 1, + sym_list_splat_pattern, + STATE(1450), 1, + sym_primary_expression, + STATE(1467), 1, + sym_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1575), 9, + ACTIONS(482), 2, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1303), 2, + sym_attribute, + sym_subscript, + STATE(1455), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(811), 4, + anon_sym_print, + anon_sym_exec, + anon_sym_async, + anon_sym_match, + ACTIONS(490), 5, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + STATE(1278), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_generator_expression, + sym_parenthesized_expression, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_concatenated_string, + sym_await, + [52073] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1571), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -74938,7 +76067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1577), 35, + ACTIONS(1573), 35, anon_sym_def, anon_sym_import, anon_sym_from, @@ -74974,11 +76103,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [51641] = 3, + [52126] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1683), 9, + ACTIONS(1563), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -74988,7 +76117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1685), 35, + ACTIONS(1565), 35, anon_sym_def, anon_sym_import, anon_sym_from, @@ -75024,11 +76153,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [51694] = 3, + [52179] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1531), 9, + ACTIONS(1553), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -75038,7 +76167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1533), 35, + ACTIONS(1555), 35, anon_sym_def, anon_sym_import, anon_sym_from, @@ -75054,11 +76183,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nonlocal, anon_sym_exec, anon_sym_if, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_not, anon_sym_DASH, @@ -75074,11 +76203,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [51747] = 3, + [52232] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1527), 9, + ACTIONS(1579), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -75088,7 +76217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1529), 35, + ACTIONS(1581), 35, anon_sym_def, anon_sym_import, anon_sym_from, @@ -75124,130 +76253,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [51800] = 22, - ACTIONS(469), 1, - anon_sym_LBRACE, - ACTIONS(478), 1, - anon_sym_DASH, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(907), 1, - anon_sym_LBRACK, - ACTIONS(909), 1, - anon_sym_LPAREN, - ACTIONS(915), 1, - anon_sym_await, - ACTIONS(917), 1, - anon_sym_type, - ACTIONS(919), 1, - sym_python_identifier, - ACTIONS(1687), 1, - anon_sym_STAR, - STATE(868), 1, - sym_python_string, - STATE(1384), 1, - sym_list_splat_pattern, - STATE(1473), 1, - sym_primary_expression, - STATE(1504), 1, - sym_pattern, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(480), 2, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1394), 2, - sym_attribute, - sym_subscript, - STATE(1491), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(913), 4, - anon_sym_print, - anon_sym_exec, - anon_sym_async, - anon_sym_match, - ACTIONS(488), 5, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - STATE(1266), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_generator_expression, - sym_parenthesized_expression, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_concatenated_string, - sym_await, - [51891] = 3, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(1575), 9, - sym__dedent, - sym_string_start, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - ACTIONS(1577), 35, - anon_sym_def, - 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_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_not, - anon_sym_DASH, - anon_sym_lambda, - anon_sym_yield, - anon_sym_await, - anon_sym_match, - anon_sym_type, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - sym_python_identifier, - sym_identifier, - [51944] = 3, + [52285] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1535), 9, + ACTIONS(1691), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -75257,7 +76267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1537), 35, + ACTIONS(1693), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -75273,7 +76283,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nonlocal, anon_sym_exec, anon_sym_if, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -75293,80 +76302,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [51997] = 22, - ACTIONS(469), 1, - anon_sym_LBRACE, - ACTIONS(478), 1, - anon_sym_DASH, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(1551), 1, - anon_sym_LBRACK, - ACTIONS(1553), 1, - anon_sym_LPAREN, - ACTIONS(1557), 1, - anon_sym_STAR, - ACTIONS(1561), 1, - anon_sym_await, - ACTIONS(1563), 1, - anon_sym_type, - ACTIONS(1565), 1, - sym_python_identifier, - STATE(868), 1, - sym_python_string, - STATE(1467), 1, - sym_primary_expression, - STATE(1471), 1, - sym_list_splat_pattern, - STATE(2235), 1, - sym_pattern, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(480), 2, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1460), 2, - sym_attribute, - sym_subscript, - STATE(2261), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1559), 4, - anon_sym_print, - anon_sym_exec, - anon_sym_async, - anon_sym_match, - ACTIONS(488), 5, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - STATE(1266), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_generator_expression, - sym_parenthesized_expression, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_concatenated_string, - sym_await, - [52088] = 3, + [52337] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1539), 9, + ACTIONS(1695), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -75376,7 +76316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1541), 35, + ACTIONS(1697), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -75392,7 +76332,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nonlocal, anon_sym_exec, anon_sym_if, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -75412,11 +76351,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [52141] = 3, + [52389] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1527), 9, + ACTIONS(1699), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -75426,7 +76365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1529), 35, + ACTIONS(1701), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -75442,7 +76381,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nonlocal, anon_sym_exec, anon_sym_if, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -75462,80 +76400,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [52194] = 22, - ACTIONS(469), 1, - anon_sym_LBRACE, - ACTIONS(478), 1, - anon_sym_DASH, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(1641), 1, - anon_sym_LBRACK, - ACTIONS(1645), 1, - anon_sym_LPAREN, - ACTIONS(1647), 1, - anon_sym_STAR, - ACTIONS(1651), 1, - anon_sym_await, - ACTIONS(1653), 1, - anon_sym_type, - ACTIONS(1655), 1, - sym_python_identifier, - STATE(868), 1, - sym_python_string, - STATE(1452), 1, - sym_primary_expression, - STATE(1455), 1, - sym_list_splat_pattern, - STATE(2319), 1, - sym_pattern, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(480), 2, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1456), 2, - sym_attribute, - sym_subscript, - STATE(2284), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1649), 4, - anon_sym_print, - anon_sym_exec, - anon_sym_async, - anon_sym_match, - ACTIONS(488), 5, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - STATE(1266), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_generator_expression, - sym_parenthesized_expression, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_concatenated_string, - sym_await, - [52285] = 3, + [52441] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1689), 9, + ACTIONS(1703), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -75545,7 +76414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1691), 34, + ACTIONS(1705), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -75580,11 +76449,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [52337] = 3, + [52493] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1575), 9, + ACTIONS(1707), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -75594,7 +76463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1577), 34, + ACTIONS(1709), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -75629,11 +76498,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [52389] = 3, + [52545] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1693), 9, + ACTIONS(1711), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -75643,7 +76512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1695), 34, + ACTIONS(1713), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -75678,11 +76547,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [52441] = 3, + [52597] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1679), 9, + ACTIONS(1553), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -75692,7 +76561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1681), 34, + ACTIONS(1555), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -75727,11 +76596,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [52493] = 3, + [52649] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1697), 9, + ACTIONS(1715), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -75741,7 +76610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1699), 34, + ACTIONS(1717), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -75776,11 +76645,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [52545] = 3, + [52701] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1701), 9, + ACTIONS(1369), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -75790,7 +76659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1703), 34, + ACTIONS(1371), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -75825,11 +76694,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [52597] = 3, + [52753] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1379), 9, + ACTIONS(1719), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -75839,7 +76708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1381), 34, + ACTIONS(1721), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -75874,11 +76743,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [52649] = 3, + [52805] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1705), 9, + ACTIONS(1723), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -75888,7 +76757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1707), 34, + ACTIONS(1725), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -75923,11 +76792,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [52701] = 3, + [52857] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1709), 9, + ACTIONS(1727), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -75937,7 +76806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1711), 34, + ACTIONS(1729), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -75972,11 +76841,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [52753] = 3, + [52909] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1713), 9, + ACTIONS(1731), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -75986,7 +76855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1715), 34, + ACTIONS(1733), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -76021,11 +76890,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [52805] = 3, + [52961] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1717), 9, + ACTIONS(1735), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -76035,7 +76904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1719), 34, + ACTIONS(1737), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -76070,11 +76939,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [52857] = 3, + [53013] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1531), 9, + ACTIONS(1681), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -76084,7 +76953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1533), 34, + ACTIONS(1683), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -76119,11 +76988,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [52909] = 3, + [53065] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1721), 9, + ACTIONS(1739), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -76133,7 +77002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1723), 34, + ACTIONS(1741), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -76168,11 +77037,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [52961] = 3, + [53117] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1527), 9, + ACTIONS(1579), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -76182,7 +77051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1529), 34, + ACTIONS(1581), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -76217,59 +77086,59 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [53013] = 21, - ACTIONS(465), 1, - anon_sym_LBRACK, + [53169] = 21, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1745), 1, anon_sym_STAR, - ACTIONS(1731), 1, + ACTIONS(1749), 1, anon_sym_await, - ACTIONS(1733), 1, + ACTIONS(1751), 1, anon_sym_type, - ACTIONS(1735), 1, + ACTIONS(1753), 1, sym_python_identifier, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1468), 1, + STATE(1435), 1, sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1725), 2, - anon_sym_COLON, + ACTIONS(1743), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1469), 2, + STATE(1427), 2, sym_attribute, sym_subscript, - ACTIONS(1729), 4, + ACTIONS(1747), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76284,11 +77153,11 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [53101] = 3, + [53257] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1737), 9, + ACTIONS(1563), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -76298,7 +77167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1739), 34, + ACTIONS(1565), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -76333,11 +77202,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [53153] = 3, + [53309] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1683), 9, + ACTIONS(1583), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -76347,7 +77216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1685), 34, + ACTIONS(1585), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -76382,11 +77251,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [53205] = 3, + [53361] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1741), 9, + ACTIONS(1755), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -76396,7 +77265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1743), 34, + ACTIONS(1757), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -76431,11 +77300,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [53257] = 3, + [53413] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1745), 9, + ACTIONS(1759), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -76445,7 +77314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1747), 34, + ACTIONS(1761), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -76480,158 +77349,78 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [53309] = 3, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(1535), 9, - sym__dedent, - sym_string_start, + [53465] = 21, + ACTIONS(467), 1, anon_sym_LBRACK, + ACTIONS(469), 1, anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - ACTIONS(1537), 34, - anon_sym_def, - 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_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_not, + ACTIONS(480), 1, anon_sym_DASH, - anon_sym_lambda, - anon_sym_yield, - anon_sym_await, - anon_sym_match, - anon_sym_type, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - sym_python_identifier, + ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(488), 1, sym_identifier, - [53361] = 3, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(1749), 9, - sym__dedent, + ACTIONS(492), 1, sym_string_start, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(1745), 1, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - ACTIONS(1751), 34, - anon_sym_def, - 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_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_not, - anon_sym_DASH, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(1765), 1, anon_sym_await, - anon_sym_match, + ACTIONS(1767), 1, anon_sym_type, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, + ACTIONS(1769), 1, sym_python_identifier, - sym_identifier, - [53413] = 3, + STATE(853), 1, + sym_python_string, + STATE(1269), 1, + sym_list_splat_pattern, + STATE(1454), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1753), 9, - sym__dedent, - sym_string_start, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - ACTIONS(1755), 34, - anon_sym_def, - anon_sym_import, - anon_sym_from, + ACTIONS(1743), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(1456), 2, + sym_attribute, + sym_subscript, + ACTIONS(1763), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_if, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_not, - anon_sym_DASH, - anon_sym_lambda, - anon_sym_yield, - anon_sym_await, anon_sym_match, - anon_sym_type, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - sym_identifier, - [53465] = 3, + STATE(1278), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_generator_expression, + sym_parenthesized_expression, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_concatenated_string, + sym_await, + [53553] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1757), 9, + ACTIONS(1657), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -76641,7 +77430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1759), 34, + ACTIONS(1659), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -76676,78 +77465,11 @@ static const uint16_t ts_small_parse_table[] = { sym_none, sym_python_identifier, sym_identifier, - [53517] = 21, - ACTIONS(465), 1, - anon_sym_LBRACK, - ACTIONS(467), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, - anon_sym_LBRACE, - ACTIONS(478), 1, - anon_sym_DASH, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(1727), 1, - anon_sym_STAR, - ACTIONS(1763), 1, - anon_sym_await, - ACTIONS(1765), 1, - anon_sym_type, - ACTIONS(1767), 1, - sym_python_identifier, - STATE(868), 1, - sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1467), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(480), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1725), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(1426), 2, - sym_attribute, - sym_subscript, - ACTIONS(1761), 4, - anon_sym_print, - anon_sym_exec, - anon_sym_async, - anon_sym_match, - ACTIONS(488), 5, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - STATE(1266), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_generator_expression, - sym_parenthesized_expression, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_concatenated_string, - sym_await, [53605] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1769), 9, + ACTIONS(1771), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -76757,7 +77479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1771), 34, + ACTIONS(1773), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -76796,7 +77518,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1773), 9, + ACTIONS(1775), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -76806,7 +77528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1775), 34, + ACTIONS(1777), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -76845,7 +77567,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1777), 9, + ACTIONS(1779), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -76855,7 +77577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1779), 34, + ACTIONS(1781), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -76894,7 +77616,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1781), 9, + ACTIONS(1783), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -76904,7 +77626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1783), 34, + ACTIONS(1785), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -76943,7 +77665,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1785), 9, + ACTIONS(1625), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -76953,7 +77675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1787), 34, + ACTIONS(1627), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -76992,7 +77714,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1789), 9, + ACTIONS(1787), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -77002,7 +77724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1791), 34, + ACTIONS(1789), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -77041,7 +77763,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1673), 9, + ACTIONS(1685), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -77051,7 +77773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1675), 34, + ACTIONS(1687), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -77090,7 +77812,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1637), 9, + ACTIONS(1571), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -77100,7 +77822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1639), 34, + ACTIONS(1573), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -77139,7 +77861,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1793), 9, + ACTIONS(1791), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -77149,7 +77871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1795), 34, + ACTIONS(1793), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -77188,7 +77910,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1367), 9, + ACTIONS(1795), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -77198,7 +77920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1369), 34, + ACTIONS(1797), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -77237,7 +77959,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1539), 9, + ACTIONS(1399), 9, sym__dedent, sym_string_start, anon_sym_LBRACK, @@ -77247,7 +77969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - ACTIONS(1541), 34, + ACTIONS(1401), 34, anon_sym_def, anon_sym_import, anon_sym_from, @@ -77283,52 +78005,52 @@ static const uint16_t ts_small_parse_table[] = { sym_python_identifier, sym_identifier, [54177] = 18, - ACTIONS(625), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(637), 1, - anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(641), 1, - anon_sym_await, - ACTIONS(647), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1191), 1, + ACTIONS(663), 1, + anon_sym_DASH, + ACTIONS(665), 1, + anon_sym_await, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1797), 1, + ACTIONS(1799), 1, anon_sym_not, - STATE(1003), 1, + STATE(853), 1, sym_python_string, - STATE(1051), 1, - sym_primary_expression, - STATE(1347), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1363), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(643), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(633), 4, + ACTIONS(661), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1379), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77346,52 +78068,52 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [54258] = 18, - ACTIONS(465), 1, - anon_sym_LBRACK, - ACTIONS(467), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(93), 1, + anon_sym_DASH, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(490), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(661), 1, - anon_sym_DASH, - ACTIONS(663), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(461), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(1165), 1, anon_sym_STAR, - ACTIONS(1799), 1, + ACTIONS(1801), 1, anon_sym_not, - STATE(868), 1, + STATE(833), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1336), 1, + STATE(890), 1, sym_primary_expression, + STATE(960), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(659), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(476), 4, + ACTIONS(111), 2, + anon_sym_type, + sym_identifier, + ACTIONS(459), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77409,52 +78131,52 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [54339] = 18, - ACTIONS(553), 1, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(569), 1, + ACTIONS(587), 1, anon_sym_await, - ACTIONS(575), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(1089), 1, + ACTIONS(1101), 1, anon_sym_STAR, - ACTIONS(1801), 1, + ACTIONS(1803), 1, anon_sym_not, - STATE(851), 1, + STATE(894), 1, sym_python_string, - STATE(959), 1, + STATE(956), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1320), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(571), 2, + ACTIONS(589), 2, anon_sym_type, sym_identifier, - ACTIONS(561), 4, + ACTIONS(579), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 6, + ACTIONS(591), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1223), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77472,52 +78194,52 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [54420] = 18, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(97), 1, - sym_ellipsis, - ACTIONS(113), 1, - sym_string_start, - ACTIONS(451), 1, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(453), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(520), 1, + ACTIONS(546), 1, + anon_sym_LBRACE, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(522), 1, + ACTIONS(556), 1, + sym_ellipsis, + ACTIONS(558), 1, anon_sym_await, - ACTIONS(1181), 1, + ACTIONS(564), 1, + sym_string_start, + ACTIONS(1091), 1, anon_sym_STAR, - ACTIONS(1803), 1, + ACTIONS(1805), 1, anon_sym_not, - STATE(834), 1, + STATE(840), 1, sym_python_string, - STATE(951), 1, + STATE(878), 1, sym_primary_expression, - STATE(989), 1, + STATE(1103), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(109), 2, - anon_sym_type, - sym_identifier, - ACTIONS(518), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(457), 4, + ACTIONS(560), 2, + anon_sym_type, + sym_identifier, + ACTIONS(550), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 6, + ACTIONS(562), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(971), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77535,52 +78257,52 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [54501] = 18, - ACTIONS(465), 1, - anon_sym_LBRACK, - ACTIONS(467), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(490), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(599), 1, anon_sym_DASH, - ACTIONS(655), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1183), 1, anon_sym_STAR, - ACTIONS(1805), 1, + ACTIONS(1807), 1, anon_sym_not, - STATE(868), 1, + STATE(833), 1, sym_python_string, - STATE(1014), 1, + STATE(931), 1, sym_primary_expression, - STATE(1260), 1, + STATE(960), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(486), 2, + ACTIONS(111), 2, anon_sym_type, sym_identifier, - ACTIONS(651), 2, + ACTIONS(597), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(476), 4, + ACTIONS(459), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77598,52 +78320,52 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [54582] = 18, - ACTIONS(577), 1, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(593), 1, + ACTIONS(534), 1, anon_sym_await, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(1171), 1, + ACTIONS(1147), 1, anon_sym_STAR, - ACTIONS(1807), 1, + ACTIONS(1809), 1, anon_sym_not, - STATE(850), 1, + STATE(889), 1, sym_python_string, - STATE(940), 1, + STATE(937), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1224), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(595), 2, + ACTIONS(536), 2, anon_sym_type, sym_identifier, - ACTIONS(585), 4, + ACTIONS(526), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 6, + ACTIONS(538), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77661,52 +78383,52 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [54663] = 18, - ACTIONS(492), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(504), 1, - anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(508), 1, - anon_sym_await, - ACTIONS(514), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(823), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(657), 1, + anon_sym_await, + ACTIONS(1287), 1, anon_sym_STAR, - ACTIONS(1809), 1, + ACTIONS(1811), 1, anon_sym_not, - STATE(841), 1, + STATE(853), 1, sym_python_string, - STATE(878), 1, + STATE(1140), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1269), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(510), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(500), 4, + ACTIONS(653), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1026), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77724,52 +78446,52 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [54744] = 18, - ACTIONS(43), 1, + ACTIONS(627), 1, + anon_sym_LBRACK, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(91), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(97), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(113), 1, - sym_string_start, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(459), 1, + ACTIONS(643), 1, anon_sym_await, - ACTIONS(1167), 1, + ACTIONS(649), 1, + sym_string_start, + ACTIONS(1097), 1, anon_sym_STAR, - ACTIONS(1811), 1, + ACTIONS(1813), 1, anon_sym_not, - STATE(834), 1, + STATE(859), 1, sym_python_string, - STATE(890), 1, + STATE(914), 1, sym_primary_expression, - STATE(989), 1, + STATE(1294), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(109), 2, + ACTIONS(645), 2, anon_sym_type, sym_identifier, - ACTIONS(457), 4, + ACTIONS(635), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 6, + ACTIONS(647), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(971), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77787,52 +78509,52 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [54825] = 18, - ACTIONS(601), 1, + ACTIONS(494), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(496), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(617), 1, + ACTIONS(510), 1, anon_sym_await, - ACTIONS(623), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(1133), 1, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(1813), 1, + ACTIONS(1815), 1, anon_sym_not, - STATE(857), 1, + STATE(844), 1, sym_python_string, - STATE(913), 1, + STATE(851), 1, sym_primary_expression, - STATE(1163), 1, + STATE(1133), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(619), 2, + ACTIONS(512), 2, anon_sym_type, sym_identifier, - ACTIONS(609), 4, + ACTIONS(502), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 6, + ACTIONS(514), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1283), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77850,52 +78572,52 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [54906] = 18, - ACTIONS(527), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(543), 1, + ACTIONS(619), 1, anon_sym_await, - ACTIONS(549), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(1095), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1815), 1, + ACTIONS(1817), 1, anon_sym_not, - STATE(838), 1, + STATE(952), 1, sym_python_string, - STATE(847), 1, + STATE(1075), 1, sym_primary_expression, - STATE(1136), 1, + STATE(1348), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(545), 2, + ACTIONS(621), 2, anon_sym_type, sym_identifier, - ACTIONS(535), 4, + ACTIONS(611), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 6, + ACTIONS(623), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1140), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77912,55 +78634,58 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [54987] = 17, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(97), 1, - sym_ellipsis, - ACTIONS(113), 1, - sym_string_start, - ACTIONS(451), 1, + [54987] = 20, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(453), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(520), 1, + ACTIONS(471), 1, + anon_sym_LBRACE, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(522), 1, - anon_sym_await, - ACTIONS(1181), 1, + ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, + sym_string_start, + ACTIONS(1745), 1, anon_sym_STAR, - STATE(834), 1, + ACTIONS(1821), 1, + anon_sym_await, + ACTIONS(1823), 1, + anon_sym_type, + ACTIONS(1825), 1, + sym_python_identifier, + STATE(853), 1, sym_python_string, - STATE(989), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1009), 1, + STATE(1435), 1, sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(109), 2, - anon_sym_type, - sym_identifier, - ACTIONS(518), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(457), 4, + STATE(1293), 2, + sym_attribute, + sym_subscript, + ACTIONS(1819), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 6, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - STATE(971), 16, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -77973,51 +78698,112 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [55065] = 17, - ACTIONS(43), 1, + [55071] = 17, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(91), 1, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(97), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(113), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(451), 1, - anon_sym_LBRACK, ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(459), 1, + ACTIONS(461), 1, anon_sym_await, - ACTIONS(1167), 1, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(834), 1, + STATE(833), 1, sym_python_string, - STATE(880), 1, + STATE(866), 1, sym_primary_expression, - STATE(989), 1, + STATE(960), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(109), 2, + ACTIONS(111), 2, + anon_sym_type, + sym_identifier, + ACTIONS(459), 4, + anon_sym_print, + anon_sym_exec, + anon_sym_async, + anon_sym_match, + ACTIONS(107), 6, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + sym_python_identifier, + STATE(964), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_generator_expression, + sym_parenthesized_expression, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_concatenated_string, + sym_await, + [55149] = 17, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, + anon_sym_LBRACE, + ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(492), 1, + sym_string_start, + ACTIONS(663), 1, + anon_sym_DASH, + ACTIONS(665), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_STAR, + STATE(853), 1, + sym_python_string, + STATE(1269), 1, + sym_list_splat_pattern, + STATE(1326), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(457), 4, + ACTIONS(661), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(971), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78034,51 +78820,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [55143] = 17, - ACTIONS(527), 1, + [55227] = 17, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(543), 1, + ACTIONS(643), 1, anon_sym_await, - ACTIONS(549), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(1095), 1, + ACTIONS(1097), 1, anon_sym_STAR, - STATE(838), 1, + STATE(859), 1, sym_python_string, - STATE(889), 1, + STATE(905), 1, sym_primary_expression, - STATE(1136), 1, + STATE(1294), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(545), 2, + ACTIONS(645), 2, anon_sym_type, sym_identifier, - ACTIONS(535), 4, + ACTIONS(635), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 6, + ACTIONS(647), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1140), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78095,56 +78881,56 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [55221] = 20, - ACTIONS(465), 1, - anon_sym_LBRACK, + [55305] = 20, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1745), 1, anon_sym_STAR, - ACTIONS(1819), 1, + ACTIONS(1829), 1, anon_sym_await, - ACTIONS(1821), 1, + ACTIONS(1831), 1, anon_sym_type, - ACTIONS(1823), 1, + ACTIONS(1833), 1, sym_python_identifier, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1446), 1, + STATE(1454), 1, sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1044), 2, + STATE(1261), 2, sym_attribute, sym_subscript, - ACTIONS(1817), 4, + ACTIONS(1827), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -78159,51 +78945,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [55305] = 17, - ACTIONS(43), 1, + [55389] = 17, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(97), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(113), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(520), 1, + ACTIONS(663), 1, anon_sym_DASH, - ACTIONS(522), 1, + ACTIONS(665), 1, anon_sym_await, - ACTIONS(1181), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(834), 1, + STATE(853), 1, sym_python_string, - STATE(942), 1, - sym_primary_expression, - STATE(989), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1375), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(109), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(518), 2, + ACTIONS(661), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(457), 4, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(971), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78220,56 +79006,56 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [55383] = 20, - ACTIONS(465), 1, - anon_sym_LBRACK, + [55467] = 20, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1745), 1, anon_sym_STAR, - ACTIONS(1827), 1, + ACTIONS(1837), 1, anon_sym_await, - ACTIONS(1829), 1, + ACTIONS(1839), 1, anon_sym_type, - ACTIONS(1831), 1, + ACTIONS(1841), 1, sym_python_identifier, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1468), 1, + STATE(1439), 1, sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1255), 2, + STATE(976), 2, sym_attribute, sym_subscript, - ACTIONS(1825), 4, + ACTIONS(1835), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -78284,51 +79070,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [55467] = 17, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(97), 1, - sym_ellipsis, - ACTIONS(113), 1, - sym_string_start, - ACTIONS(451), 1, + [55551] = 17, + ACTIONS(494), 1, anon_sym_LBRACK, - ACTIONS(453), 1, + ACTIONS(496), 1, anon_sym_LPAREN, - ACTIONS(520), 1, + ACTIONS(498), 1, + anon_sym_LBRACE, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(522), 1, + ACTIONS(508), 1, + sym_ellipsis, + ACTIONS(510), 1, anon_sym_await, - ACTIONS(1181), 1, + ACTIONS(516), 1, + sym_string_start, + ACTIONS(825), 1, anon_sym_STAR, - STATE(834), 1, + STATE(844), 1, sym_python_string, - STATE(947), 1, + STATE(849), 1, sym_primary_expression, - STATE(989), 1, + STATE(1133), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(109), 2, - anon_sym_type, - sym_identifier, - ACTIONS(518), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(457), 4, + ACTIONS(512), 2, + anon_sym_type, + sym_identifier, + ACTIONS(502), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 6, + ACTIONS(514), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(971), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78345,58 +79131,55 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [55545] = 20, - ACTIONS(465), 1, + [55629] = 17, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, + ACTIONS(643), 1, + anon_sym_await, + ACTIONS(649), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1097), 1, anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym_await, - ACTIONS(1837), 1, - anon_sym_type, - ACTIONS(1839), 1, - sym_python_identifier, - STATE(868), 1, + STATE(859), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1441), 1, + STATE(951), 1, sym_primary_expression, + STATE(1294), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(991), 2, - sym_attribute, - sym_subscript, - ACTIONS(1833), 4, + ACTIONS(645), 2, + anon_sym_type, + sym_identifier, + ACTIONS(635), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(647), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + sym_python_identifier, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -78409,58 +79192,55 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [55629] = 20, - ACTIONS(465), 1, + [55707] = 17, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, + ACTIONS(619), 1, + anon_sym_await, + ACTIONS(625), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1843), 1, - anon_sym_await, - ACTIONS(1845), 1, - anon_sym_type, - ACTIONS(1847), 1, - sym_python_identifier, - STATE(868), 1, + STATE(952), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1452), 1, + STATE(1150), 1, sym_primary_expression, + STATE(1348), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1327), 2, - sym_attribute, - sym_subscript, - ACTIONS(1841), 4, + ACTIONS(621), 2, + anon_sym_type, + sym_identifier, + ACTIONS(611), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(623), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + sym_python_identifier, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -78473,51 +79253,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [55713] = 17, - ACTIONS(492), 1, - anon_sym_LBRACK, - ACTIONS(494), 1, - anon_sym_LPAREN, - ACTIONS(496), 1, + [55785] = 17, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(508), 1, - anon_sym_await, - ACTIONS(514), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(823), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(461), 1, + anon_sym_await, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(841), 1, + STATE(833), 1, sym_python_string, - STATE(897), 1, + STATE(890), 1, sym_primary_expression, - STATE(1028), 1, + STATE(960), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(510), 2, + ACTIONS(111), 2, anon_sym_type, sym_identifier, - ACTIONS(500), 4, + ACTIONS(459), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1026), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78534,58 +79314,55 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [55791] = 20, - ACTIONS(465), 1, - anon_sym_LBRACK, - ACTIONS(467), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, + [55863] = 17, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(1727), 1, - anon_sym_STAR, - ACTIONS(1851), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(461), 1, anon_sym_await, - ACTIONS(1853), 1, - anon_sym_type, - ACTIONS(1855), 1, - sym_python_identifier, - STATE(868), 1, + ACTIONS(1165), 1, + anon_sym_STAR, + STATE(833), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1443), 1, + STATE(867), 1, sym_primary_expression, + STATE(960), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(563), 2, - sym_attribute, - sym_subscript, - ACTIONS(1849), 4, + ACTIONS(111), 2, + anon_sym_type, + sym_identifier, + ACTIONS(459), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + sym_python_identifier, + STATE(964), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -78598,51 +79375,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [55875] = 17, - ACTIONS(601), 1, - anon_sym_LBRACK, - ACTIONS(603), 1, - anon_sym_LPAREN, - ACTIONS(605), 1, + [55941] = 17, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(617), 1, - anon_sym_await, - ACTIONS(623), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(1133), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(461), 1, + anon_sym_await, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(857), 1, + STATE(833), 1, sym_python_string, - STATE(949), 1, + STATE(863), 1, sym_primary_expression, - STATE(1163), 1, + STATE(960), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(619), 2, + ACTIONS(111), 2, anon_sym_type, sym_identifier, - ACTIONS(609), 4, + ACTIONS(459), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1283), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78659,55 +79436,58 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [55953] = 17, - ACTIONS(492), 1, + [56019] = 20, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(508), 1, - anon_sym_await, - ACTIONS(514), 1, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, sym_string_start, - ACTIONS(823), 1, + ACTIONS(1745), 1, anon_sym_STAR, - STATE(841), 1, + ACTIONS(1845), 1, + anon_sym_await, + ACTIONS(1847), 1, + anon_sym_type, + ACTIONS(1849), 1, + sym_python_identifier, + STATE(853), 1, sym_python_string, - STATE(900), 1, - sym_primary_expression, - STATE(1028), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1450), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(510), 2, - anon_sym_type, - sym_identifier, - ACTIONS(500), 4, + STATE(564), 2, + sym_attribute, + sym_subscript, + ACTIONS(1843), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 6, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - STATE(1026), 16, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -78720,55 +79500,58 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [56031] = 17, - ACTIONS(577), 1, + [56103] = 20, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(593), 1, - anon_sym_await, - ACTIONS(599), 1, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1171), 1, + ACTIONS(1745), 1, anon_sym_STAR, - STATE(850), 1, + ACTIONS(1853), 1, + anon_sym_await, + ACTIONS(1855), 1, + anon_sym_type, + ACTIONS(1857), 1, + sym_python_identifier, + STATE(853), 1, sym_python_string, - STATE(935), 1, - sym_primary_expression, - STATE(1193), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1477), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(595), 2, - anon_sym_type, - sym_identifier, - ACTIONS(585), 4, + STATE(1356), 2, + sym_attribute, + sym_subscript, + ACTIONS(1851), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 6, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - STATE(1222), 16, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -78781,56 +79564,56 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [56109] = 20, - ACTIONS(465), 1, - anon_sym_LBRACK, + [56187] = 20, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1745), 1, anon_sym_STAR, - ACTIONS(1859), 1, - anon_sym_await, ACTIONS(1861), 1, - anon_sym_type, + anon_sym_await, ACTIONS(1863), 1, + anon_sym_type, + ACTIONS(1865), 1, sym_python_identifier, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1451), 1, + STATE(1477), 1, sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1293), 2, + STATE(1240), 2, sym_attribute, sym_subscript, - ACTIONS(1857), 4, + ACTIONS(1859), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -78845,56 +79628,117 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [56193] = 20, - ACTIONS(465), 1, + [56271] = 17, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(544), 1, anon_sym_LPAREN, + ACTIONS(546), 1, + anon_sym_LBRACE, + ACTIONS(554), 1, + anon_sym_DASH, + ACTIONS(556), 1, + sym_ellipsis, + ACTIONS(558), 1, + anon_sym_await, + ACTIONS(564), 1, + sym_string_start, + ACTIONS(1091), 1, + anon_sym_STAR, + STATE(840), 1, + sym_python_string, + STATE(880), 1, + sym_primary_expression, + STATE(1103), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(552), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(560), 2, + anon_sym_type, + sym_identifier, + ACTIONS(550), 4, + anon_sym_print, + anon_sym_exec, + anon_sym_async, + anon_sym_match, + ACTIONS(562), 6, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + sym_python_identifier, + STATE(1111), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_generator_expression, + sym_parenthesized_expression, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_concatenated_string, + sym_await, + [56349] = 20, + ACTIONS(467), 1, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1745), 1, anon_sym_STAR, - ACTIONS(1867), 1, - anon_sym_await, ACTIONS(1869), 1, - anon_sym_type, + anon_sym_await, ACTIONS(1871), 1, + anon_sym_type, + ACTIONS(1873), 1, sym_python_identifier, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1473), 1, + STATE(1460), 1, sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1390), 2, + STATE(1385), 2, sym_attribute, sym_subscript, - ACTIONS(1865), 4, + ACTIONS(1867), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -78909,51 +79753,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [56277] = 17, - ACTIONS(601), 1, + [56433] = 17, + ACTIONS(494), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(496), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(617), 1, + ACTIONS(510), 1, anon_sym_await, - ACTIONS(623), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(1133), 1, + ACTIONS(825), 1, anon_sym_STAR, - STATE(857), 1, + STATE(844), 1, sym_python_string, - STATE(948), 1, + STATE(850), 1, sym_primary_expression, - STATE(1163), 1, + STATE(1133), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(619), 2, + ACTIONS(512), 2, anon_sym_type, sym_identifier, - ACTIONS(609), 4, + ACTIONS(502), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 6, + ACTIONS(514), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1283), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78970,58 +79814,55 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [56355] = 20, - ACTIONS(465), 1, + [56511] = 17, + ACTIONS(494), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(496), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, + ACTIONS(510), 1, + anon_sym_await, + ACTIONS(516), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(825), 1, anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym_await, - ACTIONS(1837), 1, - anon_sym_type, - ACTIONS(1873), 1, - sym_python_identifier, - STATE(868), 1, + STATE(844), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1441), 1, + STATE(851), 1, sym_primary_expression, + STATE(1133), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(991), 2, - sym_attribute, - sym_subscript, - ACTIONS(1833), 4, + ACTIONS(512), 2, + anon_sym_type, + sym_identifier, + ACTIONS(502), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(514), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + sym_python_identifier, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -79034,56 +79875,56 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [56439] = 20, - ACTIONS(465), 1, - anon_sym_LBRACK, + [56589] = 20, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1745), 1, anon_sym_STAR, - ACTIONS(1837), 1, + ACTIONS(1877), 1, + anon_sym_await, + ACTIONS(1879), 1, anon_sym_type, - ACTIONS(1873), 1, + ACTIONS(1881), 1, sym_python_identifier, - ACTIONS(1875), 1, - anon_sym_await, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1441), 1, + STATE(1451), 1, sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(991), 2, + STATE(1070), 2, sym_attribute, sym_subscript, - ACTIONS(1833), 4, + ACTIONS(1875), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -79098,51 +79939,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [56523] = 17, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(97), 1, - sym_ellipsis, - ACTIONS(113), 1, - sym_string_start, - ACTIONS(451), 1, + [56673] = 17, + ACTIONS(494), 1, anon_sym_LBRACK, - ACTIONS(453), 1, + ACTIONS(496), 1, anon_sym_LPAREN, - ACTIONS(520), 1, + ACTIONS(498), 1, + anon_sym_LBRACE, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(522), 1, + ACTIONS(508), 1, + sym_ellipsis, + ACTIONS(510), 1, anon_sym_await, - ACTIONS(1181), 1, + ACTIONS(516), 1, + sym_string_start, + ACTIONS(825), 1, anon_sym_STAR, - STATE(834), 1, + STATE(844), 1, sym_python_string, - STATE(989), 1, - sym_list_splat_pattern, - STATE(1008), 1, + STATE(845), 1, sym_primary_expression, + STATE(1133), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(109), 2, - anon_sym_type, - sym_identifier, - ACTIONS(518), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(457), 4, + ACTIONS(512), 2, + anon_sym_type, + sym_identifier, + ACTIONS(502), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 6, + ACTIONS(514), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(971), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79159,51 +80000,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [56601] = 17, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(97), 1, - sym_ellipsis, - ACTIONS(113), 1, - sym_string_start, - ACTIONS(451), 1, + [56751] = 17, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(453), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(520), 1, + ACTIONS(546), 1, + anon_sym_LBRACE, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(522), 1, + ACTIONS(556), 1, + sym_ellipsis, + ACTIONS(558), 1, anon_sym_await, - ACTIONS(1181), 1, + ACTIONS(564), 1, + sym_string_start, + ACTIONS(1091), 1, anon_sym_STAR, - STATE(834), 1, + STATE(840), 1, sym_python_string, - STATE(989), 1, - sym_list_splat_pattern, - STATE(1006), 1, + STATE(898), 1, sym_primary_expression, + STATE(1103), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(109), 2, - anon_sym_type, - sym_identifier, - ACTIONS(518), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(457), 4, + ACTIONS(560), 2, + anon_sym_type, + sym_identifier, + ACTIONS(550), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 6, + ACTIONS(562), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(971), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79220,51 +80061,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [56679] = 17, - ACTIONS(577), 1, + [56829] = 17, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(593), 1, + ACTIONS(643), 1, anon_sym_await, - ACTIONS(599), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(1171), 1, + ACTIONS(1097), 1, anon_sym_STAR, - STATE(850), 1, + STATE(859), 1, sym_python_string, - STATE(937), 1, + STATE(950), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1294), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(595), 2, + ACTIONS(645), 2, anon_sym_type, sym_identifier, - ACTIONS(585), 4, + ACTIONS(635), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 6, + ACTIONS(647), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1222), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79281,55 +80122,58 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [56757] = 17, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(97), 1, - sym_ellipsis, - ACTIONS(113), 1, - sym_string_start, - ACTIONS(451), 1, + [56907] = 20, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(453), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(520), 1, + ACTIONS(471), 1, + anon_sym_LBRACE, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(522), 1, - anon_sym_await, - ACTIONS(1181), 1, + ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, + sym_string_start, + ACTIONS(1745), 1, anon_sym_STAR, - STATE(834), 1, + ACTIONS(1839), 1, + anon_sym_type, + ACTIONS(1883), 1, + anon_sym_await, + ACTIONS(1885), 1, + sym_python_identifier, + STATE(853), 1, sym_python_string, - STATE(989), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1005), 1, + STATE(1439), 1, sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(109), 2, - anon_sym_type, - sym_identifier, - ACTIONS(518), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(457), 4, + STATE(976), 2, + sym_attribute, + sym_subscript, + ACTIONS(1835), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 6, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - STATE(971), 16, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -79342,51 +80186,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [56835] = 17, - ACTIONS(43), 1, + [56991] = 17, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(97), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(113), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(451), 1, - anon_sym_LBRACK, ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(520), 1, + ACTIONS(599), 1, anon_sym_DASH, - ACTIONS(522), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(1181), 1, + ACTIONS(1183), 1, anon_sym_STAR, - STATE(834), 1, + STATE(833), 1, sym_python_string, - STATE(989), 1, - sym_list_splat_pattern, - STATE(1004), 1, + STATE(931), 1, sym_primary_expression, + STATE(960), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(109), 2, + ACTIONS(111), 2, anon_sym_type, sym_identifier, - ACTIONS(518), 2, + ACTIONS(597), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(457), 4, + ACTIONS(459), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(971), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79403,51 +80247,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [56913] = 17, - ACTIONS(527), 1, + [57069] = 17, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(543), 1, + ACTIONS(534), 1, anon_sym_await, - ACTIONS(549), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(1095), 1, + ACTIONS(1147), 1, anon_sym_STAR, - STATE(838), 1, + STATE(889), 1, sym_python_string, - STATE(898), 1, + STATE(937), 1, sym_primary_expression, - STATE(1136), 1, + STATE(1224), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(545), 2, + ACTIONS(536), 2, anon_sym_type, sym_identifier, - ACTIONS(535), 4, + ACTIONS(526), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 6, + ACTIONS(538), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1140), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79464,51 +80308,112 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [56991] = 17, - ACTIONS(43), 1, + [57147] = 17, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(97), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(113), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(451), 1, - anon_sym_LBRACK, ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(520), 1, + ACTIONS(599), 1, anon_sym_DASH, - ACTIONS(522), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(1181), 1, + ACTIONS(1183), 1, anon_sym_STAR, - STATE(834), 1, + STATE(833), 1, sym_python_string, - STATE(989), 1, + STATE(923), 1, + sym_primary_expression, + STATE(960), 1, sym_list_splat_pattern, - STATE(1002), 1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(111), 2, + anon_sym_type, + sym_identifier, + ACTIONS(597), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(459), 4, + anon_sym_print, + anon_sym_exec, + anon_sym_async, + anon_sym_match, + ACTIONS(107), 6, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + sym_python_identifier, + STATE(964), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_generator_expression, + sym_parenthesized_expression, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_concatenated_string, + sym_await, + [57225] = 17, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(99), 1, + sym_ellipsis, + ACTIONS(115), 1, + sym_string_start, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(599), 1, + anon_sym_DASH, + ACTIONS(601), 1, + anon_sym_await, + ACTIONS(1183), 1, + anon_sym_STAR, + STATE(833), 1, + sym_python_string, + STATE(922), 1, sym_primary_expression, + STATE(960), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(109), 2, + ACTIONS(111), 2, anon_sym_type, sym_identifier, - ACTIONS(518), 2, + ACTIONS(597), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(457), 4, + ACTIONS(459), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(971), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79525,51 +80430,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [57069] = 17, - ACTIONS(527), 1, + [57303] = 17, + ACTIONS(494), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(496), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(543), 1, + ACTIONS(510), 1, anon_sym_await, - ACTIONS(549), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(1095), 1, + ACTIONS(825), 1, anon_sym_STAR, - STATE(838), 1, + STATE(844), 1, sym_python_string, - STATE(901), 1, + STATE(871), 1, sym_primary_expression, - STATE(1136), 1, + STATE(1133), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(545), 2, + ACTIONS(512), 2, anon_sym_type, sym_identifier, - ACTIONS(535), 4, + ACTIONS(502), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 6, + ACTIONS(514), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1140), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79586,51 +80491,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [57147] = 17, - ACTIONS(465), 1, + [57381] = 17, + ACTIONS(494), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(496), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(484), 1, + ACTIONS(510), 1, anon_sym_await, - ACTIONS(490), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(825), 1, anon_sym_STAR, - STATE(868), 1, + STATE(844), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1476), 1, + STATE(854), 1, sym_primary_expression, + STATE(1133), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(486), 2, + ACTIONS(512), 2, anon_sym_type, sym_identifier, - ACTIONS(476), 4, + ACTIONS(502), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(514), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79647,51 +80552,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [57225] = 17, - ACTIONS(553), 1, + [57459] = 17, + ACTIONS(494), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(496), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(569), 1, + ACTIONS(510), 1, anon_sym_await, - ACTIONS(575), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(1089), 1, + ACTIONS(825), 1, anon_sym_STAR, - STATE(851), 1, + STATE(844), 1, sym_python_string, - STATE(956), 1, + STATE(855), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1133), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(571), 2, + ACTIONS(512), 2, anon_sym_type, sym_identifier, - ACTIONS(561), 4, + ACTIONS(502), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 6, + ACTIONS(514), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1223), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79708,51 +80613,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [57303] = 17, - ACTIONS(553), 1, + [57537] = 17, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(569), 1, + ACTIONS(587), 1, anon_sym_await, - ACTIONS(575), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(1089), 1, + ACTIONS(1101), 1, anon_sym_STAR, - STATE(851), 1, + STATE(894), 1, sym_python_string, - STATE(957), 1, + STATE(945), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1320), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(571), 2, + ACTIONS(589), 2, anon_sym_type, sym_identifier, - ACTIONS(561), 4, + ACTIONS(579), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 6, + ACTIONS(591), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1223), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79769,51 +80674,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [57381] = 17, - ACTIONS(553), 1, + [57615] = 17, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(569), 1, - anon_sym_await, - ACTIONS(575), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1089), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(657), 1, + anon_sym_await, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(851), 1, + STATE(853), 1, sym_python_string, - STATE(959), 1, + STATE(1142), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1269), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(571), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(561), 4, + ACTIONS(653), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1223), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79830,55 +80735,58 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [57459] = 17, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(97), 1, - sym_ellipsis, - ACTIONS(113), 1, - sym_string_start, - ACTIONS(451), 1, + [57693] = 20, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(453), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(520), 1, + ACTIONS(471), 1, + anon_sym_LBRACE, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(522), 1, - anon_sym_await, - ACTIONS(1181), 1, + ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, + sym_string_start, + ACTIONS(1745), 1, anon_sym_STAR, - STATE(834), 1, + ACTIONS(1889), 1, + anon_sym_await, + ACTIONS(1891), 1, + anon_sym_type, + ACTIONS(1893), 1, + sym_python_identifier, + STATE(853), 1, sym_python_string, - STATE(951), 1, - sym_primary_expression, - STATE(989), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1482), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(109), 2, - anon_sym_type, - sym_identifier, - ACTIONS(518), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(457), 4, + STATE(1178), 2, + sym_attribute, + sym_subscript, + ACTIONS(1887), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 6, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - STATE(971), 16, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -79891,51 +80799,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [57537] = 17, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(97), 1, - sym_ellipsis, - ACTIONS(113), 1, - sym_string_start, - ACTIONS(451), 1, + [57777] = 17, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(453), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(520), 1, + ACTIONS(471), 1, + anon_sym_LBRACE, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(522), 1, + ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(486), 1, anon_sym_await, - ACTIONS(1181), 1, + ACTIONS(492), 1, + sym_string_start, + ACTIONS(1745), 1, anon_sym_STAR, - STATE(834), 1, + STATE(853), 1, sym_python_string, - STATE(953), 1, - sym_primary_expression, - STATE(989), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1453), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(109), 2, - anon_sym_type, - sym_identifier, - ACTIONS(518), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(457), 4, + ACTIONS(488), 2, + anon_sym_type, + sym_identifier, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(971), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79952,58 +80860,55 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [57615] = 20, - ACTIONS(465), 1, + [57855] = 17, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, + ACTIONS(587), 1, + anon_sym_await, + ACTIONS(593), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1101), 1, anon_sym_STAR, - ACTIONS(1829), 1, - anon_sym_type, - ACTIONS(1831), 1, - sym_python_identifier, - ACTIONS(1877), 1, - anon_sym_await, - STATE(868), 1, + STATE(894), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1468), 1, + STATE(916), 1, sym_primary_expression, + STATE(1320), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1255), 2, - sym_attribute, - sym_subscript, - ACTIONS(1825), 4, + ACTIONS(589), 2, + anon_sym_type, + sym_identifier, + ACTIONS(579), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(591), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + sym_python_identifier, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -80016,51 +80921,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [57699] = 17, - ACTIONS(577), 1, + [57933] = 17, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(593), 1, + ACTIONS(619), 1, anon_sym_await, - ACTIONS(599), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(1171), 1, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(850), 1, + STATE(952), 1, sym_python_string, - STATE(930), 1, + STATE(1148), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1348), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(595), 2, + ACTIONS(621), 2, anon_sym_type, sym_identifier, - ACTIONS(585), 4, + ACTIONS(611), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 6, + ACTIONS(623), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1222), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80077,51 +80982,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [57777] = 17, - ACTIONS(577), 1, + [58011] = 17, + ACTIONS(494), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(496), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(593), 1, + ACTIONS(510), 1, anon_sym_await, - ACTIONS(599), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(1171), 1, + ACTIONS(825), 1, anon_sym_STAR, - STATE(850), 1, + STATE(844), 1, sym_python_string, - STATE(918), 1, + STATE(856), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1133), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(595), 2, + ACTIONS(512), 2, anon_sym_type, sym_identifier, - ACTIONS(585), 4, + ACTIONS(502), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 6, + ACTIONS(514), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1222), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80138,55 +81043,58 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [57855] = 17, - ACTIONS(553), 1, + [58089] = 20, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(569), 1, - anon_sym_await, - ACTIONS(575), 1, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1089), 1, + ACTIONS(1745), 1, anon_sym_STAR, - STATE(851), 1, + ACTIONS(1837), 1, + anon_sym_await, + ACTIONS(1839), 1, + anon_sym_type, + ACTIONS(1885), 1, + sym_python_identifier, + STATE(853), 1, sym_python_string, - STATE(960), 1, - sym_primary_expression, - STATE(1172), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1439), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(571), 2, - anon_sym_type, - sym_identifier, - ACTIONS(561), 4, + STATE(976), 2, + sym_attribute, + sym_subscript, + ACTIONS(1835), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 6, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - STATE(1223), 16, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -80199,55 +81107,58 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [57933] = 17, - ACTIONS(527), 1, + [58173] = 20, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(543), 1, - anon_sym_await, - ACTIONS(549), 1, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1095), 1, + ACTIONS(1745), 1, anon_sym_STAR, - STATE(838), 1, + ACTIONS(1831), 1, + anon_sym_type, + ACTIONS(1833), 1, + sym_python_identifier, + ACTIONS(1895), 1, + anon_sym_await, + STATE(853), 1, sym_python_string, - STATE(854), 1, - sym_primary_expression, - STATE(1136), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1454), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(545), 2, - anon_sym_type, - sym_identifier, - ACTIONS(535), 4, + STATE(1261), 2, + sym_attribute, + sym_subscript, + ACTIONS(1827), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 6, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - STATE(1140), 16, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -80260,55 +81171,58 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [58011] = 17, - ACTIONS(553), 1, + [58257] = 20, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(569), 1, - anon_sym_await, - ACTIONS(575), 1, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1089), 1, + ACTIONS(1745), 1, anon_sym_STAR, - STATE(851), 1, + ACTIONS(1847), 1, + anon_sym_type, + ACTIONS(1897), 1, + anon_sym_await, + ACTIONS(1899), 1, + sym_python_identifier, + STATE(853), 1, sym_python_string, - STATE(962), 1, - sym_primary_expression, - STATE(1172), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1450), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(571), 2, - anon_sym_type, - sym_identifier, - ACTIONS(561), 4, + STATE(564), 2, + sym_attribute, + sym_subscript, + ACTIONS(1843), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 6, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - STATE(1223), 16, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -80321,51 +81235,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [58089] = 17, - ACTIONS(625), 1, + [58341] = 17, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(641), 1, + ACTIONS(587), 1, anon_sym_await, - ACTIONS(647), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(1191), 1, + ACTIONS(1101), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(894), 1, sym_python_string, - STATE(1039), 1, + STATE(979), 1, sym_primary_expression, - STATE(1347), 1, + STATE(1320), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(643), 2, + ACTIONS(589), 2, anon_sym_type, sym_identifier, - ACTIONS(633), 4, + ACTIONS(579), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 6, + ACTIONS(591), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1379), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80382,51 +81296,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [58167] = 17, - ACTIONS(625), 1, + [58419] = 17, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(641), 1, + ACTIONS(619), 1, anon_sym_await, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1023), 1, + STATE(1137), 1, sym_primary_expression, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(643), 2, + ACTIONS(621), 2, anon_sym_type, sym_identifier, - ACTIONS(633), 4, + ACTIONS(611), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 6, + ACTIONS(623), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80443,51 +81357,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [58245] = 17, - ACTIONS(553), 1, + [58497] = 17, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(569), 1, - anon_sym_await, - ACTIONS(575), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1089), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(657), 1, + anon_sym_await, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(851), 1, + STATE(853), 1, sym_python_string, - STATE(963), 1, + STATE(1127), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1269), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(571), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(561), 4, + ACTIONS(653), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1223), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80504,55 +81418,58 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [58323] = 17, - ACTIONS(553), 1, + [58575] = 20, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(569), 1, - anon_sym_await, - ACTIONS(575), 1, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1089), 1, + ACTIONS(1745), 1, anon_sym_STAR, - STATE(851), 1, + ACTIONS(1855), 1, + anon_sym_type, + ACTIONS(1857), 1, + sym_python_identifier, + ACTIONS(1901), 1, + anon_sym_await, + STATE(853), 1, sym_python_string, - STATE(965), 1, - sym_primary_expression, - STATE(1172), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1466), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(571), 2, - anon_sym_type, - sym_identifier, - ACTIONS(561), 4, + STATE(1356), 2, + sym_attribute, + sym_subscript, + ACTIONS(1851), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 6, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - STATE(1223), 16, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -80565,58 +81482,55 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [58401] = 20, - ACTIONS(465), 1, - anon_sym_LBRACK, + [58659] = 17, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, - anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1727), 1, - anon_sym_STAR, - ACTIONS(1829), 1, - anon_sym_type, - ACTIONS(1831), 1, - sym_python_identifier, - ACTIONS(1879), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(657), 1, anon_sym_await, - STATE(868), 1, + ACTIONS(1287), 1, + anon_sym_STAR, + STATE(853), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1468), 1, + STATE(1126), 1, sym_primary_expression, + STATE(1269), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(488), 2, + anon_sym_type, + sym_identifier, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1255), 2, - sym_attribute, - sym_subscript, - ACTIONS(1825), 4, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + sym_python_identifier, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -80629,51 +81543,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [58485] = 17, - ACTIONS(601), 1, + [58737] = 17, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(613), 1, - anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(617), 1, - anon_sym_await, - ACTIONS(623), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1133), 1, + ACTIONS(663), 1, + anon_sym_DASH, + ACTIONS(665), 1, + anon_sym_await, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(857), 1, + STATE(853), 1, sym_python_string, - STATE(958), 1, - sym_primary_expression, - STATE(1163), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1328), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(619), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(609), 4, + ACTIONS(661), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1283), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80690,51 +81604,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [58563] = 17, - ACTIONS(553), 1, + [58815] = 17, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(569), 1, - anon_sym_await, - ACTIONS(575), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1089), 1, + ACTIONS(663), 1, + anon_sym_DASH, + ACTIONS(665), 1, + anon_sym_await, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(851), 1, + STATE(853), 1, sym_python_string, - STATE(966), 1, - sym_primary_expression, - STATE(1172), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1331), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(571), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(561), 4, + ACTIONS(661), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1223), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80751,58 +81665,55 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [58641] = 20, - ACTIONS(465), 1, + [58893] = 17, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, + ACTIONS(587), 1, + anon_sym_await, + ACTIONS(593), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1101), 1, anon_sym_STAR, - ACTIONS(1845), 1, - anon_sym_type, - ACTIONS(1881), 1, - anon_sym_await, - ACTIONS(1883), 1, - sym_python_identifier, - STATE(868), 1, + STATE(894), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1459), 1, + STATE(958), 1, sym_primary_expression, + STATE(1320), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1327), 2, - sym_attribute, - sym_subscript, - ACTIONS(1841), 4, + ACTIONS(589), 2, + anon_sym_type, + sym_identifier, + ACTIONS(579), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(591), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + sym_python_identifier, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -80815,58 +81726,55 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [58725] = 20, - ACTIONS(465), 1, + [58971] = 17, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, + ACTIONS(619), 1, + anon_sym_await, + ACTIONS(625), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1151), 1, anon_sym_STAR, - ACTIONS(1887), 1, - anon_sym_await, - ACTIONS(1889), 1, - anon_sym_type, - ACTIONS(1891), 1, - sym_python_identifier, - STATE(868), 1, + STATE(952), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1468), 1, + STATE(1104), 1, sym_primary_expression, + STATE(1348), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1477), 2, - sym_attribute, - sym_subscript, - ACTIONS(1885), 4, + ACTIONS(621), 2, + anon_sym_type, + sym_identifier, + ACTIONS(611), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(623), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + sym_python_identifier, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -80879,51 +81787,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [58809] = 17, - ACTIONS(43), 1, + [59049] = 17, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(97), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(113), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(451), 1, - anon_sym_LBRACK, ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(520), 1, + ACTIONS(599), 1, anon_sym_DASH, - ACTIONS(522), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(1181), 1, + ACTIONS(1183), 1, anon_sym_STAR, - STATE(834), 1, + STATE(833), 1, sym_python_string, - STATE(989), 1, - sym_list_splat_pattern, - STATE(996), 1, + STATE(934), 1, sym_primary_expression, + STATE(960), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(109), 2, + ACTIONS(111), 2, anon_sym_type, sym_identifier, - ACTIONS(518), 2, + ACTIONS(597), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(457), 4, + ACTIONS(459), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(971), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80940,55 +81848,58 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [58887] = 17, - ACTIONS(625), 1, + [59127] = 20, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(641), 1, - anon_sym_await, - ACTIONS(647), 1, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1191), 1, + ACTIONS(1745), 1, anon_sym_STAR, - STATE(1003), 1, + ACTIONS(1855), 1, + anon_sym_type, + ACTIONS(1901), 1, + anon_sym_await, + ACTIONS(1903), 1, + sym_python_identifier, + STATE(853), 1, sym_python_string, - STATE(1025), 1, - sym_primary_expression, - STATE(1347), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1466), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(643), 2, - anon_sym_type, - sym_identifier, - ACTIONS(633), 4, + STATE(1356), 2, + sym_attribute, + sym_subscript, + ACTIONS(1851), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 6, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - STATE(1379), 16, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -81001,51 +81912,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [58965] = 17, - ACTIONS(625), 1, + [59211] = 17, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(641), 1, + ACTIONS(619), 1, anon_sym_await, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1040), 1, + STATE(1102), 1, sym_primary_expression, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(643), 2, + ACTIONS(621), 2, anon_sym_type, sym_identifier, - ACTIONS(633), 4, + ACTIONS(611), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 6, + ACTIONS(623), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81062,51 +81973,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [59043] = 17, - ACTIONS(465), 1, - anon_sym_LBRACK, + [59289] = 17, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(663), 1, anon_sym_DASH, - ACTIONS(655), 1, + ACTIONS(665), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1119), 1, - sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1336), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(486), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(651), 2, + ACTIONS(661), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(476), 4, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81123,58 +82034,55 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [59121] = 20, - ACTIONS(465), 1, - anon_sym_LBRACK, + [59367] = 17, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, - anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1727), 1, - anon_sym_STAR, - ACTIONS(1853), 1, - anon_sym_type, - ACTIONS(1855), 1, - sym_python_identifier, - ACTIONS(1893), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(657), 1, anon_sym_await, - STATE(868), 1, + ACTIONS(1287), 1, + anon_sym_STAR, + STATE(853), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1443), 1, + STATE(1123), 1, sym_primary_expression, + STATE(1269), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(488), 2, + anon_sym_type, + sym_identifier, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(563), 2, - sym_attribute, - sym_subscript, - ACTIONS(1849), 4, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + sym_python_identifier, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -81187,51 +82095,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [59205] = 17, - ACTIONS(577), 1, + [59445] = 17, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(593), 1, + ACTIONS(534), 1, anon_sym_await, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(1171), 1, + ACTIONS(1147), 1, anon_sym_STAR, - STATE(850), 1, + STATE(889), 1, sym_python_string, - STATE(964), 1, + STATE(997), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1224), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(595), 2, + ACTIONS(536), 2, anon_sym_type, sym_identifier, - ACTIONS(585), 4, + ACTIONS(526), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 6, + ACTIONS(538), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81248,58 +82156,55 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [59283] = 20, - ACTIONS(465), 1, + [59523] = 17, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, + ACTIONS(534), 1, + anon_sym_await, + ACTIONS(540), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1147), 1, anon_sym_STAR, - ACTIONS(1897), 1, - anon_sym_await, - ACTIONS(1899), 1, - anon_sym_type, - ACTIONS(1901), 1, - sym_python_identifier, - STATE(868), 1, + STATE(889), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1444), 1, + STATE(1003), 1, sym_primary_expression, + STATE(1224), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1147), 2, - sym_attribute, - sym_subscript, - ACTIONS(1895), 4, + ACTIONS(536), 2, + anon_sym_type, + sym_identifier, + ACTIONS(526), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(538), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + sym_python_identifier, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -81312,58 +82217,55 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [59367] = 20, - ACTIONS(465), 1, - anon_sym_LBRACK, + [59601] = 17, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, - anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1727), 1, - anon_sym_STAR, - ACTIONS(1905), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(657), 1, anon_sym_await, - ACTIONS(1907), 1, - anon_sym_type, - ACTIONS(1909), 1, - sym_python_identifier, - STATE(868), 1, + ACTIONS(1287), 1, + anon_sym_STAR, + STATE(853), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1467), 1, + STATE(1120), 1, sym_primary_expression, + STATE(1269), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(488), 2, + anon_sym_type, + sym_identifier, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1431), 2, - sym_attribute, - sym_subscript, - ACTIONS(1903), 4, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + sym_python_identifier, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -81376,51 +82278,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [59451] = 17, - ACTIONS(492), 1, + [59679] = 17, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(508), 1, + ACTIONS(587), 1, anon_sym_await, - ACTIONS(514), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(823), 1, + ACTIONS(1101), 1, anon_sym_STAR, - STATE(841), 1, + STATE(894), 1, sym_python_string, - STATE(872), 1, + STATE(957), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1320), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(510), 2, + ACTIONS(589), 2, anon_sym_type, sym_identifier, - ACTIONS(500), 4, + ACTIONS(579), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 6, + ACTIONS(591), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1026), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81437,51 +82339,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [59529] = 17, - ACTIONS(492), 1, + [59757] = 17, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(508), 1, + ACTIONS(534), 1, anon_sym_await, - ACTIONS(514), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(823), 1, + ACTIONS(1147), 1, anon_sym_STAR, - STATE(841), 1, + STATE(889), 1, sym_python_string, - STATE(876), 1, + STATE(928), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1224), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(510), 2, + ACTIONS(536), 2, anon_sym_type, sym_identifier, - ACTIONS(500), 4, + ACTIONS(526), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 6, + ACTIONS(538), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1026), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81498,51 +82400,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [59607] = 17, - ACTIONS(492), 1, + [59835] = 17, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(508), 1, + ACTIONS(619), 1, anon_sym_await, - ACTIONS(514), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(823), 1, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(841), 1, + STATE(952), 1, sym_python_string, - STATE(878), 1, + STATE(1131), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1348), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(510), 2, + ACTIONS(621), 2, anon_sym_type, sym_identifier, - ACTIONS(500), 4, + ACTIONS(611), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 6, + ACTIONS(623), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1026), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81559,55 +82461,58 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [59685] = 17, - ACTIONS(553), 1, + [59913] = 20, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(569), 1, - anon_sym_await, - ACTIONS(575), 1, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1089), 1, + ACTIONS(1745), 1, anon_sym_STAR, - STATE(851), 1, + ACTIONS(1831), 1, + anon_sym_type, + ACTIONS(1833), 1, + sym_python_identifier, + ACTIONS(1905), 1, + anon_sym_await, + STATE(853), 1, sym_python_string, - STATE(929), 1, - sym_primary_expression, - STATE(1172), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1454), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(571), 2, - anon_sym_type, - sym_identifier, - ACTIONS(561), 4, + STATE(1261), 2, + sym_attribute, + sym_subscript, + ACTIONS(1827), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 6, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - STATE(1223), 16, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -81620,51 +82525,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [59763] = 17, - ACTIONS(625), 1, + [59997] = 17, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(637), 1, - anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(641), 1, - anon_sym_await, - ACTIONS(647), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1191), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(657), 1, + anon_sym_await, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(853), 1, sym_python_string, - STATE(1024), 1, + STATE(1109), 1, sym_primary_expression, - STATE(1347), 1, + STATE(1269), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(643), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(633), 4, + ACTIONS(653), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1379), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81681,55 +82586,58 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [59841] = 17, - ACTIONS(527), 1, + [60075] = 20, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(543), 1, - anon_sym_await, - ACTIONS(549), 1, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1095), 1, + ACTIONS(1745), 1, anon_sym_STAR, - STATE(838), 1, + ACTIONS(1879), 1, + anon_sym_type, + ACTIONS(1881), 1, + sym_python_identifier, + ACTIONS(1907), 1, + anon_sym_await, + STATE(853), 1, sym_python_string, - STATE(847), 1, - sym_primary_expression, - STATE(1136), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1451), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(545), 2, - anon_sym_type, - sym_identifier, - ACTIONS(535), 4, + STATE(1070), 2, + sym_attribute, + sym_subscript, + ACTIONS(1875), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 6, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - STATE(1140), 16, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -81742,51 +82650,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [59919] = 17, - ACTIONS(492), 1, + [60159] = 17, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(508), 1, + ACTIONS(558), 1, anon_sym_await, - ACTIONS(514), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(823), 1, + ACTIONS(1091), 1, anon_sym_STAR, - STATE(841), 1, + STATE(840), 1, sym_python_string, - STATE(891), 1, + STATE(848), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1103), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(510), 2, + ACTIONS(560), 2, anon_sym_type, sym_identifier, - ACTIONS(500), 4, + ACTIONS(550), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 6, + ACTIONS(562), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1026), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81803,51 +82711,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [59997] = 17, - ACTIONS(465), 1, + [60237] = 17, + ACTIONS(494), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(496), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(661), 1, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(663), 1, + ACTIONS(508), 1, + sym_ellipsis, + ACTIONS(510), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(516), 1, + sym_string_start, + ACTIONS(825), 1, anon_sym_STAR, - STATE(868), 1, + STATE(844), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1336), 1, + STATE(857), 1, sym_primary_expression, + STATE(1133), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(659), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(476), 4, + ACTIONS(512), 2, + anon_sym_type, + sym_identifier, + ACTIONS(502), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(514), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81864,51 +82772,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [60075] = 17, - ACTIONS(527), 1, + [60315] = 17, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(543), 1, + ACTIONS(587), 1, anon_sym_await, - ACTIONS(549), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(1095), 1, + ACTIONS(1101), 1, anon_sym_STAR, - STATE(838), 1, + STATE(894), 1, sym_python_string, - STATE(869), 1, + STATE(946), 1, sym_primary_expression, - STATE(1136), 1, + STATE(1320), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(545), 2, + ACTIONS(589), 2, anon_sym_type, sym_identifier, - ACTIONS(535), 4, + ACTIONS(579), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 6, + ACTIONS(591), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1140), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81925,56 +82833,56 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [60153] = 20, - ACTIONS(465), 1, - anon_sym_LBRACK, + [60393] = 20, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1745), 1, anon_sym_STAR, - ACTIONS(1845), 1, + ACTIONS(1911), 1, + anon_sym_await, + ACTIONS(1913), 1, anon_sym_type, - ACTIONS(1847), 1, + ACTIONS(1915), 1, sym_python_identifier, - ACTIONS(1881), 1, - anon_sym_await, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1459), 1, + STATE(1435), 1, sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1327), 2, + STATE(1423), 2, sym_attribute, sym_subscript, - ACTIONS(1841), 4, + ACTIONS(1909), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -81989,55 +82897,58 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [60237] = 17, - ACTIONS(527), 1, + [60477] = 20, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(543), 1, - anon_sym_await, - ACTIONS(549), 1, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1095), 1, + ACTIONS(1745), 1, anon_sym_STAR, - STATE(838), 1, + ACTIONS(1889), 1, + anon_sym_await, + ACTIONS(1891), 1, + anon_sym_type, + ACTIONS(1917), 1, + sym_python_identifier, + STATE(853), 1, sym_python_string, - STATE(855), 1, - sym_primary_expression, - STATE(1136), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1482), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(545), 2, - anon_sym_type, - sym_identifier, - ACTIONS(535), 4, + STATE(1178), 2, + sym_attribute, + sym_subscript, + ACTIONS(1887), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 6, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - STATE(1140), 16, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -82050,51 +82961,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [60315] = 17, - ACTIONS(492), 1, + [60561] = 17, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(508), 1, + ACTIONS(534), 1, anon_sym_await, - ACTIONS(514), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(823), 1, + ACTIONS(1147), 1, anon_sym_STAR, - STATE(841), 1, + STATE(889), 1, sym_python_string, - STATE(893), 1, + STATE(999), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1224), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(510), 2, + ACTIONS(536), 2, anon_sym_type, sym_identifier, - ACTIONS(500), 4, + ACTIONS(526), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 6, + ACTIONS(538), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1026), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82111,58 +83022,55 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [60393] = 20, - ACTIONS(465), 1, + [60639] = 17, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, + ACTIONS(587), 1, + anon_sym_await, + ACTIONS(593), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1101), 1, anon_sym_STAR, - ACTIONS(1859), 1, - anon_sym_await, - ACTIONS(1861), 1, - anon_sym_type, - ACTIONS(1911), 1, - sym_python_identifier, - STATE(868), 1, + STATE(894), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1451), 1, + STATE(918), 1, sym_primary_expression, + STATE(1320), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1293), 2, - sym_attribute, - sym_subscript, - ACTIONS(1857), 4, + ACTIONS(589), 2, + anon_sym_type, + sym_identifier, + ACTIONS(579), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(591), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + sym_python_identifier, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -82175,51 +83083,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [60477] = 17, - ACTIONS(492), 1, + [60717] = 17, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(504), 1, - anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(508), 1, - anon_sym_await, - ACTIONS(514), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(823), 1, + ACTIONS(663), 1, + anon_sym_DASH, + ACTIONS(665), 1, + anon_sym_await, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(841), 1, + STATE(853), 1, sym_python_string, - STATE(894), 1, - sym_primary_expression, - STATE(1028), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1330), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(510), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(500), 4, + ACTIONS(661), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1026), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82236,51 +83144,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [60555] = 17, - ACTIONS(492), 1, + [60795] = 17, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(508), 1, + ACTIONS(619), 1, anon_sym_await, - ACTIONS(514), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(823), 1, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(841), 1, + STATE(952), 1, sym_python_string, - STATE(895), 1, + STATE(1149), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1348), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(510), 2, + ACTIONS(621), 2, anon_sym_type, sym_identifier, - ACTIONS(500), 4, + ACTIONS(611), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 6, + ACTIONS(623), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1026), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82297,51 +83205,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [60633] = 17, - ACTIONS(492), 1, + [60873] = 17, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(504), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(585), 1, sym_ellipsis, - ACTIONS(508), 1, + ACTIONS(587), 1, anon_sym_await, - ACTIONS(514), 1, + ACTIONS(593), 1, sym_string_start, - ACTIONS(823), 1, + ACTIONS(1101), 1, anon_sym_STAR, - STATE(841), 1, + STATE(894), 1, sym_python_string, - STATE(896), 1, + STATE(956), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1320), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(510), 2, + ACTIONS(589), 2, anon_sym_type, sym_identifier, - ACTIONS(500), 4, + ACTIONS(579), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 6, + ACTIONS(591), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1026), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82358,51 +83266,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [60711] = 17, - ACTIONS(577), 1, + [60951] = 17, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(593), 1, + ACTIONS(558), 1, anon_sym_await, - ACTIONS(599), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(1171), 1, + ACTIONS(1091), 1, anon_sym_STAR, - STATE(850), 1, + STATE(840), 1, sym_python_string, - STATE(919), 1, + STATE(874), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1103), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(595), 2, + ACTIONS(560), 2, anon_sym_type, sym_identifier, - ACTIONS(585), 4, + ACTIONS(550), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 6, + ACTIONS(562), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1222), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82419,51 +83327,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [60789] = 17, - ACTIONS(577), 1, + [61029] = 17, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(593), 1, + ACTIONS(534), 1, anon_sym_await, - ACTIONS(599), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(1171), 1, + ACTIONS(1147), 1, anon_sym_STAR, - STATE(850), 1, + STATE(889), 1, sym_python_string, - STATE(925), 1, + STATE(1000), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1224), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(595), 2, + ACTIONS(536), 2, anon_sym_type, sym_identifier, - ACTIONS(585), 4, + ACTIONS(526), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 6, + ACTIONS(538), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1222), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82480,51 +83388,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [60867] = 17, - ACTIONS(625), 1, + [61107] = 17, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(641), 1, + ACTIONS(558), 1, anon_sym_await, - ACTIONS(647), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(1191), 1, + ACTIONS(1091), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(840), 1, sym_python_string, - STATE(1022), 1, + STATE(878), 1, sym_primary_expression, - STATE(1347), 1, + STATE(1103), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(643), 2, + ACTIONS(560), 2, anon_sym_type, sym_identifier, - ACTIONS(633), 4, + ACTIONS(550), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 6, + ACTIONS(562), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1379), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82541,51 +83449,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [60945] = 17, - ACTIONS(465), 1, - anon_sym_LBRACK, + [61185] = 17, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(661), 1, - anon_sym_DASH, ACTIONS(663), 1, + anon_sym_DASH, + ACTIONS(665), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1358), 1, + STATE(1334), 1, sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(486), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(659), 2, + ACTIONS(661), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(476), 4, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82602,112 +83510,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [61023] = 17, - ACTIONS(577), 1, + [61263] = 17, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(589), 1, - anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(593), 1, - anon_sym_await, - ACTIONS(599), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1171), 1, - anon_sym_STAR, - STATE(850), 1, - sym_python_string, - STATE(936), 1, - sym_primary_expression, - STATE(1193), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(587), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(595), 2, - anon_sym_type, - sym_identifier, - ACTIONS(585), 4, - anon_sym_print, - anon_sym_exec, - anon_sym_async, - anon_sym_match, - ACTIONS(597), 6, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - sym_python_identifier, - STATE(1222), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_generator_expression, - sym_parenthesized_expression, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_concatenated_string, - sym_await, - [61101] = 17, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(91), 1, + ACTIONS(663), 1, anon_sym_DASH, - ACTIONS(97), 1, - sym_ellipsis, - ACTIONS(113), 1, - sym_string_start, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(459), 1, + ACTIONS(665), 1, anon_sym_await, - ACTIONS(1167), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(834), 1, + STATE(853), 1, sym_python_string, - STATE(860), 1, - sym_primary_expression, - STATE(989), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1352), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(109), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(457), 4, + ACTIONS(661), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(971), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82724,58 +83571,55 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [61179] = 20, - ACTIONS(465), 1, + [61341] = 17, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, + ACTIONS(558), 1, + anon_sym_await, + ACTIONS(564), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1091), 1, anon_sym_STAR, - ACTIONS(1829), 1, - anon_sym_type, - ACTIONS(1831), 1, - sym_python_identifier, - ACTIONS(1913), 1, - anon_sym_await, - STATE(868), 1, + STATE(840), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1468), 1, + STATE(881), 1, sym_primary_expression, + STATE(1103), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1255), 2, - sym_attribute, - sym_subscript, - ACTIONS(1825), 4, + ACTIONS(560), 2, + anon_sym_type, + sym_identifier, + ACTIONS(550), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(562), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + sym_python_identifier, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -82788,51 +83632,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [61263] = 17, - ACTIONS(625), 1, + [61419] = 17, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(641), 1, + ACTIONS(619), 1, anon_sym_await, - ACTIONS(647), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(1191), 1, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(952), 1, sym_python_string, - STATE(1021), 1, + STATE(1141), 1, sym_primary_expression, - STATE(1347), 1, + STATE(1348), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(643), 2, + ACTIONS(621), 2, anon_sym_type, sym_identifier, - ACTIONS(633), 4, + ACTIONS(611), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 6, + ACTIONS(623), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1379), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82849,115 +83693,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [61341] = 20, - ACTIONS(465), 1, + [61497] = 17, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, + ACTIONS(558), 1, + anon_sym_await, + ACTIONS(564), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1091), 1, anon_sym_STAR, - ACTIONS(1827), 1, - anon_sym_await, - ACTIONS(1829), 1, - anon_sym_type, - ACTIONS(1915), 1, - sym_python_identifier, - STATE(868), 1, + STATE(840), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1468), 1, + STATE(896), 1, sym_primary_expression, + STATE(1103), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1255), 2, - sym_attribute, - sym_subscript, - ACTIONS(1825), 4, - anon_sym_print, - anon_sym_exec, - anon_sym_async, - anon_sym_match, - ACTIONS(488), 5, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - STATE(1266), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_generator_expression, - sym_parenthesized_expression, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_concatenated_string, - sym_await, - [61425] = 17, - ACTIONS(465), 1, - anon_sym_LBRACK, - ACTIONS(467), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, - anon_sym_LBRACE, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(661), 1, - anon_sym_DASH, - ACTIONS(663), 1, - anon_sym_await, - ACTIONS(1303), 1, - anon_sym_STAR, - STATE(868), 1, - sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1364), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(486), 2, + ACTIONS(560), 2, anon_sym_type, sym_identifier, - ACTIONS(659), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(476), 4, + ACTIONS(550), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(562), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82974,51 +83754,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [61503] = 17, - ACTIONS(527), 1, + [61575] = 17, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(543), 1, + ACTIONS(534), 1, anon_sym_await, - ACTIONS(549), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(1095), 1, + ACTIONS(1147), 1, anon_sym_STAR, - STATE(838), 1, + STATE(889), 1, sym_python_string, - STATE(861), 1, + STATE(1009), 1, sym_primary_expression, - STATE(1136), 1, + STATE(1224), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(545), 2, + ACTIONS(536), 2, anon_sym_type, sym_identifier, - ACTIONS(535), 4, + ACTIONS(526), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 6, + ACTIONS(538), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1140), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83035,51 +83815,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [61581] = 17, - ACTIONS(527), 1, + [61653] = 17, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(543), 1, + ACTIONS(558), 1, anon_sym_await, - ACTIONS(549), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(1095), 1, + ACTIONS(1091), 1, anon_sym_STAR, - STATE(838), 1, + STATE(840), 1, sym_python_string, - STATE(849), 1, + STATE(852), 1, sym_primary_expression, - STATE(1136), 1, + STATE(1103), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(545), 2, + ACTIONS(560), 2, anon_sym_type, sym_identifier, - ACTIONS(535), 4, + ACTIONS(550), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 6, + ACTIONS(562), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1140), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83096,56 +83876,56 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [61659] = 20, - ACTIONS(465), 1, - anon_sym_LBRACK, + [61731] = 20, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1745), 1, anon_sym_STAR, - ACTIONS(1919), 1, - anon_sym_await, - ACTIONS(1921), 1, + ACTIONS(1831), 1, anon_sym_type, - ACTIONS(1923), 1, + ACTIONS(1895), 1, + anon_sym_await, + ACTIONS(1919), 1, sym_python_identifier, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1452), 1, + STATE(1454), 1, sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1160), 2, + STATE(1261), 2, sym_attribute, sym_subscript, - ACTIONS(1917), 4, + ACTIONS(1827), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -83160,58 +83940,55 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [61743] = 20, - ACTIONS(465), 1, + [61815] = 17, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, + ACTIONS(558), 1, + anon_sym_await, + ACTIONS(564), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1091), 1, anon_sym_STAR, - ACTIONS(1853), 1, - anon_sym_type, - ACTIONS(1893), 1, - anon_sym_await, - ACTIONS(1925), 1, - sym_python_identifier, - STATE(868), 1, + STATE(840), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1443), 1, + STATE(869), 1, sym_primary_expression, + STATE(1103), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(563), 2, - sym_attribute, - sym_subscript, - ACTIONS(1849), 4, + ACTIONS(560), 2, + anon_sym_type, + sym_identifier, + ACTIONS(550), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(562), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + sym_python_identifier, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -83224,51 +84001,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [61827] = 17, - ACTIONS(43), 1, + [61893] = 17, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(91), 1, - anon_sym_DASH, - ACTIONS(97), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(113), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(451), 1, - anon_sym_LBRACK, ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(459), 1, + ACTIONS(599), 1, + anon_sym_DASH, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(1167), 1, + ACTIONS(1183), 1, anon_sym_STAR, - STATE(834), 1, + STATE(833), 1, sym_python_string, - STATE(902), 1, - sym_primary_expression, - STATE(989), 1, + STATE(960), 1, sym_list_splat_pattern, + STATE(984), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(109), 2, + ACTIONS(111), 2, anon_sym_type, sym_identifier, - ACTIONS(457), 4, + ACTIONS(597), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(459), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(971), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83285,51 +84062,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [61905] = 17, - ACTIONS(465), 1, - anon_sym_LBRACK, + [61971] = 17, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, - sym_ellipsis, ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(486), 1, anon_sym_await, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1745), 1, anon_sym_STAR, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1440), 1, + STATE(1448), 1, sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(486), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(476), 4, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83346,51 +84123,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [61983] = 17, - ACTIONS(43), 1, + [62049] = 17, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(91), 1, - anon_sym_DASH, - ACTIONS(97), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(113), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(459), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(657), 1, anon_sym_await, - ACTIONS(1167), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(834), 1, + STATE(853), 1, sym_python_string, - STATE(886), 1, + STATE(1108), 1, sym_primary_expression, - STATE(989), 1, + STATE(1269), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(109), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(457), 4, + ACTIONS(653), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(971), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83407,51 +84184,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [62061] = 17, - ACTIONS(625), 1, + [62127] = 17, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(637), 1, - anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(641), 1, - anon_sym_await, - ACTIONS(647), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1191), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(657), 1, + anon_sym_await, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(853), 1, sym_python_string, - STATE(1020), 1, + STATE(1144), 1, sym_primary_expression, - STATE(1347), 1, + STATE(1269), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(643), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(633), 4, + ACTIONS(653), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1379), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83468,51 +84245,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [62139] = 17, - ACTIONS(625), 1, + [62205] = 17, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(641), 1, + ACTIONS(486), 1, anon_sym_await, - ACTIONS(647), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1191), 1, + ACTIONS(1745), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(853), 1, sym_python_string, - STATE(1019), 1, - sym_primary_expression, - STATE(1347), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1447), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(643), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(633), 4, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1379), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83529,51 +84306,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [62217] = 17, - ACTIONS(492), 1, + [62283] = 17, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(496), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(504), 1, - anon_sym_DASH, - ACTIONS(506), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(508), 1, - anon_sym_await, - ACTIONS(514), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(823), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(657), 1, + anon_sym_await, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(841), 1, + STATE(853), 1, sym_python_string, - STATE(875), 1, + STATE(1107), 1, sym_primary_expression, - STATE(1028), 1, + STATE(1269), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(502), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(510), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(500), 4, + ACTIONS(653), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(512), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1026), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83590,51 +84367,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [62295] = 17, - ACTIONS(43), 1, + [62361] = 17, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(91), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(97), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(113), 1, - sym_string_start, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(459), 1, + ACTIONS(486), 1, anon_sym_await, - ACTIONS(1167), 1, + ACTIONS(492), 1, + sym_string_start, + ACTIONS(1745), 1, anon_sym_STAR, - STATE(834), 1, + STATE(853), 1, sym_python_string, - STATE(845), 1, - sym_primary_expression, - STATE(989), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1446), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(109), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(457), 4, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(971), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83651,51 +84428,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [62373] = 17, - ACTIONS(465), 1, - anon_sym_LBRACK, - ACTIONS(467), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, + [62439] = 17, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(484), 1, - anon_sym_await, - ACTIONS(490), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(461), 1, + anon_sym_await, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(868), 1, + STATE(833), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1439), 1, + STATE(899), 1, sym_primary_expression, + STATE(960), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(486), 2, + ACTIONS(111), 2, anon_sym_type, sym_identifier, - ACTIONS(476), 4, + ACTIONS(459), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83712,51 +84489,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [62451] = 17, - ACTIONS(43), 1, + [62517] = 17, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(91), 1, - anon_sym_DASH, - ACTIONS(97), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(113), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(451), 1, - anon_sym_LBRACK, ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(459), 1, + ACTIONS(599), 1, + anon_sym_DASH, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(1167), 1, + ACTIONS(1183), 1, anon_sym_STAR, - STATE(834), 1, + STATE(833), 1, sym_python_string, - STATE(882), 1, - sym_primary_expression, - STATE(989), 1, + STATE(960), 1, sym_list_splat_pattern, + STATE(987), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(109), 2, + ACTIONS(111), 2, anon_sym_type, sym_identifier, - ACTIONS(457), 4, + ACTIONS(597), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(459), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(971), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83773,55 +84550,58 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [62529] = 17, - ACTIONS(465), 1, - anon_sym_LBRACK, + [62595] = 20, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(480), 1, + anon_sym_DASH, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(490), 1, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, sym_string_start, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(655), 1, - anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1745), 1, anon_sym_STAR, - STATE(868), 1, + ACTIONS(1923), 1, + anon_sym_await, + ACTIONS(1925), 1, + anon_sym_type, + ACTIONS(1927), 1, + sym_python_identifier, + STATE(853), 1, sym_python_string, - STATE(1120), 1, - sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1474), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(651), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(476), 4, + STATE(1064), 2, + sym_attribute, + sym_subscript, + ACTIONS(1921), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - STATE(1266), 16, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -83834,55 +84614,58 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [62607] = 17, - ACTIONS(465), 1, - anon_sym_LBRACK, + [62679] = 20, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(480), 1, + anon_sym_DASH, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(490), 1, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, sym_string_start, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(655), 1, - anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1745), 1, anon_sym_STAR, - STATE(868), 1, + ACTIONS(1831), 1, + anon_sym_type, + ACTIONS(1833), 1, + sym_python_identifier, + ACTIONS(1929), 1, + anon_sym_await, + STATE(853), 1, sym_python_string, - STATE(1123), 1, - sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1454), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(651), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(476), 4, + STATE(1261), 2, + sym_attribute, + sym_subscript, + ACTIONS(1827), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - STATE(1266), 16, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -83895,51 +84678,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [62685] = 17, - ACTIONS(465), 1, - anon_sym_LBRACK, + [62763] = 17, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(653), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(655), 1, + ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(486), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(492), 1, + sym_string_start, + ACTIONS(1745), 1, anon_sym_STAR, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1124), 1, - sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1445), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(651), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(476), 4, + ACTIONS(488), 2, + anon_sym_type, + sym_identifier, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83956,51 +84739,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [62763] = 17, - ACTIONS(465), 1, + [62841] = 17, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(99), 1, + sym_ellipsis, + ACTIONS(115), 1, + sym_string_start, + ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(469), 1, - anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(599), 1, anon_sym_DASH, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(484), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1183), 1, anon_sym_STAR, - STATE(868), 1, + STATE(833), 1, sym_python_string, - STATE(1260), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1438), 1, + STATE(989), 1, sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(486), 2, + ACTIONS(111), 2, anon_sym_type, sym_identifier, - ACTIONS(476), 4, + ACTIONS(597), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(459), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84017,51 +84800,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [62841] = 17, - ACTIONS(43), 1, + [62919] = 17, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(91), 1, - anon_sym_DASH, - ACTIONS(97), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(113), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(451), 1, - anon_sym_LBRACK, ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(459), 1, + ACTIONS(599), 1, + anon_sym_DASH, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(1167), 1, + ACTIONS(1183), 1, anon_sym_STAR, - STATE(834), 1, + STATE(833), 1, sym_python_string, - STATE(888), 1, - sym_primary_expression, - STATE(989), 1, + STATE(960), 1, sym_list_splat_pattern, + STATE(990), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(109), 2, + ACTIONS(111), 2, anon_sym_type, sym_identifier, - ACTIONS(457), 4, + ACTIONS(597), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(459), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(971), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84078,51 +84861,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [62919] = 17, - ACTIONS(43), 1, + [62997] = 17, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(91), 1, - anon_sym_DASH, - ACTIONS(97), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(113), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(451), 1, - anon_sym_LBRACK, ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(459), 1, + ACTIONS(599), 1, + anon_sym_DASH, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(1167), 1, + ACTIONS(1183), 1, anon_sym_STAR, - STATE(834), 1, + STATE(833), 1, sym_python_string, - STATE(881), 1, - sym_primary_expression, - STATE(989), 1, + STATE(960), 1, sym_list_splat_pattern, + STATE(991), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(109), 2, + ACTIONS(111), 2, anon_sym_type, sym_identifier, - ACTIONS(457), 4, + ACTIONS(597), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(459), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(971), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84139,51 +84922,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [62997] = 17, - ACTIONS(465), 1, + [63075] = 17, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(99), 1, + sym_ellipsis, + ACTIONS(115), 1, + sym_string_start, + ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(469), 1, - anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(599), 1, anon_sym_DASH, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(484), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1183), 1, anon_sym_STAR, - STATE(868), 1, + STATE(833), 1, sym_python_string, - STATE(1260), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1437), 1, + STATE(994), 1, sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(486), 2, + ACTIONS(111), 2, anon_sym_type, sym_identifier, - ACTIONS(476), 4, + ACTIONS(597), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(459), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84200,51 +84983,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [63075] = 17, - ACTIONS(465), 1, + [63153] = 17, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(99), 1, + sym_ellipsis, + ACTIONS(115), 1, + sym_string_start, + ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(469), 1, - anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(599), 1, anon_sym_DASH, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(484), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1183), 1, anon_sym_STAR, - STATE(868), 1, + STATE(833), 1, sym_python_string, - STATE(1260), 1, + STATE(960), 1, sym_list_splat_pattern, - STATE(1436), 1, + STATE(1006), 1, sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(486), 2, + ACTIONS(111), 2, anon_sym_type, sym_identifier, - ACTIONS(476), 4, + ACTIONS(597), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(459), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84261,51 +85044,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [63153] = 17, - ACTIONS(625), 1, + [63231] = 17, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(627), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(629), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(532), 1, sym_ellipsis, - ACTIONS(641), 1, + ACTIONS(534), 1, anon_sym_await, - ACTIONS(647), 1, + ACTIONS(540), 1, sym_string_start, - ACTIONS(1191), 1, + ACTIONS(1147), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(889), 1, sym_python_string, - STATE(1051), 1, + STATE(915), 1, sym_primary_expression, - STATE(1347), 1, + STATE(1224), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(643), 2, + ACTIONS(536), 2, anon_sym_type, sym_identifier, - ACTIONS(633), 4, + ACTIONS(526), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 6, + ACTIONS(538), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1379), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84322,58 +85105,55 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [63231] = 20, - ACTIONS(465), 1, - anon_sym_LBRACK, + [63309] = 17, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, + anon_sym_await, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1745), 1, anon_sym_STAR, - ACTIONS(1929), 1, - anon_sym_await, - ACTIONS(1931), 1, - anon_sym_type, - ACTIONS(1933), 1, - sym_python_identifier, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1467), 1, + STATE(1444), 1, sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1164), 2, - sym_attribute, - sym_subscript, - ACTIONS(1927), 4, + ACTIONS(488), 2, + anon_sym_type, + sym_identifier, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + sym_python_identifier, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -84386,51 +85166,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [63315] = 17, - ACTIONS(527), 1, + [63387] = 17, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(531), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(617), 1, sym_ellipsis, - ACTIONS(543), 1, + ACTIONS(619), 1, anon_sym_await, - ACTIONS(549), 1, + ACTIONS(625), 1, sym_string_start, - ACTIONS(1095), 1, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(838), 1, + STATE(952), 1, sym_python_string, - STATE(867), 1, + STATE(1075), 1, sym_primary_expression, - STATE(1136), 1, + STATE(1348), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(545), 2, + ACTIONS(621), 2, anon_sym_type, sym_identifier, - ACTIONS(535), 4, + ACTIONS(611), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 6, + ACTIONS(623), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1140), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84447,55 +85227,58 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [63393] = 17, - ACTIONS(553), 1, + [63465] = 20, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(569), 1, - anon_sym_await, - ACTIONS(575), 1, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1089), 1, + ACTIONS(1745), 1, anon_sym_STAR, - STATE(851), 1, + ACTIONS(1933), 1, + anon_sym_await, + ACTIONS(1935), 1, + anon_sym_type, + ACTIONS(1937), 1, + sym_python_identifier, + STATE(853), 1, sym_python_string, - STATE(1010), 1, - sym_primary_expression, - STATE(1172), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1454), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(571), 2, - anon_sym_type, - sym_identifier, - ACTIONS(561), 4, + STATE(1468), 2, + sym_attribute, + sym_subscript, + ACTIONS(1931), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 6, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - STATE(1223), 16, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -84508,51 +85291,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [63471] = 17, - ACTIONS(465), 1, - anon_sym_LBRACK, + [63549] = 17, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, - anon_sym_DASH, - ACTIONS(482), 1, - sym_ellipsis, ACTIONS(484), 1, - anon_sym_await, - ACTIONS(490), 1, + sym_ellipsis, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(663), 1, + anon_sym_DASH, + ACTIONS(665), 1, + anon_sym_await, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1463), 1, + STATE(1363), 1, sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(486), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(476), 4, + ACTIONS(661), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84569,51 +85352,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [63549] = 17, - ACTIONS(43), 1, + [63627] = 17, + ACTIONS(494), 1, + anon_sym_LBRACK, + ACTIONS(496), 1, + anon_sym_LPAREN, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(91), 1, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(97), 1, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(113), 1, - sym_string_start, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(459), 1, + ACTIONS(510), 1, anon_sym_await, - ACTIONS(1167), 1, + ACTIONS(516), 1, + sym_string_start, + ACTIONS(825), 1, anon_sym_STAR, - STATE(834), 1, + STATE(844), 1, sym_python_string, - STATE(890), 1, + STATE(891), 1, sym_primary_expression, - STATE(989), 1, + STATE(1133), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(109), 2, + ACTIONS(512), 2, anon_sym_type, sym_identifier, - ACTIONS(457), 4, + ACTIONS(502), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 6, + ACTIONS(514), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(971), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84630,51 +85413,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [63627] = 17, - ACTIONS(465), 1, - anon_sym_LBRACK, + [63705] = 17, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(661), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(663), 1, + ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(486), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(492), 1, + sym_string_start, + ACTIONS(1745), 1, anon_sym_STAR, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1328), 1, + STATE(1441), 1, sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(659), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(476), 4, + ACTIONS(488), 2, + anon_sym_type, + sym_identifier, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84691,51 +85474,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [63705] = 17, - ACTIONS(465), 1, + [63783] = 17, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(661), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(663), 1, + ACTIONS(532), 1, + sym_ellipsis, + ACTIONS(534), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(540), 1, + sym_string_start, + ACTIONS(1147), 1, anon_sym_STAR, - STATE(868), 1, + STATE(889), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1329), 1, + STATE(1010), 1, sym_primary_expression, + STATE(1224), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(659), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(476), 4, + ACTIONS(536), 2, + anon_sym_type, + sym_identifier, + ACTIONS(526), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(538), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84752,51 +85535,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [63783] = 17, - ACTIONS(465), 1, + [63861] = 17, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(653), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(655), 1, + ACTIONS(532), 1, + sym_ellipsis, + ACTIONS(534), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(540), 1, + sym_string_start, + ACTIONS(1147), 1, anon_sym_STAR, - STATE(868), 1, + STATE(889), 1, sym_python_string, - STATE(1125), 1, + STATE(927), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1224), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(651), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(476), 4, + ACTIONS(536), 2, + anon_sym_type, + sym_identifier, + ACTIONS(526), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(538), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84813,51 +85596,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [63861] = 17, - ACTIONS(465), 1, - anon_sym_LBRACK, - ACTIONS(467), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, + [63939] = 17, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(93), 1, + anon_sym_DASH, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(490), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(661), 1, - anon_sym_DASH, - ACTIONS(663), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(461), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(868), 1, + STATE(833), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1346), 1, + STATE(870), 1, sym_primary_expression, + STATE(960), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(659), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(476), 4, + ACTIONS(111), 2, + anon_sym_type, + sym_identifier, + ACTIONS(459), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84874,51 +85657,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [63939] = 17, - ACTIONS(625), 1, - anon_sym_LBRACK, - ACTIONS(627), 1, - anon_sym_LPAREN, - ACTIONS(629), 1, + [64017] = 17, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(639), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(641), 1, - anon_sym_await, - ACTIONS(647), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(1191), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(461), 1, + anon_sym_await, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(833), 1, sym_python_string, - STATE(1030), 1, + STATE(868), 1, sym_primary_expression, - STATE(1347), 1, + STATE(960), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(635), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(643), 2, + ACTIONS(111), 2, anon_sym_type, sym_identifier, - ACTIONS(633), 4, + ACTIONS(459), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(645), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1379), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84935,51 +85718,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [64017] = 17, - ACTIONS(465), 1, - anon_sym_LBRACK, + [64095] = 17, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, - sym_ellipsis, ACTIONS(484), 1, + sym_ellipsis, + ACTIONS(486), 1, anon_sym_await, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1745), 1, anon_sym_STAR, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1442), 1, + STATE(1440), 1, sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(486), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(476), 4, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84996,51 +85779,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [64095] = 17, - ACTIONS(43), 1, + [64173] = 17, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(91), 1, - anon_sym_DASH, - ACTIONS(97), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(113), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(459), 1, + ACTIONS(663), 1, + anon_sym_DASH, + ACTIONS(665), 1, anon_sym_await, - ACTIONS(1167), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(834), 1, + STATE(853), 1, sym_python_string, - STATE(879), 1, - sym_primary_expression, - STATE(989), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1327), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(109), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(457), 4, + ACTIONS(661), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(971), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85057,51 +85840,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [64173] = 17, - ACTIONS(553), 1, + [64251] = 17, + ACTIONS(494), 1, anon_sym_LBRACK, - ACTIONS(555), 1, + ACTIONS(496), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(498), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(506), 1, anon_sym_DASH, - ACTIONS(567), 1, + ACTIONS(508), 1, sym_ellipsis, - ACTIONS(569), 1, + ACTIONS(510), 1, anon_sym_await, - ACTIONS(575), 1, + ACTIONS(516), 1, sym_string_start, - ACTIONS(1089), 1, + ACTIONS(825), 1, anon_sym_STAR, - STATE(851), 1, + STATE(844), 1, sym_python_string, - STATE(988), 1, + STATE(888), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1133), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(563), 2, + ACTIONS(504), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(571), 2, + ACTIONS(512), 2, anon_sym_type, sym_identifier, - ACTIONS(561), 4, + ACTIONS(502), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(573), 6, + ACTIONS(514), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1223), 16, + STATE(1136), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85118,51 +85901,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [64251] = 17, - ACTIONS(465), 1, + [64329] = 17, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(661), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(663), 1, + ACTIONS(617), 1, + sym_ellipsis, + ACTIONS(619), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(625), 1, + sym_string_start, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(868), 1, + STATE(952), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1330), 1, + STATE(1147), 1, sym_primary_expression, + STATE(1348), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(659), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(476), 4, + ACTIONS(621), 2, + anon_sym_type, + sym_identifier, + ACTIONS(611), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(623), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85179,51 +85962,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [64329] = 17, - ACTIONS(527), 1, - anon_sym_LBRACK, - ACTIONS(529), 1, - anon_sym_LPAREN, - ACTIONS(531), 1, + [64407] = 17, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(539), 1, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(541), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(543), 1, - anon_sym_await, - ACTIONS(549), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(1095), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(461), 1, + anon_sym_await, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(838), 1, + STATE(833), 1, sym_python_string, STATE(865), 1, sym_primary_expression, - STATE(1136), 1, + STATE(960), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(537), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(545), 2, + ACTIONS(111), 2, anon_sym_type, sym_identifier, - ACTIONS(535), 4, + ACTIONS(459), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(547), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1140), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85240,115 +86023,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [64407] = 20, - ACTIONS(465), 1, - anon_sym_LBRACK, - ACTIONS(467), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, + [64485] = 17, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(478), 1, - anon_sym_DASH, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(1727), 1, - anon_sym_STAR, - ACTIONS(1821), 1, - anon_sym_type, - ACTIONS(1823), 1, - sym_python_identifier, - ACTIONS(1935), 1, - anon_sym_await, - STATE(868), 1, - sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1446), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(480), 2, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1044), 2, - sym_attribute, - sym_subscript, - ACTIONS(1817), 4, - anon_sym_print, - anon_sym_exec, - anon_sym_async, - anon_sym_match, - ACTIONS(488), 5, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - STATE(1266), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_generator_expression, - sym_parenthesized_expression, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_concatenated_string, - sym_await, - [64491] = 17, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(91), 1, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(97), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(113), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(451), 1, - anon_sym_LBRACK, ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(459), 1, + ACTIONS(461), 1, anon_sym_await, - ACTIONS(1167), 1, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(834), 1, + STATE(833), 1, sym_python_string, - STATE(871), 1, + STATE(864), 1, sym_primary_expression, - STATE(989), 1, + STATE(960), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(109), 2, + ACTIONS(111), 2, anon_sym_type, sym_identifier, - ACTIONS(457), 4, + ACTIONS(459), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(105), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(971), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85365,51 +86084,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [64569] = 17, - ACTIONS(465), 1, + [64563] = 17, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(653), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(655), 1, + ACTIONS(585), 1, + sym_ellipsis, + ACTIONS(587), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(593), 1, + sym_string_start, + ACTIONS(1101), 1, anon_sym_STAR, - STATE(868), 1, + STATE(894), 1, sym_python_string, - STATE(1013), 1, + STATE(948), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1320), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(651), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(476), 4, + ACTIONS(589), 2, + anon_sym_type, + sym_identifier, + ACTIONS(579), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(591), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85426,51 +86145,51 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [64647] = 17, - ACTIONS(577), 1, + [64641] = 17, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(469), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(589), 1, - anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(593), 1, - anon_sym_await, - ACTIONS(599), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1171), 1, + ACTIONS(655), 1, + anon_sym_DASH, + ACTIONS(657), 1, + anon_sym_await, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(850), 1, + STATE(853), 1, sym_python_string, - STATE(940), 1, + STATE(1145), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1269), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(595), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(585), 4, + ACTIONS(653), 2, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1222), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85487,55 +86206,58 @@ static const uint16_t ts_small_parse_table[] = { sym_set_comprehension, sym_concatenated_string, sym_await, - [64725] = 17, - ACTIONS(465), 1, - anon_sym_LBRACK, + [64719] = 20, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(480), 1, + anon_sym_DASH, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(490), 1, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(492), 1, sym_string_start, - ACTIONS(653), 1, - anon_sym_DASH, - ACTIONS(655), 1, - anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1745), 1, anon_sym_STAR, - STATE(868), 1, + ACTIONS(1847), 1, + anon_sym_type, + ACTIONS(1849), 1, + sym_python_identifier, + ACTIONS(1897), 1, + anon_sym_await, + STATE(853), 1, sym_python_string, - STATE(1132), 1, - sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1450), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(651), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(476), 4, + STATE(564), 2, + sym_attribute, + sym_subscript, + ACTIONS(1843), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - sym_python_identifier, - STATE(1266), 16, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_generator_expression, sym_parenthesized_expression, @@ -85549,50 +86271,50 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [64803] = 17, - ACTIONS(465), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(605), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(607), 1, anon_sym_LBRACE, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(653), 1, + ACTIONS(615), 1, anon_sym_DASH, - ACTIONS(655), 1, + ACTIONS(617), 1, + sym_ellipsis, + ACTIONS(619), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(625), 1, + sym_string_start, + ACTIONS(1151), 1, anon_sym_STAR, - STATE(868), 1, + STATE(952), 1, sym_python_string, - STATE(1137), 1, + STATE(1146), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1348), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(651), 2, + ACTIONS(613), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(476), 4, + ACTIONS(621), 2, + anon_sym_type, + sym_identifier, + ACTIONS(611), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(623), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(1351), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85610,50 +86332,50 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [64881] = 17, - ACTIONS(577), 1, - anon_sym_LBRACK, - ACTIONS(579), 1, - anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(93), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(593), 1, - anon_sym_await, - ACTIONS(599), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(1171), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(461), 1, + anon_sym_await, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(850), 1, + STATE(833), 1, sym_python_string, - STATE(928), 1, + STATE(862), 1, sym_primary_expression, - STATE(1193), 1, + STATE(960), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(595), 2, + ACTIONS(111), 2, anon_sym_type, sym_identifier, - ACTIONS(585), 4, + ACTIONS(459), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1222), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85671,50 +86393,50 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [64959] = 17, - ACTIONS(465), 1, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(522), 1, anon_sym_LBRACE, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(661), 1, + ACTIONS(530), 1, anon_sym_DASH, - ACTIONS(663), 1, + ACTIONS(532), 1, + sym_ellipsis, + ACTIONS(534), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(540), 1, + sym_string_start, + ACTIONS(1147), 1, anon_sym_STAR, - STATE(868), 1, + STATE(889), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1359), 1, + STATE(1013), 1, sym_primary_expression, + STATE(1224), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(659), 2, + ACTIONS(528), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(476), 4, + ACTIONS(536), 2, + anon_sym_type, + sym_identifier, + ACTIONS(526), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(538), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85732,50 +86454,50 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [65037] = 17, - ACTIONS(465), 1, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(661), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(663), 1, + ACTIONS(585), 1, + sym_ellipsis, + ACTIONS(587), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(593), 1, + sym_string_start, + ACTIONS(1101), 1, anon_sym_STAR, - STATE(868), 1, + STATE(894), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1325), 1, + STATE(949), 1, sym_primary_expression, + STATE(1320), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(659), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(476), 4, + ACTIONS(589), 2, + anon_sym_type, + sym_identifier, + ACTIONS(579), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(591), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85793,50 +86515,50 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [65115] = 17, - ACTIONS(465), 1, - anon_sym_LBRACK, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(661), 1, + ACTIONS(655), 1, anon_sym_DASH, - ACTIONS(663), 1, + ACTIONS(657), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(1287), 1, anon_sym_STAR, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1365), 1, + STATE(1140), 1, sym_primary_expression, + STATE(1269), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(486), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(659), 2, + ACTIONS(653), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(476), 4, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85854,50 +86576,50 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [65193] = 17, - ACTIONS(465), 1, - anon_sym_LBRACK, - ACTIONS(467), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(93), 1, + anon_sym_DASH, + ACTIONS(99), 1, sym_ellipsis, - ACTIONS(490), 1, + ACTIONS(115), 1, sym_string_start, - ACTIONS(661), 1, - anon_sym_DASH, - ACTIONS(663), 1, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LPAREN, + ACTIONS(461), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(1165), 1, anon_sym_STAR, - STATE(868), 1, + STATE(833), 1, sym_python_string, - STATE(1260), 1, - sym_list_splat_pattern, - STATE(1367), 1, + STATE(861), 1, sym_primary_expression, + STATE(960), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(659), 2, + ACTIONS(91), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(476), 4, + ACTIONS(111), 2, + anon_sym_type, + sym_identifier, + ACTIONS(459), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(964), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85915,50 +86637,50 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [65271] = 17, - ACTIONS(577), 1, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(579), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(581), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(589), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(591), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(593), 1, + ACTIONS(558), 1, anon_sym_await, - ACTIONS(599), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(1171), 1, + ACTIONS(1091), 1, anon_sym_STAR, - STATE(850), 1, + STATE(840), 1, sym_python_string, - STATE(915), 1, + STATE(883), 1, sym_primary_expression, - STATE(1193), 1, + STATE(1103), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(587), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(595), 2, + ACTIONS(560), 2, anon_sym_type, sym_identifier, - ACTIONS(585), 4, + ACTIONS(550), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(597), 6, + ACTIONS(562), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1222), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85976,50 +86698,50 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [65349] = 17, - ACTIONS(465), 1, - anon_sym_LBRACK, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(663), 1, anon_sym_DASH, - ACTIONS(655), 1, + ACTIONS(665), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1014), 1, - sym_primary_expression, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, + STATE(1325), 1, + sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(486), 2, + ACTIONS(488), 2, anon_sym_type, sym_identifier, - ACTIONS(651), 2, + ACTIONS(661), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(476), 4, + ACTIONS(478), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(490), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(1278), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -86037,55 +86759,55 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [65427] = 20, - ACTIONS(465), 1, - anon_sym_LBRACK, ACTIONS(467), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(469), 1, + anon_sym_LPAREN, + ACTIONS(471), 1, anon_sym_LBRACE, - ACTIONS(478), 1, + ACTIONS(480), 1, anon_sym_DASH, - ACTIONS(482), 1, + ACTIONS(484), 1, sym_ellipsis, - ACTIONS(486), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(490), 1, + ACTIONS(492), 1, sym_string_start, - ACTIONS(1727), 1, + ACTIONS(1745), 1, anon_sym_STAR, - ACTIONS(1861), 1, + ACTIONS(1891), 1, anon_sym_type, - ACTIONS(1863), 1, + ACTIONS(1893), 1, sym_python_identifier, - ACTIONS(1937), 1, + ACTIONS(1939), 1, anon_sym_await, - STATE(868), 1, + STATE(853), 1, sym_python_string, - STATE(1260), 1, + STATE(1269), 1, sym_list_splat_pattern, - STATE(1467), 1, + STATE(1435), 1, sym_primary_expression, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(480), 2, + ACTIONS(482), 2, anon_sym_PLUS, anon_sym_TILDE, - STATE(1293), 2, + STATE(1178), 2, sym_attribute, sym_subscript, - ACTIONS(1857), 4, + ACTIONS(1887), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 5, + ACTIONS(490), 5, sym_integer, sym_float, sym_true, sym_false, sym_none, - STATE(1266), 14, + STATE(1278), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -86101,50 +86823,50 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [65511] = 17, - ACTIONS(465), 1, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(575), 1, anon_sym_LBRACE, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(653), 1, + ACTIONS(583), 1, anon_sym_DASH, - ACTIONS(655), 1, + ACTIONS(585), 1, + sym_ellipsis, + ACTIONS(587), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(593), 1, + sym_string_start, + ACTIONS(1101), 1, anon_sym_STAR, - STATE(868), 1, + STATE(894), 1, sym_python_string, - STATE(1142), 1, + STATE(953), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1320), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(651), 2, + ACTIONS(581), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(476), 4, + ACTIONS(589), 2, + anon_sym_type, + sym_identifier, + ACTIONS(579), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(591), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -86162,50 +86884,50 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [65589] = 17, - ACTIONS(465), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(467), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(482), 1, - sym_ellipsis, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(653), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(655), 1, + ACTIONS(641), 1, + sym_ellipsis, + ACTIONS(643), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(649), 1, + sym_string_start, + ACTIONS(1097), 1, anon_sym_STAR, - STATE(868), 1, + STATE(859), 1, sym_python_string, - STATE(1148), 1, + STATE(908), 1, sym_primary_expression, - STATE(1260), 1, + STATE(1294), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(486), 2, - anon_sym_type, - sym_identifier, - ACTIONS(651), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(476), 4, + ACTIONS(645), 2, + anon_sym_type, + sym_identifier, + ACTIONS(635), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(488), 6, + ACTIONS(647), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1266), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -86223,50 +86945,50 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [65667] = 17, - ACTIONS(601), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(617), 1, + ACTIONS(643), 1, anon_sym_await, - ACTIONS(623), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(1133), 1, + ACTIONS(1097), 1, anon_sym_STAR, - STATE(857), 1, + STATE(859), 1, sym_python_string, - STATE(914), 1, + STATE(910), 1, sym_primary_expression, - STATE(1163), 1, + STATE(1294), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(619), 2, + ACTIONS(645), 2, anon_sym_type, sym_identifier, - ACTIONS(609), 4, + ACTIONS(635), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 6, + ACTIONS(647), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1283), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -86284,50 +87006,50 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [65745] = 17, - ACTIONS(601), 1, + ACTIONS(542), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(544), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(546), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(554), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(556), 1, sym_ellipsis, - ACTIONS(617), 1, + ACTIONS(558), 1, anon_sym_await, - ACTIONS(623), 1, + ACTIONS(564), 1, sym_string_start, - ACTIONS(1133), 1, + ACTIONS(1091), 1, anon_sym_STAR, - STATE(857), 1, + STATE(840), 1, sym_python_string, - STATE(912), 1, + STATE(872), 1, sym_primary_expression, - STATE(1163), 1, + STATE(1103), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(552), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(619), 2, + ACTIONS(560), 2, anon_sym_type, sym_identifier, - ACTIONS(609), 4, + ACTIONS(550), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 6, + ACTIONS(562), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1283), 16, + STATE(1111), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -86345,50 +87067,50 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [65823] = 17, - ACTIONS(601), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(617), 1, + ACTIONS(643), 1, anon_sym_await, - ACTIONS(623), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(1133), 1, + ACTIONS(1097), 1, anon_sym_STAR, - STATE(857), 1, + STATE(859), 1, sym_python_string, - STATE(913), 1, + STATE(919), 1, sym_primary_expression, - STATE(1163), 1, + STATE(1294), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(619), 2, + ACTIONS(645), 2, anon_sym_type, sym_identifier, - ACTIONS(609), 4, + ACTIONS(635), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 6, + ACTIONS(647), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1283), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -86406,50 +87128,50 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [65901] = 17, - ACTIONS(601), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(617), 1, + ACTIONS(643), 1, anon_sym_await, - ACTIONS(623), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(1133), 1, + ACTIONS(1097), 1, anon_sym_STAR, - STATE(857), 1, + STATE(859), 1, sym_python_string, - STATE(920), 1, + STATE(917), 1, sym_primary_expression, - STATE(1163), 1, + STATE(1294), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(619), 2, + ACTIONS(645), 2, anon_sym_type, sym_identifier, - ACTIONS(609), 4, + ACTIONS(635), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 6, + ACTIONS(647), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1283), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -86467,50 +87189,50 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [65979] = 17, - ACTIONS(601), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(617), 1, + ACTIONS(643), 1, anon_sym_await, - ACTIONS(623), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(1133), 1, + ACTIONS(1097), 1, anon_sym_STAR, - STATE(857), 1, + STATE(859), 1, sym_python_string, - STATE(921), 1, + STATE(914), 1, sym_primary_expression, - STATE(1163), 1, + STATE(1294), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(619), 2, + ACTIONS(645), 2, anon_sym_type, sym_identifier, - ACTIONS(609), 4, + ACTIONS(635), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 6, + ACTIONS(647), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1283), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -86528,50 +87250,50 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [66057] = 17, - ACTIONS(601), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(617), 1, + ACTIONS(643), 1, anon_sym_await, - ACTIONS(623), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(1133), 1, + ACTIONS(1097), 1, anon_sym_STAR, - STATE(857), 1, + STATE(859), 1, sym_python_string, - STATE(905), 1, + STATE(913), 1, sym_primary_expression, - STATE(1163), 1, + STATE(1294), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(619), 2, + ACTIONS(645), 2, anon_sym_type, sym_identifier, - ACTIONS(609), 4, + ACTIONS(635), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 6, + ACTIONS(647), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1283), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -86589,50 +87311,50 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [66135] = 17, - ACTIONS(601), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(617), 1, + ACTIONS(643), 1, anon_sym_await, - ACTIONS(623), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(1133), 1, + ACTIONS(1097), 1, anon_sym_STAR, - STATE(857), 1, + STATE(859), 1, sym_python_string, - STATE(909), 1, + STATE(912), 1, sym_primary_expression, - STATE(1163), 1, + STATE(1294), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(619), 2, + ACTIONS(645), 2, anon_sym_type, sym_identifier, - ACTIONS(609), 4, + ACTIONS(635), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 6, + ACTIONS(647), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1283), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -86650,50 +87372,50 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [66213] = 17, - ACTIONS(601), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(603), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(605), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(613), 1, + ACTIONS(639), 1, anon_sym_DASH, - ACTIONS(615), 1, + ACTIONS(641), 1, sym_ellipsis, - ACTIONS(617), 1, + ACTIONS(643), 1, anon_sym_await, - ACTIONS(623), 1, + ACTIONS(649), 1, sym_string_start, - ACTIONS(1133), 1, + ACTIONS(1097), 1, anon_sym_STAR, - STATE(857), 1, + STATE(859), 1, sym_python_string, - STATE(910), 1, + STATE(911), 1, sym_primary_expression, - STATE(1163), 1, + STATE(1294), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(611), 2, + ACTIONS(637), 2, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(619), 2, + ACTIONS(645), 2, anon_sym_type, sym_identifier, - ACTIONS(609), 4, + ACTIONS(635), 4, anon_sym_print, anon_sym_exec, anon_sym_async, anon_sym_match, - ACTIONS(621), 6, + ACTIONS(647), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_python_identifier, - STATE(1283), 16, + STATE(1301), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -86711,21 +87433,21 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [66291] = 5, - ACTIONS(1943), 1, + ACTIONS(115), 1, sym_string_start, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(833), 2, + STATE(834), 2, sym_python_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1939), 5, + ACTIONS(1397), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1941), 31, + ACTIONS(1392), 31, sym__newline, anon_sym_LBRACK, anon_sym_COLON, @@ -86758,7 +87480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, [66343] = 5, - ACTIONS(113), 1, + ACTIONS(115), 1, sym_string_start, ACTIONS(3), 2, sym_line_continuation, @@ -86766,13 +87488,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(835), 2, sym_python_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1399), 5, + ACTIONS(1941), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 31, + ACTIONS(1943), 31, sym__newline, anon_sym_LBRACK, anon_sym_COLON, @@ -86805,21 +87527,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, [66395] = 5, - ACTIONS(113), 1, + ACTIONS(1949), 1, sym_string_start, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(833), 2, + STATE(835), 2, sym_python_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1946), 5, + ACTIONS(1945), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1948), 31, + ACTIONS(1947), 31, sym__newline, anon_sym_LBRACK, anon_sym_COLON, @@ -86851,114 +87573,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [66447] = 5, - ACTIONS(1950), 1, - sym_string_start, + [66447] = 20, + ACTIONS(1952), 1, + anon_sym_EQ, + ACTIONS(1954), 1, + anon_sym_LBRACK, + ACTIONS(1958), 1, + anon_sym_LPAREN, + ACTIONS(1960), 1, + anon_sym_DOT, + ACTIONS(1968), 1, + anon_sym_not, + ACTIONS(1974), 1, + anon_sym_STAR_STAR, + ACTIONS(1976), 1, + anon_sym_PIPE, + ACTIONS(1978), 1, + anon_sym_AMP, + ACTIONS(1980), 1, + anon_sym_CARET, + ACTIONS(1984), 1, + anon_sym_is, + STATE(1402), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(836), 2, - sym_python_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1939), 5, - anon_sym_as, + ACTIONS(1962), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1941), 30, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(1964), 2, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_LT_LT, + ACTIONS(1970), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1982), 2, + anon_sym_LT, + anon_sym_GT, + STATE(935), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1972), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(1966), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, + ACTIONS(1956), 8, + sym__newline, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [66528] = 20, + ACTIONS(1952), 1, + anon_sym_EQ, + ACTIONS(1986), 1, + anon_sym_LBRACK, + ACTIONS(1988), 1, + anon_sym_LPAREN, + ACTIONS(1990), 1, + anon_sym_DOT, + ACTIONS(1998), 1, + anon_sym_not, + ACTIONS(2004), 1, + anon_sym_STAR_STAR, + ACTIONS(2006), 1, + anon_sym_PIPE, + ACTIONS(2008), 1, + anon_sym_AMP, + ACTIONS(2010), 1, + anon_sym_CARET, + ACTIONS(2014), 1, anon_sym_is, - [66498] = 5, - ACTIONS(1953), 1, - sym_string_start, + STATE(1415), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(837), 2, - sym_python_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1939), 5, - anon_sym_EQ, + ACTIONS(1992), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1941), 30, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(1994), 2, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_LT_LT, + ACTIONS(2000), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2012), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1056), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2002), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(1996), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, + ACTIONS(1956), 8, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, sym_type_conversion, - [66549] = 5, - ACTIONS(549), 1, + [66609] = 5, + ACTIONS(2016), 1, sym_string_start, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(842), 2, + STATE(838), 2, sym_python_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1399), 5, + ACTIONS(1945), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 30, + ACTIONS(1947), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -86989,59 +87741,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [66600] = 20, - ACTIONS(1956), 1, + [66660] = 20, + ACTIONS(1952), 1, + anon_sym_as, + ACTIONS(2019), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2021), 1, anon_sym_LPAREN, - ACTIONS(1962), 1, + ACTIONS(2023), 1, anon_sym_DOT, - ACTIONS(1964), 1, - anon_sym_as, - ACTIONS(1972), 1, + ACTIONS(2031), 1, anon_sym_not, - ACTIONS(1978), 1, + ACTIONS(2037), 1, anon_sym_STAR_STAR, - ACTIONS(1980), 1, + ACTIONS(2039), 1, anon_sym_PIPE, - ACTIONS(1982), 1, + ACTIONS(2041), 1, anon_sym_AMP, - ACTIONS(1984), 1, + ACTIONS(2043), 1, anon_sym_CARET, - ACTIONS(1988), 1, + ACTIONS(2047), 1, anon_sym_is, - STATE(1419), 1, + STATE(1418), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1966), 2, + ACTIONS(2025), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1968), 2, + ACTIONS(2027), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1974), 2, + ACTIONS(2033), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1986), 2, + ACTIONS(2045), 2, anon_sym_LT, anon_sym_GT, - STATE(1114), 2, + STATE(1079), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1976), 3, + ACTIONS(2035), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1970), 6, + ACTIONS(2029), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1958), 8, + ACTIONS(1956), 8, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, @@ -87050,69 +87802,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [66681] = 20, - ACTIONS(1964), 1, - anon_sym_EQ, - ACTIONS(1990), 1, - anon_sym_LBRACK, - ACTIONS(1992), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2002), 1, - anon_sym_not, - ACTIONS(2008), 1, - anon_sym_STAR_STAR, - ACTIONS(2010), 1, - anon_sym_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2018), 1, - anon_sym_is, - STATE(1403), 1, - aux_sym_comparison_operator_repeat1, + [66741] = 5, + ACTIONS(564), 1, + sym_string_start, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1996), 2, + STATE(842), 2, + sym_python_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1397), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1998), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 30, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2004), 2, + anon_sym_in, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_LT, - anon_sym_GT, - STATE(944), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2006), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2000), 6, - anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1958), 8, - sym__newline, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [66762] = 5, - ACTIONS(514), 1, + anon_sym_is, + [66792] = 5, + ACTIONS(516), 1, sym_string_start, ACTIONS(3), 2, sym_line_continuation, @@ -87120,13 +87857,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(843), 2, sym_python_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1399), 5, + ACTIONS(1941), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 30, + ACTIONS(1943), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -87157,22 +87894,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [66813] = 5, - ACTIONS(549), 1, + [66843] = 5, + ACTIONS(564), 1, sym_string_start, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(836), 2, + STATE(838), 2, sym_python_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1946), 5, + ACTIONS(1941), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1948), 30, + ACTIONS(1943), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -87203,22 +87940,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [66864] = 5, - ACTIONS(514), 1, + [66894] = 5, + ACTIONS(2049), 1, sym_string_start, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(837), 2, + STATE(843), 2, sym_python_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1946), 5, + ACTIONS(1945), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1948), 30, + ACTIONS(1947), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -87249,255 +87986,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [66915] = 20, - ACTIONS(1964), 1, - anon_sym_EQ, - ACTIONS(2020), 1, - anon_sym_LBRACK, - ACTIONS(2022), 1, - anon_sym_LPAREN, - ACTIONS(2024), 1, - anon_sym_DOT, - ACTIONS(2032), 1, - anon_sym_not, - ACTIONS(2038), 1, - anon_sym_STAR_STAR, - ACTIONS(2040), 1, - anon_sym_PIPE, - ACTIONS(2042), 1, - anon_sym_AMP, - ACTIONS(2044), 1, - anon_sym_CARET, - ACTIONS(2048), 1, - anon_sym_is, - STATE(1415), 1, - aux_sym_comparison_operator_repeat1, + [66945] = 5, + ACTIONS(516), 1, + sym_string_start, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2026), 2, + STATE(841), 2, + sym_python_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1397), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2028), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2034), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2046), 2, anon_sym_LT, anon_sym_GT, - STATE(1050), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2036), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2030), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1958), 8, + ACTIONS(1392), 30, + anon_sym_LBRACK, anon_sym_COLON, + anon_sym_LPAREN, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, + anon_sym_in, anon_sym_if, + anon_sym_not, anon_sym_and, anon_sym_or, - sym_type_conversion, - [66996] = 13, - ACTIONS(1990), 1, - anon_sym_LBRACK, - ACTIONS(1992), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2008), 1, - anon_sym_STAR_STAR, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(1996), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1998), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2004), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(944), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2006), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2050), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2052), 18, - sym__newline, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [67062] = 19, - ACTIONS(1992), 1, - anon_sym_LPAREN, - ACTIONS(2002), 1, - anon_sym_not, - ACTIONS(2008), 1, anon_sym_STAR_STAR, - ACTIONS(2010), 1, anon_sym_PIPE, - ACTIONS(2012), 1, anon_sym_AMP, - ACTIONS(2014), 1, anon_sym_CARET, - ACTIONS(2018), 1, - anon_sym_is, - ACTIONS(2054), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, - anon_sym_DOT, - STATE(1403), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(1996), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1998), 2, - anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2004), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_LT, - anon_sym_GT, - STATE(944), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2006), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2000), 6, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1958), 8, - sym__newline, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [67140] = 15, - ACTIONS(1956), 1, + anon_sym_is, + sym_type_conversion, + [66996] = 10, + ACTIONS(1986), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1988), 1, anon_sym_LPAREN, - ACTIONS(1962), 1, + ACTIONS(1990), 1, anon_sym_DOT, - ACTIONS(1978), 1, + ACTIONS(2004), 1, anon_sym_STAR_STAR, - ACTIONS(1980), 1, - anon_sym_PIPE, - ACTIONS(1982), 1, - anon_sym_AMP, - ACTIONS(1984), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1966), 2, + ACTIONS(1992), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1968), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1974), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1114), 2, + STATE(1056), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1976), 3, + ACTIONS(2002), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2060), 3, - anon_sym_as, + ACTIONS(2052), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2058), 16, + ACTIONS(2054), 23, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [67210] = 4, - ACTIONS(288), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(303), 6, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(301), 30, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, @@ -87507,10 +88071,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -87521,30 +88081,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67258] = 8, - ACTIONS(1956), 1, - anon_sym_LBRACK, - ACTIONS(1960), 1, - anon_sym_LPAREN, - ACTIONS(1962), 1, - anon_sym_DOT, - ACTIONS(1978), 1, - anon_sym_STAR_STAR, + sym_type_conversion, + [67056] = 5, + ACTIONS(593), 1, + sym_string_start, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1114), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2064), 5, + STATE(877), 2, + sym_python_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1941), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2062), 26, - anon_sym_COLON, - anon_sym_RBRACE, + ACTIONS(1943), 29, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_in, @@ -87559,6 +88116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -87569,22 +88127,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67314] = 5, - ACTIONS(599), 1, + [67106] = 5, + ACTIONS(2056), 1, sym_string_start, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(885), 2, + STATE(847), 2, sym_python_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1399), 5, + ACTIONS(1945), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 29, + ACTIONS(1947), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -87614,26 +88172,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67364] = 5, - ACTIONS(575), 1, - sym_string_start, + [67156] = 8, + ACTIONS(2019), 1, + anon_sym_LBRACK, + ACTIONS(2021), 1, + anon_sym_LPAREN, + ACTIONS(2023), 1, + anon_sym_DOT, + ACTIONS(2037), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(870), 2, - sym_python_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1399), 5, + STATE(1079), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2052), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 29, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, + ACTIONS(2054), 26, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_in, @@ -87648,7 +88210,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -87659,36 +88220,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67414] = 8, - ACTIONS(1956), 1, + [67212] = 8, + ACTIONS(1986), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1988), 1, anon_sym_LPAREN, - ACTIONS(1962), 1, + ACTIONS(1990), 1, anon_sym_DOT, - ACTIONS(1978), 1, + ACTIONS(2004), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1114), 2, + STATE(1056), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2068), 5, - anon_sym_as, + ACTIONS(2052), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2066), 26, + ACTIONS(2054), 26, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -87707,41 +88267,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67470] = 5, - ACTIONS(2070), 1, - sym_string_start, + sym_type_conversion, + [67268] = 11, + ACTIONS(1986), 1, + anon_sym_LBRACK, + ACTIONS(1988), 1, + anon_sym_LPAREN, + ACTIONS(1990), 1, + anon_sym_DOT, + ACTIONS(2004), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(853), 2, - sym_python_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1939), 5, - anon_sym_as, + ACTIONS(1992), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2000), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1056), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2002), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2052), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1941), 29, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, + ACTIONS(2054), 21, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -87752,93 +88318,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67520] = 13, - ACTIONS(1956), 1, + sym_type_conversion, + [67330] = 15, + ACTIONS(1986), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1988), 1, anon_sym_LPAREN, - ACTIONS(1962), 1, + ACTIONS(1990), 1, anon_sym_DOT, - ACTIONS(1978), 1, + ACTIONS(2004), 1, anon_sym_STAR_STAR, - ACTIONS(1984), 1, + ACTIONS(2006), 1, + anon_sym_PIPE, + ACTIONS(2008), 1, + anon_sym_AMP, + ACTIONS(2010), 1, anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1966), 2, + ACTIONS(1992), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1968), 2, + ACTIONS(1994), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1974), 2, + ACTIONS(2000), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1114), 2, + STATE(1056), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1976), 3, + ACTIONS(2002), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2050), 3, - anon_sym_as, + ACTIONS(2059), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 18, + ACTIONS(2061), 16, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_as, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67586] = 11, - ACTIONS(1956), 1, + sym_type_conversion, + [67400] = 12, + ACTIONS(2019), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2021), 1, anon_sym_LPAREN, - ACTIONS(1962), 1, + ACTIONS(2023), 1, anon_sym_DOT, - ACTIONS(1978), 1, + ACTIONS(2037), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1966), 2, + ACTIONS(2025), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1974), 2, + ACTIONS(2027), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2033), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1114), 2, + STATE(1079), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1976), 3, + ACTIONS(2035), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2050), 3, + ACTIONS(2052), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 21, + ACTIONS(2054), 19, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_async, @@ -87849,38 +88420,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67648] = 4, - ACTIONS(288), 1, - anon_sym_COLON_EQ, + [67464] = 5, + ACTIONS(492), 1, + sym_string_start, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 6, + STATE(858), 2, + sym_python_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1397), 5, anon_sym_EQ, - anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 30, - sym__newline, + ACTIONS(1392), 29, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_DOT, - anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -87900,32 +88471,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67696] = 5, - ACTIONS(623), 1, - sym_string_start, + [67514] = 8, + ACTIONS(1986), 1, + anon_sym_LBRACK, + ACTIONS(1988), 1, + anon_sym_LPAREN, + ACTIONS(1990), 1, + anon_sym_DOT, + ACTIONS(2004), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(899), 2, - sym_python_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1399), 5, - anon_sym_as, + STATE(1056), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2052), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 29, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(2054), 26, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -87934,7 +88508,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -87945,279 +88518,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67746] = 20, - ACTIONS(1964), 1, - anon_sym_as, - ACTIONS(2073), 1, + sym_type_conversion, + [67570] = 14, + ACTIONS(1986), 1, anon_sym_LBRACK, - ACTIONS(2075), 1, + ACTIONS(1988), 1, anon_sym_LPAREN, - ACTIONS(2077), 1, + ACTIONS(1990), 1, anon_sym_DOT, - ACTIONS(2085), 1, - anon_sym_not, - ACTIONS(2091), 1, + ACTIONS(2004), 1, anon_sym_STAR_STAR, - ACTIONS(2093), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, + ACTIONS(2008), 1, anon_sym_AMP, - ACTIONS(2097), 1, + ACTIONS(2010), 1, anon_sym_CARET, - ACTIONS(2101), 1, - anon_sym_is, - STATE(1427), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2079), 2, + ACTIONS(1992), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2081), 2, + ACTIONS(1994), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2087), 2, + ACTIONS(2000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2099), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1261), 2, + STATE(1056), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2089), 3, + ACTIONS(2002), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2083), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1958), 7, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [67826] = 8, - ACTIONS(1990), 1, - anon_sym_LBRACK, - ACTIONS(1992), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2008), 1, - anon_sym_STAR_STAR, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - STATE(944), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2068), 5, + ACTIONS(2052), 3, anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2066), 26, - sym__newline, + ACTIONS(2054), 17, anon_sym_COLON, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67882] = 8, - ACTIONS(1990), 1, + sym_type_conversion, + [67638] = 13, + ACTIONS(1986), 1, anon_sym_LBRACK, - ACTIONS(1992), 1, + ACTIONS(1988), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(1990), 1, anon_sym_DOT, - ACTIONS(2008), 1, + ACTIONS(2004), 1, anon_sym_STAR_STAR, + ACTIONS(2010), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(944), 2, + ACTIONS(1992), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1994), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2000), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1056), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2064), 5, + ACTIONS(2002), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2052), 3, anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2062), 26, - sym__newline, + ACTIONS(2054), 18, anon_sym_COLON, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67938] = 8, - ACTIONS(1956), 1, + sym_type_conversion, + [67704] = 12, + ACTIONS(1986), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1988), 1, anon_sym_LPAREN, - ACTIONS(1962), 1, + ACTIONS(1990), 1, anon_sym_DOT, - ACTIONS(1978), 1, + ACTIONS(2004), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1114), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2050), 5, - anon_sym_as, + ACTIONS(1992), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2052), 26, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(1994), 2, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_LT_LT, + ACTIONS(2000), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1056), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2002), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [67994] = 3, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2103), 5, + ACTIONS(2052), 3, anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2105), 32, - sym__newline, - sym_string_start, - anon_sym_LBRACK, + ACTIONS(2054), 19, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [68040] = 5, - ACTIONS(2107), 1, + sym_type_conversion, + [67768] = 5, + ACTIONS(492), 1, sym_string_start, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(863), 2, + STATE(885), 2, sym_python_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1939), 5, + ACTIONS(1941), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1941), 29, + ACTIONS(1943), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -88237,8 +88723,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [68090] = 5, - ACTIONS(490), 1, + [67818] = 5, + ACTIONS(649), 1, sym_string_start, ACTIONS(3), 2, sym_line_continuation, @@ -88246,23 +88732,23 @@ static const uint16_t ts_small_parse_table[] = { STATE(884), 2, sym_python_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1946), 5, - anon_sym_EQ, + ACTIONS(1397), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1948), 29, + ACTIONS(1392), 29, anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -88282,80 +88768,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [68140] = 15, - ACTIONS(1956), 1, + [67868] = 20, + ACTIONS(1952), 1, + anon_sym_as, + ACTIONS(2063), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2065), 1, anon_sym_LPAREN, - ACTIONS(1962), 1, + ACTIONS(2067), 1, anon_sym_DOT, - ACTIONS(1978), 1, + ACTIONS(2075), 1, + anon_sym_not, + ACTIONS(2081), 1, anon_sym_STAR_STAR, - ACTIONS(1980), 1, + ACTIONS(2083), 1, anon_sym_PIPE, - ACTIONS(1982), 1, + ACTIONS(2085), 1, anon_sym_AMP, - ACTIONS(1984), 1, + ACTIONS(2087), 1, anon_sym_CARET, + ACTIONS(2091), 1, + anon_sym_is, + STATE(1431), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1966), 2, + ACTIONS(2069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1968), 2, + ACTIONS(2071), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1974), 2, + ACTIONS(2077), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1114), 2, + ACTIONS(2089), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1189), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1976), 3, + ACTIONS(2079), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2112), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2110), 16, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(2073), 6, anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, - [68210] = 3, + ACTIONS(1956), 7, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [67948] = 8, + ACTIONS(1954), 1, + anon_sym_LBRACK, + ACTIONS(1958), 1, + anon_sym_LPAREN, + ACTIONS(1960), 1, + anon_sym_DOT, + ACTIONS(1974), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2114), 5, + STATE(935), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2052), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2116), 32, + ACTIONS(2054), 26, sym__newline, - sym_string_start, - anon_sym_LBRACK, anon_sym_COLON, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -88369,7 +88866,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -88380,96 +88876,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [68256] = 15, - ACTIONS(1956), 1, + [68004] = 11, + ACTIONS(1954), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1958), 1, anon_sym_LPAREN, - ACTIONS(1962), 1, + ACTIONS(1960), 1, anon_sym_DOT, - ACTIONS(1978), 1, + ACTIONS(1974), 1, anon_sym_STAR_STAR, - ACTIONS(1980), 1, - anon_sym_PIPE, - ACTIONS(1982), 1, - anon_sym_AMP, - ACTIONS(1984), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1966), 2, + ACTIONS(1962), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1968), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1974), 2, + ACTIONS(1970), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1114), 2, + STATE(935), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1976), 3, + ACTIONS(1972), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2120), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2118), 16, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [68326] = 5, - ACTIONS(490), 1, - sym_string_start, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - STATE(864), 2, - sym_python_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1399), 5, + ACTIONS(2052), 3, anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 29, - anon_sym_LBRACK, + ACTIONS(2054), 21, + sym__newline, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -88480,125 +88927,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [68376] = 12, - ACTIONS(1956), 1, + [68066] = 15, + ACTIONS(1954), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1958), 1, anon_sym_LPAREN, - ACTIONS(1962), 1, + ACTIONS(1960), 1, anon_sym_DOT, - ACTIONS(1978), 1, + ACTIONS(1974), 1, anon_sym_STAR_STAR, + ACTIONS(1976), 1, + anon_sym_PIPE, + ACTIONS(1978), 1, + anon_sym_AMP, + ACTIONS(1980), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1966), 2, + ACTIONS(1962), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1968), 2, + ACTIONS(1964), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1974), 2, + ACTIONS(1970), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1114), 2, + STATE(935), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1976), 3, + ACTIONS(1972), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2050), 3, - anon_sym_as, + ACTIONS(2093), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 19, + ACTIONS(2095), 16, + sym__newline, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [68440] = 5, - ACTIONS(575), 1, - sym_string_start, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - STATE(853), 2, - sym_python_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1946), 5, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1948), 29, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [68490] = 8, - ACTIONS(1990), 1, + [68136] = 10, + ACTIONS(1954), 1, anon_sym_LBRACK, - ACTIONS(1992), 1, + ACTIONS(1958), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(1960), 1, anon_sym_DOT, - ACTIONS(2008), 1, + ACTIONS(1974), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(944), 2, + ACTIONS(1962), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(935), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2050), 5, + ACTIONS(1972), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2052), 3, anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 26, + ACTIONS(2054), 23, sym__newline, anon_sym_COLON, anon_sym_SEMI, @@ -88612,9 +89022,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -88625,30 +89032,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [68546] = 8, - ACTIONS(2020), 1, + [68196] = 8, + ACTIONS(1954), 1, anon_sym_LBRACK, - ACTIONS(2022), 1, + ACTIONS(1958), 1, anon_sym_LPAREN, - ACTIONS(2024), 1, + ACTIONS(1960), 1, anon_sym_DOT, - ACTIONS(2038), 1, + ACTIONS(1974), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1050), 2, + STATE(935), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2050), 5, + ACTIONS(2052), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 26, + ACTIONS(2054), 26, + sym__newline, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -88672,198 +89080,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [68602] = 8, - ACTIONS(2020), 1, + [68252] = 14, + ACTIONS(1954), 1, anon_sym_LBRACK, - ACTIONS(2022), 1, + ACTIONS(1958), 1, anon_sym_LPAREN, - ACTIONS(2024), 1, + ACTIONS(1960), 1, anon_sym_DOT, - ACTIONS(2038), 1, + ACTIONS(1974), 1, anon_sym_STAR_STAR, + ACTIONS(1978), 1, + anon_sym_AMP, + ACTIONS(1980), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1050), 2, + ACTIONS(1962), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1964), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1970), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(935), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2068), 5, + ACTIONS(1972), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2052), 3, anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2066), 26, + ACTIONS(2054), 17, + sym__newline, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [68658] = 20, - ACTIONS(1964), 1, - anon_sym_as, - ACTIONS(2122), 1, + [68320] = 15, + ACTIONS(1954), 1, anon_sym_LBRACK, - ACTIONS(2124), 1, + ACTIONS(1958), 1, anon_sym_LPAREN, - ACTIONS(2126), 1, + ACTIONS(1960), 1, anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_not, - ACTIONS(2140), 1, + ACTIONS(1974), 1, anon_sym_STAR_STAR, - ACTIONS(2142), 1, + ACTIONS(1976), 1, anon_sym_PIPE, - ACTIONS(2144), 1, + ACTIONS(1978), 1, anon_sym_AMP, - ACTIONS(2146), 1, + ACTIONS(1980), 1, anon_sym_CARET, - ACTIONS(2150), 1, - anon_sym_is, - STATE(1423), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2128), 2, + ACTIONS(1962), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2130), 2, + ACTIONS(1964), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2136), 2, + ACTIONS(1970), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2148), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1319), 2, + STATE(935), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2138), 3, + ACTIONS(1972), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2132), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1958), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [68738] = 8, - ACTIONS(2020), 1, - anon_sym_LBRACK, - ACTIONS(2022), 1, - anon_sym_LPAREN, - ACTIONS(2024), 1, - anon_sym_DOT, - ACTIONS(2038), 1, - anon_sym_STAR_STAR, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - STATE(1050), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2064), 5, + ACTIONS(2097), 3, anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2062), 26, + ACTIONS(2099), 16, + sym__newline, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [68794] = 11, - ACTIONS(2020), 1, + [68390] = 13, + ACTIONS(1954), 1, anon_sym_LBRACK, - ACTIONS(2022), 1, + ACTIONS(1958), 1, anon_sym_LPAREN, - ACTIONS(2024), 1, + ACTIONS(1960), 1, anon_sym_DOT, - ACTIONS(2038), 1, + ACTIONS(1974), 1, anon_sym_STAR_STAR, + ACTIONS(1980), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2026), 2, + ACTIONS(1962), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2034), 2, + ACTIONS(1964), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1970), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1050), 2, + STATE(935), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2036), 3, + ACTIONS(1972), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2050), 3, + ACTIONS(2052), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 21, + ACTIONS(2054), 18, + sym__newline, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_not, @@ -88871,115 +89236,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [68856] = 19, - ACTIONS(1990), 1, + [68456] = 13, + ACTIONS(2019), 1, anon_sym_LBRACK, - ACTIONS(1992), 1, + ACTIONS(2021), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2023), 1, anon_sym_DOT, - ACTIONS(2158), 1, - anon_sym_not, - ACTIONS(2164), 1, + ACTIONS(2037), 1, anon_sym_STAR_STAR, - ACTIONS(2166), 1, - anon_sym_PIPE, - ACTIONS(2168), 1, - anon_sym_AMP, - ACTIONS(2170), 1, + ACTIONS(2043), 1, anon_sym_CARET, - ACTIONS(2174), 1, - anon_sym_is, - STATE(1425), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2152), 2, + ACTIONS(2025), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2154), 2, + ACTIONS(2027), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2160), 2, + ACTIONS(2033), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2172), 2, - anon_sym_LT, - anon_sym_GT, - STATE(944), 2, + STATE(1079), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2162), 3, + ACTIONS(2035), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2156), 6, + ACTIONS(2052), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2054), 18, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_in, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1958), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [68934] = 15, - ACTIONS(2020), 1, + anon_sym_is, + [68522] = 12, + ACTIONS(1954), 1, anon_sym_LBRACK, - ACTIONS(2022), 1, + ACTIONS(1958), 1, anon_sym_LPAREN, - ACTIONS(2024), 1, + ACTIONS(1960), 1, anon_sym_DOT, - ACTIONS(2038), 1, + ACTIONS(1974), 1, anon_sym_STAR_STAR, - ACTIONS(2040), 1, - anon_sym_PIPE, - ACTIONS(2042), 1, - anon_sym_AMP, - ACTIONS(2044), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2026), 2, + ACTIONS(1962), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2028), 2, + ACTIONS(1964), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2034), 2, + ACTIONS(1970), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1050), 2, + STATE(935), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2036), 3, + ACTIONS(1972), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2060), 3, + ACTIONS(2052), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2058), 16, + ACTIONS(2054), 19, + sym__newline, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, anon_sym_in, @@ -88987,46 +89338,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [69004] = 11, - ACTIONS(1990), 1, + [68586] = 8, + ACTIONS(1986), 1, anon_sym_LBRACK, - ACTIONS(1992), 1, + ACTIONS(1988), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(1990), 1, anon_sym_DOT, - ACTIONS(2008), 1, + ACTIONS(2004), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1996), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2004), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(944), 2, + STATE(1056), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2006), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2050), 3, + ACTIONS(2101), 5, anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 21, - sym__newline, + ACTIONS(2103), 26, anon_sym_COLON, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -89035,6 +89379,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -89045,81 +89394,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [69066] = 10, - ACTIONS(1990), 1, + sym_type_conversion, + [68642] = 15, + ACTIONS(2019), 1, anon_sym_LBRACK, - ACTIONS(1992), 1, + ACTIONS(2021), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2023), 1, anon_sym_DOT, - ACTIONS(2008), 1, + ACTIONS(2037), 1, anon_sym_STAR_STAR, + ACTIONS(2039), 1, + anon_sym_PIPE, + ACTIONS(2041), 1, + anon_sym_AMP, + ACTIONS(2043), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1996), 2, + ACTIONS(2025), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(944), 2, + ACTIONS(2027), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2033), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1079), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2006), 3, + ACTIONS(2035), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2050), 3, - anon_sym_EQ, + ACTIONS(2093), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 23, - sym__newline, + ACTIONS(2095), 16, anon_sym_COLON, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [69126] = 8, - ACTIONS(1990), 1, + [68712] = 8, + ACTIONS(1986), 1, anon_sym_LBRACK, - ACTIONS(1992), 1, + ACTIONS(1988), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(1990), 1, anon_sym_DOT, - ACTIONS(2008), 1, + ACTIONS(2004), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(944), 2, + STATE(1056), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2050), 5, + ACTIONS(2105), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 26, - sym__newline, + ACTIONS(2107), 26, anon_sym_COLON, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -89143,113 +89497,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [69182] = 14, - ACTIONS(1990), 1, + sym_type_conversion, + [68768] = 11, + ACTIONS(2019), 1, anon_sym_LBRACK, - ACTIONS(1992), 1, + ACTIONS(2021), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2023), 1, anon_sym_DOT, - ACTIONS(2008), 1, + ACTIONS(2037), 1, anon_sym_STAR_STAR, - ACTIONS(2012), 1, - anon_sym_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1996), 2, + ACTIONS(2025), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1998), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2004), 2, + ACTIONS(2033), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(944), 2, + STATE(1079), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2006), 3, + ACTIONS(2035), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2050), 3, + ACTIONS(2052), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2054), 21, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [68830] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2109), 5, anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 17, + ACTIONS(2111), 32, sym__newline, + sym_string_start, + anon_sym_LBRACK, anon_sym_COLON, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [69250] = 20, - ACTIONS(1964), 1, + [68876] = 20, + ACTIONS(1952), 1, anon_sym_EQ, - ACTIONS(2176), 1, + ACTIONS(2113), 1, anon_sym_LBRACK, - ACTIONS(2178), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2180), 1, + ACTIONS(2117), 1, anon_sym_DOT, - ACTIONS(2188), 1, + ACTIONS(2125), 1, anon_sym_not, - ACTIONS(2194), 1, + ACTIONS(2131), 1, anon_sym_STAR_STAR, - ACTIONS(2196), 1, + ACTIONS(2133), 1, anon_sym_PIPE, - ACTIONS(2198), 1, + ACTIONS(2135), 1, anon_sym_AMP, - ACTIONS(2200), 1, + ACTIONS(2137), 1, anon_sym_CARET, - ACTIONS(2204), 1, + ACTIONS(2141), 1, anon_sym_is, - STATE(1405), 1, + STATE(1411), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2182), 2, + ACTIONS(2119), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2184), 2, + ACTIONS(2121), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2190), 2, + ACTIONS(2127), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2202), 2, + ACTIONS(2139), 2, anon_sym_LT, anon_sym_GT, - STATE(1175), 2, + STATE(1223), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2192), 3, + ACTIONS(2129), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2186), 6, + ACTIONS(2123), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1958), 7, + ACTIONS(1956), 7, anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, @@ -89257,77 +89652,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_and, anon_sym_or, - [69330] = 5, - ACTIONS(2206), 1, + [68956] = 5, + ACTIONS(2143), 1, sym_string_start, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(884), 2, + STATE(877), 2, sym_python_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1939), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1941), 29, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(1945), 5, anon_sym_as, - anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_else, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [69380] = 5, - ACTIONS(599), 1, - sym_string_start, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - STATE(863), 2, - sym_python_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1946), 5, - anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1948), 29, + ACTIONS(1947), 29, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -89347,52 +89697,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [69430] = 15, - ACTIONS(1990), 1, + [69006] = 15, + ACTIONS(2019), 1, anon_sym_LBRACK, - ACTIONS(1992), 1, + ACTIONS(2021), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2023), 1, anon_sym_DOT, - ACTIONS(2008), 1, + ACTIONS(2037), 1, anon_sym_STAR_STAR, - ACTIONS(2010), 1, + ACTIONS(2039), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2041), 1, anon_sym_AMP, - ACTIONS(2014), 1, + ACTIONS(2043), 1, anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1996), 2, + ACTIONS(2025), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1998), 2, + ACTIONS(2027), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2004), 2, + ACTIONS(2033), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(944), 2, + STATE(1079), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2006), 3, + ACTIONS(2035), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2120), 3, - anon_sym_EQ, + ACTIONS(2059), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2118), 16, - sym__newline, + ACTIONS(2061), 16, anon_sym_COLON, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_as, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -89402,31 +89752,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [69500] = 4, - ACTIONS(1385), 1, - anon_sym_COLON_EQ, + [69076] = 8, + ACTIONS(2019), 1, + anon_sym_LBRACK, + ACTIONS(2021), 1, + anon_sym_LPAREN, + ACTIONS(2023), 1, + anon_sym_DOT, + ACTIONS(2037), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 6, - anon_sym_EQ, - anon_sym_COLON, + STATE(1079), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2105), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 30, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + ACTIONS(2107), 26, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -89435,7 +89790,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -89446,88 +89800,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [69548] = 15, - ACTIONS(1990), 1, + [69132] = 8, + ACTIONS(2019), 1, anon_sym_LBRACK, - ACTIONS(1992), 1, + ACTIONS(2021), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2023), 1, anon_sym_DOT, - ACTIONS(2008), 1, + ACTIONS(2037), 1, anon_sym_STAR_STAR, - ACTIONS(2010), 1, - anon_sym_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1996), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1998), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2004), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(944), 2, + STATE(1079), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2006), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2112), 3, - anon_sym_EQ, + ACTIONS(2101), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2110), 16, - sym__newline, + ACTIONS(2103), 26, anon_sym_COLON, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [69618] = 10, - ACTIONS(1956), 1, + [69188] = 10, + ACTIONS(2019), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2021), 1, anon_sym_LPAREN, - ACTIONS(1962), 1, + ACTIONS(2023), 1, anon_sym_DOT, - ACTIONS(1978), 1, + ACTIONS(2037), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1966), 2, + ACTIONS(2025), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1114), 2, + STATE(1079), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1976), 3, + ACTIONS(2035), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2050), 3, + ACTIONS(2052), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 23, + ACTIONS(2054), 23, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, @@ -89551,127 +89898,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [69678] = 15, - ACTIONS(1990), 1, + [69248] = 19, + ACTIONS(1954), 1, anon_sym_LBRACK, - ACTIONS(1992), 1, + ACTIONS(1958), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(1960), 1, anon_sym_DOT, - ACTIONS(2008), 1, + ACTIONS(2152), 1, + anon_sym_not, + ACTIONS(2158), 1, anon_sym_STAR_STAR, - ACTIONS(2010), 1, + ACTIONS(2160), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2162), 1, anon_sym_AMP, - ACTIONS(2014), 1, + ACTIONS(2164), 1, anon_sym_CARET, + ACTIONS(2168), 1, + anon_sym_is, + STATE(1432), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1996), 2, + ACTIONS(2146), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1998), 2, + ACTIONS(2148), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2004), 2, + ACTIONS(2154), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(944), 2, + ACTIONS(2166), 2, + anon_sym_LT, + anon_sym_GT, + STATE(935), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2006), 3, + ACTIONS(2156), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2060), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2058), 16, + ACTIONS(2150), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1956), 8, sym__newline, - anon_sym_COLON, anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, - anon_sym_in, anon_sym_if, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [69748] = 10, - ACTIONS(2020), 1, + [69326] = 15, + ACTIONS(2019), 1, anon_sym_LBRACK, - ACTIONS(2022), 1, + ACTIONS(2021), 1, anon_sym_LPAREN, - ACTIONS(2024), 1, + ACTIONS(2023), 1, anon_sym_DOT, - ACTIONS(2038), 1, + ACTIONS(2037), 1, anon_sym_STAR_STAR, + ACTIONS(2039), 1, + anon_sym_PIPE, + ACTIONS(2041), 1, + anon_sym_AMP, + ACTIONS(2043), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2026), 2, + ACTIONS(2025), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1050), 2, + ACTIONS(2027), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2033), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1079), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2036), 3, + ACTIONS(2035), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2050), 3, - anon_sym_EQ, + ACTIONS(2097), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 23, + ACTIONS(2099), 16, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [69808] = 5, - ACTIONS(2209), 1, + [69396] = 5, + ACTIONS(649), 1, sym_string_start, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(892), 2, + STATE(902), 2, sym_python_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1939), 5, + ACTIONS(1941), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1941), 29, + ACTIONS(1943), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -89701,35 +90057,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [69858] = 8, - ACTIONS(2020), 1, - anon_sym_LBRACK, - ACTIONS(2022), 1, - anon_sym_LPAREN, - ACTIONS(2024), 1, - anon_sym_DOT, - ACTIONS(2038), 1, - anon_sym_STAR_STAR, + [69446] = 5, + ACTIONS(2170), 1, + sym_string_start, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1050), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2050), 5, + STATE(885), 2, + sym_python_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1945), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 26, + ACTIONS(1947), 29, + anon_sym_LBRACK, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -89738,6 +90091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -89748,96 +90102,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [69914] = 14, - ACTIONS(2020), 1, - anon_sym_LBRACK, - ACTIONS(2022), 1, - anon_sym_LPAREN, - ACTIONS(2024), 1, - anon_sym_DOT, - ACTIONS(2038), 1, - anon_sym_STAR_STAR, - ACTIONS(2042), 1, - anon_sym_AMP, - ACTIONS(2044), 1, - anon_sym_CARET, + [69496] = 4, + ACTIONS(290), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2026), 2, + ACTIONS(302), 6, + anon_sym_EQ, + anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2028), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(300), 30, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2034), 2, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - STATE(1050), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2036), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2050), 3, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [69544] = 4, + ACTIONS(290), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(302), 6, anon_sym_EQ, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 17, - anon_sym_COLON, - anon_sym_RBRACE, + ACTIONS(300), 30, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [69982] = 13, - ACTIONS(2020), 1, + [69592] = 15, + ACTIONS(1986), 1, anon_sym_LBRACK, - ACTIONS(2022), 1, + ACTIONS(1988), 1, anon_sym_LPAREN, - ACTIONS(2024), 1, + ACTIONS(1990), 1, anon_sym_DOT, - ACTIONS(2038), 1, + ACTIONS(2004), 1, anon_sym_STAR_STAR, - ACTIONS(2044), 1, + ACTIONS(2006), 1, + anon_sym_PIPE, + ACTIONS(2008), 1, + anon_sym_AMP, + ACTIONS(2010), 1, anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2026), 2, + ACTIONS(1992), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2028), 2, + ACTIONS(1994), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2034), 2, + ACTIONS(2000), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1050), 2, + STATE(1056), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2036), 3, + ACTIONS(2002), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2050), 3, + ACTIONS(2097), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 18, + ACTIONS(2099), 16, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, @@ -89847,8 +90238,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -89856,99 +90245,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [70048] = 12, - ACTIONS(2020), 1, - anon_sym_LBRACK, - ACTIONS(2022), 1, - anon_sym_LPAREN, - ACTIONS(2024), 1, - anon_sym_DOT, - ACTIONS(2038), 1, - anon_sym_STAR_STAR, + [69662] = 5, + ACTIONS(540), 1, + sym_string_start, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2026), 2, + STATE(900), 2, + sym_python_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1397), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2028), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2034), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1050), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2036), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2050), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 19, + ACTIONS(1392), 29, + anon_sym_LBRACK, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [70112] = 15, - ACTIONS(2020), 1, + [69712] = 15, + ACTIONS(1954), 1, anon_sym_LBRACK, - ACTIONS(2022), 1, + ACTIONS(1958), 1, anon_sym_LPAREN, - ACTIONS(2024), 1, + ACTIONS(1960), 1, anon_sym_DOT, - ACTIONS(2038), 1, + ACTIONS(1974), 1, anon_sym_STAR_STAR, - ACTIONS(2040), 1, + ACTIONS(1976), 1, anon_sym_PIPE, - ACTIONS(2042), 1, + ACTIONS(1978), 1, anon_sym_AMP, - ACTIONS(2044), 1, + ACTIONS(1980), 1, anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2026), 2, + ACTIONS(1962), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2028), 2, + ACTIONS(1964), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2034), 2, + ACTIONS(1970), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1050), 2, + STATE(935), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2036), 3, + ACTIONS(1972), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2120), 3, + ACTIONS(2059), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2118), 16, + ACTIONS(2061), 16, + sym__newline, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, anon_sym_in, @@ -89962,81 +90345,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [70182] = 8, - ACTIONS(1956), 1, + [69782] = 15, + ACTIONS(1986), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1988), 1, anon_sym_LPAREN, - ACTIONS(1962), 1, + ACTIONS(1990), 1, anon_sym_DOT, - ACTIONS(1978), 1, + ACTIONS(2004), 1, anon_sym_STAR_STAR, + ACTIONS(2006), 1, + anon_sym_PIPE, + ACTIONS(2008), 1, + anon_sym_AMP, + ACTIONS(2010), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1114), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2050), 5, - anon_sym_as, + ACTIONS(1992), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1994), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2000), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1056), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2002), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2093), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 26, + ACTIONS(2095), 16, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70238] = 5, - ACTIONS(623), 1, - sym_string_start, + sym_type_conversion, + [69852] = 4, + ACTIONS(1383), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(892), 2, - sym_python_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1946), 5, - anon_sym_as, + ACTIONS(1397), 6, + anon_sym_EQ, + anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1948), 29, + ACTIONS(1392), 30, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -90056,101 +90444,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70288] = 15, - ACTIONS(2020), 1, + [69900] = 20, + ACTIONS(1952), 1, + anon_sym_as, + ACTIONS(2173), 1, anon_sym_LBRACK, - ACTIONS(2022), 1, + ACTIONS(2175), 1, anon_sym_LPAREN, - ACTIONS(2024), 1, + ACTIONS(2177), 1, anon_sym_DOT, - ACTIONS(2038), 1, + ACTIONS(2185), 1, + anon_sym_not, + ACTIONS(2191), 1, anon_sym_STAR_STAR, - ACTIONS(2040), 1, + ACTIONS(2193), 1, anon_sym_PIPE, - ACTIONS(2042), 1, + ACTIONS(2195), 1, anon_sym_AMP, - ACTIONS(2044), 1, + ACTIONS(2197), 1, anon_sym_CARET, + ACTIONS(2201), 1, + anon_sym_is, + STATE(1422), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2026), 2, + ACTIONS(2179), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2028), 2, + ACTIONS(2181), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2034), 2, + ACTIONS(2187), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1050), 2, + ACTIONS(2199), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1239), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2036), 3, + ACTIONS(2189), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2112), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2110), 16, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2183), 6, anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [70358] = 14, - ACTIONS(1956), 1, - anon_sym_LBRACK, - ACTIONS(1960), 1, - anon_sym_LPAREN, - ACTIONS(1962), 1, - anon_sym_DOT, - ACTIONS(1978), 1, - anon_sym_STAR_STAR, - ACTIONS(1982), 1, - anon_sym_AMP, - ACTIONS(1984), 1, - anon_sym_CARET, + ACTIONS(1956), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [69980] = 5, + ACTIONS(593), 1, + sym_string_start, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1966), 2, + STATE(846), 2, + sym_python_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1397), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1968), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1974), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1114), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1976), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2050), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 17, - anon_sym_COLON, - anon_sym_RBRACE, + ACTIONS(1392), 29, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_async, @@ -90158,88 +90533,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70426] = 12, - ACTIONS(1990), 1, - anon_sym_LBRACK, - ACTIONS(1992), 1, + [70030] = 19, + ACTIONS(1958), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2008), 1, + ACTIONS(1968), 1, + anon_sym_not, + ACTIONS(1974), 1, anon_sym_STAR_STAR, + ACTIONS(1976), 1, + anon_sym_PIPE, + ACTIONS(1978), 1, + anon_sym_AMP, + ACTIONS(1980), 1, + anon_sym_CARET, + ACTIONS(1984), 1, + anon_sym_is, + ACTIONS(2203), 1, + anon_sym_LBRACK, + ACTIONS(2205), 1, + anon_sym_DOT, + STATE(1402), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1996), 2, + ACTIONS(1962), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1998), 2, + ACTIONS(1964), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2004), 2, + ACTIONS(1970), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(944), 2, + ACTIONS(1982), 2, + anon_sym_LT, + anon_sym_GT, + STATE(935), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2006), 3, + ACTIONS(1972), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2050), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2052), 19, + ACTIONS(1966), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1956), 8, sym__newline, anon_sym_COLON, anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, - anon_sym_in, anon_sym_if, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [70490] = 4, - ACTIONS(1385), 1, - anon_sym_COLON_EQ, + [70108] = 8, + ACTIONS(2019), 1, + anon_sym_LBRACK, + ACTIONS(2021), 1, + anon_sym_LPAREN, + ACTIONS(2023), 1, + anon_sym_DOT, + ACTIONS(2037), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 6, - anon_sym_EQ, - anon_sym_COLON, + STATE(1079), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2052), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 29, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(2054), 26, + anon_sym_COLON, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -90248,7 +90646,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -90259,28 +90656,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [70537] = 6, - ACTIONS(1385), 1, - anon_sym_COLON_EQ, - ACTIONS(2212), 1, - anon_sym_LBRACK, - STATE(1794), 1, - sym_type_parameter, + [70164] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 6, + ACTIONS(2207), 5, anon_sym_EQ, - anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 27, + ACTIONS(2209), 32, + sym__newline, + sym_string_start, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -90305,44 +90699,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70588] = 14, - ACTIONS(2073), 1, + [70210] = 14, + ACTIONS(2019), 1, anon_sym_LBRACK, - ACTIONS(2075), 1, + ACTIONS(2021), 1, anon_sym_LPAREN, - ACTIONS(2077), 1, + ACTIONS(2023), 1, anon_sym_DOT, - ACTIONS(2091), 1, + ACTIONS(2037), 1, anon_sym_STAR_STAR, - ACTIONS(2095), 1, + ACTIONS(2041), 1, anon_sym_AMP, - ACTIONS(2097), 1, + ACTIONS(2043), 1, anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2079), 2, + ACTIONS(2025), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2081), 2, + ACTIONS(2027), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2087), 2, + ACTIONS(2033), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1261), 2, + STATE(1079), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2050), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2089), 3, + ACTIONS(2035), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2052), 16, - anon_sym_RBRACK, + ACTIONS(2052), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2054), 17, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_in, anon_sym_if, @@ -90358,24 +90753,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70655] = 3, + [70278] = 8, + ACTIONS(1954), 1, + anon_sym_LBRACK, + ACTIONS(1958), 1, + anon_sym_LPAREN, + ACTIONS(1960), 1, + anon_sym_DOT, + ACTIONS(1974), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1423), 5, + STATE(935), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2101), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1425), 31, + ACTIONS(2103), 26, sym__newline, - anon_sym_LBRACK, anon_sym_COLON, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -90389,7 +90791,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -90400,24 +90801,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70700] = 3, + [70334] = 5, + ACTIONS(540), 1, + sym_string_start, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1423), 5, + STATE(847), 2, + sym_python_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1941), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1425), 31, - sym__newline, + ACTIONS(1943), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DOT, - anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -90442,24 +90846,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70745] = 3, + [70384] = 8, + ACTIONS(1954), 1, + anon_sym_LBRACK, + ACTIONS(1958), 1, + anon_sym_LPAREN, + ACTIONS(1960), 1, + anon_sym_DOT, + ACTIONS(1974), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1415), 5, + STATE(935), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2105), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 31, + ACTIONS(2107), 26, sym__newline, - anon_sym_LBRACK, anon_sym_COLON, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -90473,7 +90884,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -90484,43 +90894,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70790] = 13, - ACTIONS(2073), 1, - anon_sym_LBRACK, - ACTIONS(2075), 1, - anon_sym_LPAREN, - ACTIONS(2077), 1, - anon_sym_DOT, - ACTIONS(2091), 1, - anon_sym_STAR_STAR, - ACTIONS(2097), 1, - anon_sym_CARET, + [70440] = 5, + ACTIONS(2211), 1, + sym_string_start, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2079), 2, + STATE(902), 2, + sym_python_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1945), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2081), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2087), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1261), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2050), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2089), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 17, + ACTIONS(1947), 29, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_async, @@ -90528,49 +90923,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70855] = 12, - ACTIONS(2073), 1, - anon_sym_LBRACK, - ACTIONS(2075), 1, - anon_sym_LPAREN, - ACTIONS(2077), 1, - anon_sym_DOT, - ACTIONS(2091), 1, - anon_sym_STAR_STAR, + [70490] = 4, + ACTIONS(290), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2079), 2, + ACTIONS(302), 6, + anon_sym_COLON, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2081), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2087), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1261), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2050), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2089), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 18, - anon_sym_RBRACK, + ACTIONS(300), 29, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_async, @@ -90578,26 +90966,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70918] = 3, + [70537] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1478), 5, + ACTIONS(2214), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1480), 31, + ACTIONS(2216), 31, sym__newline, anon_sym_LBRACK, anon_sym_COLON, @@ -90629,36 +91024,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70963] = 11, - ACTIONS(2073), 1, + [70582] = 8, + ACTIONS(2063), 1, anon_sym_LBRACK, - ACTIONS(2075), 1, + ACTIONS(2065), 1, anon_sym_LPAREN, - ACTIONS(2077), 1, + ACTIONS(2067), 1, anon_sym_DOT, - ACTIONS(2091), 1, + ACTIONS(2081), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2079), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2087), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1261), 2, + STATE(1189), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2050), 3, + ACTIONS(2101), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2089), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 20, + ACTIONS(2103), 25, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_GT_GT, @@ -90669,6 +91056,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -90679,89 +91071,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71024] = 15, - ACTIONS(2073), 1, + [70637] = 6, + ACTIONS(1383), 1, + anon_sym_COLON_EQ, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2075), 1, - anon_sym_LPAREN, - ACTIONS(2077), 1, - anon_sym_DOT, - ACTIONS(2091), 1, - anon_sym_STAR_STAR, - ACTIONS(2093), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_AMP, - ACTIONS(2097), 1, - anon_sym_CARET, + STATE(1808), 1, + sym_type_parameter, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2079), 2, + ACTIONS(1397), 6, + anon_sym_EQ, + anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2081), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2087), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1261), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2060), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2089), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2058), 15, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [71093] = 8, - ACTIONS(2073), 1, - anon_sym_LBRACK, - ACTIONS(2075), 1, + ACTIONS(1392), 27, anon_sym_LPAREN, - ACTIONS(2077), 1, + anon_sym_RPAREN, anon_sym_DOT, - ACTIONS(2091), 1, - anon_sym_STAR_STAR, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - STATE(1261), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2050), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2052), 25, - anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -90770,6 +91105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -90780,130 +91116,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71148] = 15, - ACTIONS(2176), 1, + [70688] = 23, + ACTIONS(7), 1, + anon_sym_unset, + ACTIONS(9), 1, + anon_sym_inherit, + ACTIONS(11), 1, + anon_sym_inherit_defer, + ACTIONS(13), 1, + anon_sym_include, + ACTIONS(15), 1, + anon_sym_require, + ACTIONS(17), 1, + anon_sym_export, + ACTIONS(19), 1, + anon_sym_OVERRIDES, + ACTIONS(21), 1, + anon_sym_EXPORT_FUNCTIONS, + ACTIONS(23), 1, + anon_sym_addtask, + ACTIONS(25), 1, + anon_sym_deltask, + ACTIONS(27), 1, + anon_sym_addhandler, + ACTIONS(29), 1, + anon_sym_fakeroot, + ACTIONS(31), 1, + anon_sym_python, + ACTIONS(33), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(35), 1, + anon_sym_def, + ACTIONS(37), 1, + sym_identifier, + ACTIONS(39), 1, + aux_sym__dotted_identifier_token1, + ACTIONS(2220), 1, + ts_builtin_sym_end, + STATE(930), 1, + aux_sym_recipe_repeat1, + STATE(1518), 1, + sym_concatenation, + STATE(2332), 1, + sym_variable_expansion, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(2324), 15, + sym_variable_assignment, + sym_unset_statement, + sym_inherit_directive, + sym_inherit_defer_directive, + sym_include_directive, + sym_require_directive, + sym_export_statement, + sym_overrides_statement, + sym_export_functions_statement, + sym_addtask_statement, + sym_deltask_statement, + sym_addhandler_statement, + sym_anonymous_python_function, + sym_function_definition, + sym_python_function_definition, + [70773] = 12, + ACTIONS(2063), 1, anon_sym_LBRACK, - ACTIONS(2178), 1, + ACTIONS(2065), 1, anon_sym_LPAREN, - ACTIONS(2180), 1, + ACTIONS(2067), 1, anon_sym_DOT, - ACTIONS(2194), 1, + ACTIONS(2081), 1, anon_sym_STAR_STAR, - ACTIONS(2196), 1, - anon_sym_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2182), 2, + ACTIONS(2069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2184), 2, + ACTIONS(2071), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2190), 2, + ACTIONS(2077), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1175), 2, + STATE(1189), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2120), 3, - anon_sym_EQ, + ACTIONS(2052), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2192), 3, + ACTIONS(2079), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2118), 15, - anon_sym_COLON, - anon_sym_RPAREN, + ACTIONS(2054), 18, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_as, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71217] = 8, - ACTIONS(2122), 1, + [70836] = 8, + ACTIONS(2113), 1, anon_sym_LBRACK, - ACTIONS(2124), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2126), 1, + ACTIONS(2117), 1, anon_sym_DOT, - ACTIONS(2140), 1, + ACTIONS(2131), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1319), 2, + STATE(1223), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2068), 5, - anon_sym_as, + ACTIONS(2105), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2066), 25, + ACTIONS(2107), 25, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [71272] = 3, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2103), 5, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2105), 31, - sym_string_start, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -90912,7 +91266,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -90923,96 +91276,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71317] = 8, - ACTIONS(2176), 1, + [70891] = 13, + ACTIONS(2063), 1, anon_sym_LBRACK, - ACTIONS(2178), 1, + ACTIONS(2065), 1, anon_sym_LPAREN, - ACTIONS(2180), 1, + ACTIONS(2067), 1, anon_sym_DOT, - ACTIONS(2194), 1, + ACTIONS(2081), 1, anon_sym_STAR_STAR, + ACTIONS(2087), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1175), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2050), 5, - anon_sym_EQ, + ACTIONS(2069), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2071), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2077), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1189), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2052), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 25, - anon_sym_COLON, - anon_sym_RPAREN, + ACTIONS(2079), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2054), 17, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71372] = 14, - ACTIONS(2176), 1, + [70956] = 14, + ACTIONS(2063), 1, anon_sym_LBRACK, - ACTIONS(2178), 1, + ACTIONS(2065), 1, anon_sym_LPAREN, - ACTIONS(2180), 1, + ACTIONS(2067), 1, anon_sym_DOT, - ACTIONS(2194), 1, + ACTIONS(2081), 1, anon_sym_STAR_STAR, - ACTIONS(2198), 1, + ACTIONS(2085), 1, anon_sym_AMP, - ACTIONS(2200), 1, + ACTIONS(2087), 1, anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2182), 2, + ACTIONS(2069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2184), 2, + ACTIONS(2071), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2190), 2, + ACTIONS(2077), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1175), 2, + STATE(1189), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2050), 3, - anon_sym_EQ, + ACTIONS(2052), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2192), 3, + ACTIONS(2079), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2052), 16, - anon_sym_COLON, - anon_sym_RPAREN, + ACTIONS(2054), 16, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_as, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -91023,33 +91381,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71439] = 10, - ACTIONS(2073), 1, + [71023] = 8, + ACTIONS(2063), 1, anon_sym_LBRACK, - ACTIONS(2075), 1, + ACTIONS(2065), 1, anon_sym_LPAREN, - ACTIONS(2077), 1, + ACTIONS(2067), 1, anon_sym_DOT, - ACTIONS(2091), 1, + ACTIONS(2081), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2079), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1261), 2, + STATE(1189), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2050), 3, + ACTIONS(2052), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2089), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 22, + ACTIONS(2054), 25, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_GT_GT, @@ -91062,6 +91415,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -91072,28 +91428,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71498] = 8, - ACTIONS(2073), 1, + [71078] = 10, + ACTIONS(2063), 1, anon_sym_LBRACK, - ACTIONS(2075), 1, + ACTIONS(2065), 1, anon_sym_LPAREN, - ACTIONS(2077), 1, + ACTIONS(2067), 1, anon_sym_DOT, - ACTIONS(2091), 1, + ACTIONS(2081), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1261), 2, + ACTIONS(2069), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1189), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2050), 5, + ACTIONS(2052), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 25, + ACTIONS(2079), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2054), 22, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_GT_GT, @@ -91106,9 +91467,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -91119,89 +91477,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71553] = 20, - ACTIONS(1964), 1, - anon_sym_EQ, - ACTIONS(2214), 1, + [71137] = 15, + ACTIONS(2063), 1, anon_sym_LBRACK, - ACTIONS(2216), 1, + ACTIONS(2065), 1, anon_sym_LPAREN, - ACTIONS(2218), 1, + ACTIONS(2067), 1, anon_sym_DOT, - ACTIONS(2226), 1, - anon_sym_not, - ACTIONS(2232), 1, + ACTIONS(2081), 1, anon_sym_STAR_STAR, - ACTIONS(2234), 1, + ACTIONS(2083), 1, anon_sym_PIPE, - ACTIONS(2236), 1, + ACTIONS(2085), 1, anon_sym_AMP, - ACTIONS(2238), 1, + ACTIONS(2087), 1, anon_sym_CARET, - ACTIONS(2242), 1, - anon_sym_is, - STATE(1414), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2220), 2, + ACTIONS(2069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2222), 2, + ACTIONS(2071), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2228), 2, + ACTIONS(2077), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2240), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1226), 2, + STATE(1189), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2230), 3, + ACTIONS(2059), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2079), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1958), 6, - anon_sym_COLON, + ACTIONS(2061), 15, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_as, + anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2224), 6, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71632] = 4, - ACTIONS(288), 1, - anon_sym_COLON_EQ, + anon_sym_is, + [71206] = 8, + ACTIONS(2113), 1, + anon_sym_LBRACK, + ACTIONS(2115), 1, + anon_sym_LPAREN, + ACTIONS(2117), 1, + anon_sym_DOT, + ACTIONS(2131), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 6, - anon_sym_COLON, - anon_sym_as, + STATE(1223), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2101), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 29, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_DOT, + ACTIONS(2103), 25, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -91210,7 +91568,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -91221,27 +91578,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71679] = 5, - ACTIONS(288), 1, - anon_sym_COLON_EQ, - ACTIONS(551), 1, - anon_sym_EQ, + [71261] = 15, + ACTIONS(2173), 1, + anon_sym_LBRACK, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2191), 1, + anon_sym_STAR_STAR, + ACTIONS(2193), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_AMP, + ACTIONS(2197), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 5, - anon_sym_as, + ACTIONS(2179), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2181), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2187), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1239), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2097), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 29, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(2189), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2099), 15, anon_sym_RPAREN, - anon_sym_DOT, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_async, @@ -91249,12 +91626,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [71330] = 11, + ACTIONS(2063), 1, + anon_sym_LBRACK, + ACTIONS(2065), 1, + anon_sym_LPAREN, + ACTIONS(2067), 1, + anon_sym_DOT, + ACTIONS(2081), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2069), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2077), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1189), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2052), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2079), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, + ACTIONS(2054), 20, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -91265,69 +91682,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71728] = 13, - ACTIONS(2176), 1, + [71391] = 15, + ACTIONS(2173), 1, anon_sym_LBRACK, - ACTIONS(2178), 1, + ACTIONS(2175), 1, anon_sym_LPAREN, - ACTIONS(2180), 1, + ACTIONS(2177), 1, anon_sym_DOT, - ACTIONS(2194), 1, + ACTIONS(2191), 1, anon_sym_STAR_STAR, - ACTIONS(2200), 1, + ACTIONS(2193), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_AMP, + ACTIONS(2197), 1, anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2182), 2, + ACTIONS(2179), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2184), 2, + ACTIONS(2181), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2190), 2, + ACTIONS(2187), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1175), 2, + STATE(1239), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2050), 3, - anon_sym_EQ, + ACTIONS(2093), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2192), 3, + ACTIONS(2189), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2052), 17, - anon_sym_COLON, + ACTIONS(2095), 15, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_in, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [71460] = 8, + ACTIONS(2063), 1, + anon_sym_LBRACK, + ACTIONS(2065), 1, + anon_sym_LPAREN, + ACTIONS(2067), 1, + anon_sym_DOT, + ACTIONS(2081), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(1189), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2052), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2054), 25, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71793] = 3, + [71515] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1419), 5, + ACTIONS(1403), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 31, + ACTIONS(1405), 31, sym__newline, anon_sym_LBRACK, anon_sym_COLON, @@ -91359,17 +91825,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71838] = 3, + [71560] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1419), 5, + ACTIONS(1403), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 31, + ACTIONS(1405), 31, sym__newline, anon_sym_LBRACK, anon_sym_COLON, @@ -91401,47 +91867,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71883] = 15, - ACTIONS(2176), 1, + [71605] = 15, + ACTIONS(1954), 1, anon_sym_LBRACK, - ACTIONS(2178), 1, + ACTIONS(1958), 1, anon_sym_LPAREN, - ACTIONS(2180), 1, + ACTIONS(1960), 1, anon_sym_DOT, - ACTIONS(2194), 1, + ACTIONS(2158), 1, anon_sym_STAR_STAR, - ACTIONS(2196), 1, + ACTIONS(2160), 1, anon_sym_PIPE, - ACTIONS(2198), 1, + ACTIONS(2162), 1, anon_sym_AMP, - ACTIONS(2200), 1, + ACTIONS(2164), 1, anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2182), 2, + ACTIONS(2093), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2146), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2184), 2, + ACTIONS(2148), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2190), 2, + ACTIONS(2154), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1175), 2, + STATE(935), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2112), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2192), 3, + ACTIONS(2156), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2110), 15, - anon_sym_COLON, - anon_sym_RPAREN, + ACTIONS(2095), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_in, @@ -91455,82 +91921,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71952] = 8, - ACTIONS(2122), 1, + [71674] = 15, + ACTIONS(1954), 1, anon_sym_LBRACK, - ACTIONS(2124), 1, + ACTIONS(1958), 1, anon_sym_LPAREN, - ACTIONS(2126), 1, + ACTIONS(1960), 1, anon_sym_DOT, - ACTIONS(2140), 1, + ACTIONS(2158), 1, anon_sym_STAR_STAR, + ACTIONS(2160), 1, + anon_sym_PIPE, + ACTIONS(2162), 1, + anon_sym_AMP, + ACTIONS(2164), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1319), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2064), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2097), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2062), 25, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2146), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2148), 2, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_LT_LT, + ACTIONS(2154), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(935), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2156), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(2099), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72007] = 10, - ACTIONS(2176), 1, - anon_sym_LBRACK, - ACTIONS(2178), 1, - anon_sym_LPAREN, - ACTIONS(2180), 1, - anon_sym_DOT, - ACTIONS(2194), 1, - anon_sym_STAR_STAR, + [71743] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2182), 2, + ACTIONS(1407), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - STATE(1175), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2050), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2192), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 22, + ACTIONS(1409), 31, + sym__newline, + anon_sym_LBRACK, anon_sym_COLON, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -91541,6 +92003,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -91551,17 +92017,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72066] = 3, + [71788] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1474), 5, + ACTIONS(1407), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1476), 31, + ACTIONS(1409), 31, sym__newline, anon_sym_LBRACK, anon_sym_COLON, @@ -91593,26 +92059,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72111] = 5, - ACTIONS(2244), 1, - sym_string_start, + [71833] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(932), 2, - sym_python_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1939), 4, + ACTIONS(1436), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1941), 29, + ACTIONS(1438), 31, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -91637,75 +92101,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72160] = 5, - ACTIONS(1385), 1, - anon_sym_COLON_EQ, - ACTIONS(2247), 1, - anon_sym_EQ, + [71878] = 15, + ACTIONS(2113), 1, + anon_sym_LBRACK, + ACTIONS(2115), 1, + anon_sym_LPAREN, + ACTIONS(2117), 1, + anon_sym_DOT, + ACTIONS(2131), 1, + anon_sym_STAR_STAR, + ACTIONS(2133), 1, + anon_sym_PIPE, + ACTIONS(2135), 1, + anon_sym_AMP, + ACTIONS(2137), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 5, - anon_sym_as, + ACTIONS(2119), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2121), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2127), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1223), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2093), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 29, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(2129), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2095), 15, + anon_sym_COLON, anon_sym_RPAREN, - anon_sym_DOT, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [71947] = 15, + ACTIONS(2113), 1, + anon_sym_LBRACK, + ACTIONS(2115), 1, + anon_sym_LPAREN, + ACTIONS(2117), 1, + anon_sym_DOT, + ACTIONS(2131), 1, anon_sym_STAR_STAR, + ACTIONS(2133), 1, anon_sym_PIPE, + ACTIONS(2135), 1, anon_sym_AMP, + ACTIONS(2137), 1, anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2119), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2121), 2, + anon_sym_GT_GT, anon_sym_LT_LT, + ACTIONS(2127), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1223), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2097), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2129), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2099), 15, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72209] = 5, - ACTIONS(288), 1, - anon_sym_COLON_EQ, - ACTIONS(551), 1, - anon_sym_EQ, + [72016] = 5, + ACTIONS(2222), 1, + sym_string_start, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 5, - anon_sym_as, + STATE(929), 2, + sym_python_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1945), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 29, + ACTIONS(1947), 29, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -91725,131 +92253,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72258] = 11, - ACTIONS(2176), 1, + [72065] = 23, + ACTIONS(2225), 1, + ts_builtin_sym_end, + ACTIONS(2227), 1, + anon_sym_unset, + ACTIONS(2230), 1, + anon_sym_inherit, + ACTIONS(2233), 1, + anon_sym_inherit_defer, + ACTIONS(2236), 1, + anon_sym_include, + ACTIONS(2239), 1, + anon_sym_require, + ACTIONS(2242), 1, + anon_sym_export, + ACTIONS(2245), 1, + anon_sym_OVERRIDES, + ACTIONS(2248), 1, + anon_sym_EXPORT_FUNCTIONS, + ACTIONS(2251), 1, + anon_sym_addtask, + ACTIONS(2254), 1, + anon_sym_deltask, + ACTIONS(2257), 1, + anon_sym_addhandler, + ACTIONS(2260), 1, + anon_sym_fakeroot, + ACTIONS(2263), 1, + anon_sym_python, + ACTIONS(2266), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2269), 1, + anon_sym_def, + ACTIONS(2272), 1, + sym_identifier, + ACTIONS(2275), 1, + aux_sym__dotted_identifier_token1, + STATE(930), 1, + aux_sym_recipe_repeat1, + STATE(1518), 1, + sym_concatenation, + STATE(2332), 1, + sym_variable_expansion, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(2324), 15, + sym_variable_assignment, + sym_unset_statement, + sym_inherit_directive, + sym_inherit_defer_directive, + sym_include_directive, + sym_require_directive, + sym_export_statement, + sym_overrides_statement, + sym_export_functions_statement, + sym_addtask_statement, + sym_deltask_statement, + sym_addhandler_statement, + sym_anonymous_python_function, + sym_function_definition, + sym_python_function_definition, + [72150] = 15, + ACTIONS(1954), 1, anon_sym_LBRACK, - ACTIONS(2178), 1, + ACTIONS(1958), 1, anon_sym_LPAREN, - ACTIONS(2180), 1, + ACTIONS(1960), 1, anon_sym_DOT, - ACTIONS(2194), 1, + ACTIONS(2158), 1, anon_sym_STAR_STAR, + ACTIONS(2160), 1, + anon_sym_PIPE, + ACTIONS(2162), 1, + anon_sym_AMP, + ACTIONS(2164), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2182), 2, + ACTIONS(2059), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2146), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2190), 2, + ACTIONS(2148), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2154), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1175), 2, + STATE(935), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2050), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2192), 3, + ACTIONS(2156), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2052), 20, - anon_sym_COLON, - anon_sym_RPAREN, + ACTIONS(2061), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72319] = 12, - ACTIONS(2176), 1, + [72219] = 8, + ACTIONS(1954), 1, anon_sym_LBRACK, - ACTIONS(2178), 1, + ACTIONS(1958), 1, anon_sym_LPAREN, - ACTIONS(2180), 1, + ACTIONS(1960), 1, anon_sym_DOT, - ACTIONS(2194), 1, + ACTIONS(2158), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2182), 2, + STATE(935), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2105), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2184), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2107), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2190), 2, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - STATE(1175), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2050), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2192), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2052), 18, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [72274] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1451), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1453), 31, + sym__newline, + anon_sym_LBRACK, anon_sym_COLON, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72382] = 8, - ACTIONS(2176), 1, + [72319] = 8, + ACTIONS(1954), 1, anon_sym_LBRACK, - ACTIONS(2178), 1, + ACTIONS(1958), 1, anon_sym_LPAREN, - ACTIONS(2180), 1, + ACTIONS(1960), 1, anon_sym_DOT, - ACTIONS(2194), 1, + ACTIONS(2158), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1175), 2, + STATE(935), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2050), 5, - anon_sym_EQ, + ACTIONS(2101), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 25, - anon_sym_COLON, - anon_sym_RPAREN, + ACTIONS(2103), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -91873,29 +92505,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72437] = 6, - ACTIONS(288), 1, - anon_sym_COLON_EQ, - ACTIONS(461), 1, - anon_sym_COLON, + [72374] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(463), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(471), 5, - anon_sym_as, + ACTIONS(2278), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(524), 27, + ACTIONS(2280), 31, + sym__newline, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, @@ -91918,29 +92547,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72488] = 6, - ACTIONS(288), 1, - anon_sym_COLON_EQ, - ACTIONS(461), 1, - anon_sym_COLON, + [72419] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(463), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(471), 5, - anon_sym_as, + ACTIONS(302), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(524), 27, + ACTIONS(300), 31, + sym__newline, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, @@ -91963,45 +92589,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72539] = 15, - ACTIONS(2176), 1, + [72464] = 15, + ACTIONS(2113), 1, anon_sym_LBRACK, - ACTIONS(2178), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2180), 1, + ACTIONS(2117), 1, anon_sym_DOT, - ACTIONS(2194), 1, + ACTIONS(2131), 1, anon_sym_STAR_STAR, - ACTIONS(2196), 1, + ACTIONS(2133), 1, anon_sym_PIPE, - ACTIONS(2198), 1, + ACTIONS(2135), 1, anon_sym_AMP, - ACTIONS(2200), 1, + ACTIONS(2137), 1, anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2182), 2, + ACTIONS(2119), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2184), 2, + ACTIONS(2121), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2190), 2, + ACTIONS(2127), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1175), 2, + STATE(1223), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2060), 3, + ACTIONS(2059), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2192), 3, + ACTIONS(2129), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2058), 15, + ACTIONS(2061), 15, anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, @@ -92017,30 +92643,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72608] = 4, - ACTIONS(288), 1, + [72533] = 6, + ACTIONS(1383), 1, anon_sym_COLON_EQ, + ACTIONS(2282), 1, + anon_sym_LBRACK, + STATE(1851), 1, + sym_type_parameter, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 6, + ACTIONS(1397), 6, + anon_sym_EQ, anon_sym_COLON, - anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 29, - anon_sym_LBRACK, + ACTIONS(1392), 27, + sym__newline, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -92060,83 +92688,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72655] = 15, - ACTIONS(1990), 1, + [72584] = 20, + ACTIONS(1952), 1, + anon_sym_EQ, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(1992), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2288), 1, anon_sym_DOT, - ACTIONS(2164), 1, + ACTIONS(2296), 1, + anon_sym_not, + ACTIONS(2302), 1, anon_sym_STAR_STAR, - ACTIONS(2166), 1, + ACTIONS(2304), 1, anon_sym_PIPE, - ACTIONS(2168), 1, + ACTIONS(2306), 1, anon_sym_AMP, - ACTIONS(2170), 1, + ACTIONS(2308), 1, anon_sym_CARET, + ACTIONS(2312), 1, + anon_sym_is, + STATE(1412), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2120), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2152), 2, + ACTIONS(2290), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2154), 2, + ACTIONS(2292), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2160), 2, + ACTIONS(2298), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(944), 2, + ACTIONS(2310), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1249), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2162), 3, + ACTIONS(2300), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2118), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(1956), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2294), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [72663] = 4, + ACTIONS(290), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(302), 6, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(300), 29, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72724] = 6, - ACTIONS(1385), 1, - anon_sym_COLON_EQ, - ACTIONS(1453), 1, - anon_sym_COLON, + sym_type_conversion, + [72710] = 5, + ACTIONS(625), 1, + sym_string_start, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1455), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1462), 5, - anon_sym_as, + STATE(929), 2, + sym_python_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1941), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1457), 27, + ACTIONS(1943), 29, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, @@ -92159,17 +92834,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72775] = 3, + [72759] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2249), 5, + ACTIONS(2314), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2251), 31, + ACTIONS(2316), 31, sym__newline, anon_sym_LBRACK, anon_sym_COLON, @@ -92201,24 +92876,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72820] = 3, + [72804] = 4, + ACTIONS(290), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2253), 5, + ACTIONS(302), 6, anon_sym_EQ, + anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2255), 31, - sym__newline, + ACTIONS(300), 29, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -92243,24 +92918,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72865] = 3, + sym_type_conversion, + [72851] = 4, + ACTIONS(1383), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2257), 5, + ACTIONS(1397), 6, anon_sym_EQ, + anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2259), 31, - sym__newline, + ACTIONS(1392), 29, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -92285,100 +92961,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72910] = 15, - ACTIONS(1990), 1, + sym_type_conversion, + [72898] = 12, + ACTIONS(2173), 1, anon_sym_LBRACK, - ACTIONS(1992), 1, + ACTIONS(2175), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2177), 1, anon_sym_DOT, - ACTIONS(2164), 1, + ACTIONS(2191), 1, anon_sym_STAR_STAR, - ACTIONS(2166), 1, - anon_sym_PIPE, - ACTIONS(2168), 1, - anon_sym_AMP, - ACTIONS(2170), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2112), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2152), 2, + ACTIONS(2179), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2154), 2, + ACTIONS(2181), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2160), 2, + ACTIONS(2187), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(944), 2, + STATE(1239), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2162), 3, + ACTIONS(2052), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2189), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2110), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2054), 18, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72979] = 15, - ACTIONS(2073), 1, + [72961] = 13, + ACTIONS(2173), 1, anon_sym_LBRACK, - ACTIONS(2075), 1, + ACTIONS(2175), 1, anon_sym_LPAREN, - ACTIONS(2077), 1, + ACTIONS(2177), 1, anon_sym_DOT, - ACTIONS(2091), 1, + ACTIONS(2191), 1, anon_sym_STAR_STAR, - ACTIONS(2093), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - anon_sym_AMP, - ACTIONS(2097), 1, + ACTIONS(2197), 1, anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2079), 2, + ACTIONS(2179), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2081), 2, + ACTIONS(2181), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2087), 2, + ACTIONS(2187), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1261), 2, + STATE(1239), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2089), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2112), 3, + ACTIONS(2052), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2110), 15, - anon_sym_RBRACK, + ACTIONS(2189), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2054), 17, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_in, anon_sym_if, @@ -92387,52 +93057,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73048] = 15, - ACTIONS(2073), 1, + [73026] = 19, + ACTIONS(2318), 1, anon_sym_LBRACK, - ACTIONS(2075), 1, + ACTIONS(2320), 1, anon_sym_LPAREN, - ACTIONS(2077), 1, + ACTIONS(2322), 1, anon_sym_DOT, - ACTIONS(2091), 1, + ACTIONS(2330), 1, + anon_sym_not, + ACTIONS(2336), 1, anon_sym_STAR_STAR, - ACTIONS(2093), 1, + ACTIONS(2338), 1, anon_sym_PIPE, - ACTIONS(2095), 1, + ACTIONS(2340), 1, anon_sym_AMP, - ACTIONS(2097), 1, + ACTIONS(2342), 1, anon_sym_CARET, + ACTIONS(2346), 1, + anon_sym_is, + STATE(1417), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2079), 2, + ACTIONS(2324), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2081), 2, + ACTIONS(2326), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2087), 2, + ACTIONS(2332), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1261), 2, + ACTIONS(2344), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1335), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2089), 3, + ACTIONS(2334), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2120), 3, + ACTIONS(2328), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1956), 7, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [73103] = 14, + ACTIONS(2173), 1, + anon_sym_LBRACK, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2191), 1, + anon_sym_STAR_STAR, + ACTIONS(2195), 1, + anon_sym_AMP, + ACTIONS(2197), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2181), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2187), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1239), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2052), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2118), 15, - anon_sym_RBRACK, + ACTIONS(2189), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2054), 16, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_in, anon_sym_if, @@ -92441,37 +93169,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73117] = 5, - ACTIONS(647), 1, - sym_string_start, + [73170] = 8, + ACTIONS(2173), 1, + anon_sym_LBRACK, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2191), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(932), 2, - sym_python_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1946), 4, + STATE(1239), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2052), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1948), 29, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(2054), 25, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -92480,7 +93213,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -92491,51 +93223,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73166] = 15, - ACTIONS(1990), 1, + [73225] = 15, + ACTIONS(2063), 1, anon_sym_LBRACK, - ACTIONS(1992), 1, + ACTIONS(2065), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2067), 1, anon_sym_DOT, - ACTIONS(2164), 1, + ACTIONS(2081), 1, anon_sym_STAR_STAR, - ACTIONS(2166), 1, + ACTIONS(2083), 1, anon_sym_PIPE, - ACTIONS(2168), 1, + ACTIONS(2085), 1, anon_sym_AMP, - ACTIONS(2170), 1, + ACTIONS(2087), 1, anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2060), 2, + ACTIONS(2069), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2071), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2077), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1189), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2079), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2097), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2152), 2, + ACTIONS(2099), 15, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_in, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [73294] = 15, + ACTIONS(2063), 1, + anon_sym_LBRACK, + ACTIONS(2065), 1, + anon_sym_LPAREN, + ACTIONS(2067), 1, + anon_sym_DOT, + ACTIONS(2081), 1, + anon_sym_STAR_STAR, + ACTIONS(2083), 1, + anon_sym_PIPE, + ACTIONS(2085), 1, + anon_sym_AMP, + ACTIONS(2087), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2154), 2, + ACTIONS(2071), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2160), 2, + ACTIONS(2077), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(944), 2, + STATE(1189), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2162), 3, + ACTIONS(2079), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2058), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, + ACTIONS(2093), 3, anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2095), 15, + anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -92545,30 +93331,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73235] = 4, - ACTIONS(1385), 1, - anon_sym_COLON_EQ, + [73363] = 5, + ACTIONS(625), 1, + sym_string_start, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 6, - anon_sym_COLON, - anon_sym_as, + STATE(941), 2, + sym_python_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1397), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 29, + ACTIONS(1392), 29, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -92588,43 +93375,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73282] = 8, - ACTIONS(1990), 1, + [73412] = 10, + ACTIONS(2173), 1, anon_sym_LBRACK, - ACTIONS(1992), 1, + ACTIONS(2175), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2177), 1, anon_sym_DOT, - ACTIONS(2164), 1, + ACTIONS(2191), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(944), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2064), 4, + ACTIONS(2179), 2, anon_sym_STAR, anon_sym_SLASH, + STATE(1239), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2052), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2062), 26, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2189), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2054), 22, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -92635,17 +93424,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73337] = 3, + [73471] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1491), 5, + ACTIONS(1447), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1486), 31, + ACTIONS(1449), 31, sym__newline, anon_sym_LBRACK, anon_sym_COLON, @@ -92677,35 +93466,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73382] = 8, - ACTIONS(2073), 1, - anon_sym_LBRACK, - ACTIONS(2075), 1, - anon_sym_LPAREN, - ACTIONS(2077), 1, - anon_sym_DOT, - ACTIONS(2091), 1, - anon_sym_STAR_STAR, + [73516] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1261), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2068), 5, - anon_sym_as, + ACTIONS(1420), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2066), 25, - anon_sym_RBRACK, + ACTIONS(1415), 31, + sym__newline, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -92714,6 +93497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -92724,31 +93508,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73437] = 8, - ACTIONS(2122), 1, + [73561] = 15, + ACTIONS(2173), 1, anon_sym_LBRACK, - ACTIONS(2124), 1, + ACTIONS(2175), 1, anon_sym_LPAREN, - ACTIONS(2126), 1, + ACTIONS(2177), 1, anon_sym_DOT, - ACTIONS(2140), 1, + ACTIONS(2191), 1, anon_sym_STAR_STAR, + ACTIONS(2193), 1, + anon_sym_PIPE, + ACTIONS(2195), 1, + anon_sym_AMP, + ACTIONS(2197), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1319), 2, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2181), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2187), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1239), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2050), 5, + ACTIONS(2059), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 25, + ACTIONS(2189), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2061), 15, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_async, @@ -92756,51 +93556,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73492] = 11, - ACTIONS(2122), 1, + [73630] = 11, + ACTIONS(2173), 1, anon_sym_LBRACK, - ACTIONS(2124), 1, + ACTIONS(2175), 1, anon_sym_LPAREN, - ACTIONS(2126), 1, + ACTIONS(2177), 1, anon_sym_DOT, - ACTIONS(2140), 1, + ACTIONS(2191), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2128), 2, + ACTIONS(2179), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2136), 2, + ACTIONS(2187), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1319), 2, + STATE(1239), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2050), 3, + ACTIONS(2052), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2138), 3, + ACTIONS(2189), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2052), 20, + ACTIONS(2054), 20, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -92821,29 +93612,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73553] = 8, - ACTIONS(2073), 1, + [73691] = 8, + ACTIONS(2173), 1, anon_sym_LBRACK, - ACTIONS(2075), 1, + ACTIONS(2175), 1, anon_sym_LPAREN, - ACTIONS(2077), 1, + ACTIONS(2177), 1, anon_sym_DOT, - ACTIONS(2091), 1, + ACTIONS(2191), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1261), 2, + STATE(1239), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2064), 5, + ACTIONS(2052), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2062), 25, - anon_sym_RBRACK, + ACTIONS(2054), 25, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_in, @@ -92868,99 +93659,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73608] = 15, - ACTIONS(2122), 1, - anon_sym_LBRACK, - ACTIONS(2124), 1, - anon_sym_LPAREN, - ACTIONS(2126), 1, - anon_sym_DOT, - ACTIONS(2140), 1, - anon_sym_STAR_STAR, - ACTIONS(2142), 1, - anon_sym_PIPE, - ACTIONS(2144), 1, - anon_sym_AMP, - ACTIONS(2146), 1, - anon_sym_CARET, + [73746] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2128), 2, + ACTIONS(1504), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2130), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2136), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1319), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2060), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2138), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2058), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [73677] = 10, - ACTIONS(2122), 1, + ACTIONS(1499), 31, + sym__newline, anon_sym_LBRACK, - ACTIONS(2124), 1, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(2126), 1, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(2140), 1, - anon_sym_STAR_STAR, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2128), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1319), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2050), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2138), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 22, - anon_sym_RPAREN, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -92971,17 +93701,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73736] = 3, + [73791] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2261), 5, + ACTIONS(1434), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2263), 31, + ACTIONS(1429), 31, sym__newline, anon_sym_LBRACK, anon_sym_COLON, @@ -93013,35 +93743,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73781] = 8, - ACTIONS(2122), 1, - anon_sym_LBRACK, - ACTIONS(2124), 1, - anon_sym_LPAREN, - ACTIONS(2126), 1, - anon_sym_DOT, - ACTIONS(2140), 1, - anon_sym_STAR_STAR, + [73836] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1319), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2050), 5, - anon_sym_as, + ACTIONS(2348), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 25, - anon_sym_RPAREN, + ACTIONS(2350), 31, + sym__newline, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -93050,6 +93774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -93060,83 +93785,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73836] = 14, - ACTIONS(2122), 1, - anon_sym_LBRACK, - ACTIONS(2124), 1, - anon_sym_LPAREN, - ACTIONS(2126), 1, - anon_sym_DOT, - ACTIONS(2140), 1, - anon_sym_STAR_STAR, - ACTIONS(2144), 1, - anon_sym_AMP, - ACTIONS(2146), 1, - anon_sym_CARET, + [73881] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2128), 2, + ACTIONS(302), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2130), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2136), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1319), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2050), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2138), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 16, - anon_sym_RPAREN, + ACTIONS(300), 31, + sym__newline, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73903] = 8, - ACTIONS(2176), 1, - anon_sym_LBRACK, - ACTIONS(2178), 1, - anon_sym_LPAREN, - ACTIONS(2180), 1, - anon_sym_DOT, - ACTIONS(2194), 1, - anon_sym_STAR_STAR, + [73926] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1175), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2064), 5, + ACTIONS(2352), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2062), 25, + ACTIONS(2354), 31, + sym__newline, + anon_sym_LBRACK, anon_sym_COLON, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -93150,6 +93858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -93160,93 +93869,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73958] = 13, - ACTIONS(2122), 1, - anon_sym_LBRACK, - ACTIONS(2124), 1, - anon_sym_LPAREN, - ACTIONS(2126), 1, - anon_sym_DOT, - ACTIONS(2140), 1, - anon_sym_STAR_STAR, - ACTIONS(2146), 1, - anon_sym_CARET, + [73971] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2128), 2, + ACTIONS(1397), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2130), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2136), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1319), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2050), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2138), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 17, - anon_sym_RPAREN, + ACTIONS(1392), 31, + sym__newline, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74023] = 12, - ACTIONS(2122), 1, - anon_sym_LBRACK, - ACTIONS(2124), 1, - anon_sym_LPAREN, - ACTIONS(2126), 1, - anon_sym_DOT, - ACTIONS(2140), 1, - anon_sym_STAR_STAR, + [74016] = 4, + ACTIONS(290), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2128), 2, + ACTIONS(302), 6, + anon_sym_COLON, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2130), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2136), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1319), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2050), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2138), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 18, - anon_sym_RPAREN, + ACTIONS(300), 29, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_async, @@ -93254,33 +93938,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74086] = 4, - ACTIONS(288), 1, - anon_sym_COLON_EQ, + [74063] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 6, + ACTIONS(2356), 5, anon_sym_EQ, - anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 29, + ACTIONS(2358), 31, + sym__newline, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -93305,33 +93996,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [74133] = 6, - ACTIONS(1385), 1, + [74108] = 4, + ACTIONS(1383), 1, anon_sym_COLON_EQ, - ACTIONS(2265), 1, - anon_sym_LBRACK, - STATE(1820), 1, - sym_type_parameter, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 6, - anon_sym_EQ, + ACTIONS(1397), 6, anon_sym_COLON, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 27, - sym__newline, + ACTIONS(1392), 29, + anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_as, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -93351,24 +94039,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74184] = 3, + [74155] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2267), 5, + ACTIONS(2207), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2269), 31, - sym__newline, + ACTIONS(2209), 31, + sym_string_start, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -93393,17 +94080,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74229] = 3, + sym_type_conversion, + [74200] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2271), 5, + ACTIONS(2360), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2273), 31, + ACTIONS(2362), 31, sym__newline, anon_sym_LBRACK, anon_sym_COLON, @@ -93435,17 +94123,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74274] = 3, + [74245] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 5, + ACTIONS(2364), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 31, + ACTIONS(2366), 31, sym__newline, anon_sym_LBRACK, anon_sym_COLON, @@ -93477,25 +94165,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74319] = 3, + [74290] = 6, + ACTIONS(1383), 1, + anon_sym_COLON_EQ, + ACTIONS(1463), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2114), 5, - anon_sym_EQ, + ACTIONS(1465), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1472), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2116), 31, - sym_string_start, + ACTIONS(1467), 27, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, @@ -93518,27 +94210,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [74364] = 3, + [74341] = 6, + ACTIONS(290), 1, + anon_sym_COLON_EQ, + ACTIONS(463), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 5, - anon_sym_EQ, + ACTIONS(465), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(473), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 31, - sym__newline, + ACTIONS(566), 27, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_from, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, @@ -93561,27 +94255,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74409] = 5, - ACTIONS(1385), 1, + [74392] = 6, + ACTIONS(290), 1, anon_sym_COLON_EQ, - ACTIONS(1396), 1, - anon_sym_COMMA, + ACTIONS(463), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 6, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(465), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(473), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 28, + ACTIONS(566), 27, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_as, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_in, anon_sym_if, @@ -93604,30 +94300,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [74458] = 3, + [74443] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2275), 5, - anon_sym_EQ, + ACTIONS(2207), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2277), 31, - sym__newline, + ACTIONS(2209), 31, + sym_string_start, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_from, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -93647,18 +94342,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74503] = 5, + [74488] = 8, + ACTIONS(2063), 1, + anon_sym_LBRACK, + ACTIONS(2065), 1, + anon_sym_LPAREN, + ACTIONS(2067), 1, + anon_sym_DOT, + ACTIONS(2081), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(1189), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2105), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2107), 25, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [74543] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(471), 2, + ACTIONS(1472), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(461), 3, + ACTIONS(1463), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(524), 14, + ACTIONS(1467), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -93673,7 +94415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(463), 17, + ACTIONS(1465), 17, sym__newline, anon_sym_COLON, anon_sym_SEMI, @@ -93691,35 +94433,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74552] = 8, - ACTIONS(2176), 1, - anon_sym_LBRACK, - ACTIONS(2178), 1, - anon_sym_LPAREN, - ACTIONS(2180), 1, - anon_sym_DOT, - ACTIONS(2194), 1, - anon_sym_STAR_STAR, + [74592] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1175), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2068), 5, - anon_sym_EQ, + ACTIONS(2109), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2066), 25, + ACTIONS(2111), 31, + sym_string_start, + anon_sym_LBRACK, anon_sym_COLON, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -93728,6 +94464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -93738,29 +94475,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74607] = 4, - ACTIONS(288), 1, - anon_sym_COLON_EQ, + [74637] = 8, + ACTIONS(2173), 1, + anon_sym_LBRACK, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2191), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 6, - anon_sym_EQ, - anon_sym_COLON, + STATE(1239), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2105), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 29, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_DOT, + ACTIONS(2107), 25, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -93769,7 +94512,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -93780,31 +94522,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [74654] = 5, - ACTIONS(288), 1, - anon_sym_COLON_EQ, - ACTIONS(305), 1, - anon_sym_COMMA, + [74692] = 8, + ACTIONS(2173), 1, + anon_sym_LBRACK, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2191), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 6, - anon_sym_EQ, - anon_sym_COLON, + STATE(1239), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2101), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 28, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2103), 25, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -93813,7 +94559,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -93824,30 +94569,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [74703] = 3, + [74747] = 5, + ACTIONS(1383), 1, + anon_sym_COLON_EQ, + ACTIONS(2368), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2279), 5, - anon_sym_EQ, + ACTIONS(1397), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2281), 31, - sym__newline, + ACTIONS(1392), 29, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DOT, - anon_sym_from, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -93867,29 +94613,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74748] = 3, + [74796] = 5, + ACTIONS(290), 1, + anon_sym_COLON_EQ, + ACTIONS(569), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2283), 5, - anon_sym_EQ, + ACTIONS(302), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2285), 31, - sym__newline, + ACTIONS(300), 29, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DOT, - anon_sym_from, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -93909,22 +94657,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74793] = 3, + [74845] = 5, + ACTIONS(290), 1, + anon_sym_COLON_EQ, + ACTIONS(569), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2114), 5, + ACTIONS(302), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2116), 31, - sym_string_start, + ACTIONS(300), 29, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_GT_GT, @@ -93951,26 +94701,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74838] = 5, - ACTIONS(288), 1, - anon_sym_COLON_EQ, - ACTIONS(305), 1, - anon_sym_COMMA, + [74894] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 6, + ACTIONS(2370), 5, anon_sym_EQ, - anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 28, + ACTIONS(2372), 31, + sym__newline, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, @@ -93994,73 +94743,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [74887] = 8, - ACTIONS(1990), 1, + [74939] = 12, + ACTIONS(1954), 1, anon_sym_LBRACK, - ACTIONS(1992), 1, + ACTIONS(1958), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(1960), 1, anon_sym_DOT, - ACTIONS(2164), 1, + ACTIONS(2158), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(944), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2068), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2052), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2066), 26, + ACTIONS(2146), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2148), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2154), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(935), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2156), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2054), 19, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74942] = 3, + [75002] = 5, + ACTIONS(290), 1, + anon_sym_COLON_EQ, + ACTIONS(304), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2287), 5, + ACTIONS(302), 6, anon_sym_EQ, + anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2289), 31, - sym__newline, + ACTIONS(300), 28, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, @@ -94084,25 +94837,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74987] = 3, + sym_type_conversion, + [75051] = 5, + ACTIONS(290), 1, + anon_sym_COLON_EQ, + ACTIONS(304), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 5, + ACTIONS(302), 6, anon_sym_EQ, + anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 31, - sym__newline, + ACTIONS(300), 28, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, @@ -94126,35 +94881,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75032] = 5, + sym_type_conversion, + [75100] = 13, + ACTIONS(1954), 1, + anon_sym_LBRACK, + ACTIONS(1958), 1, + anon_sym_LPAREN, + ACTIONS(1960), 1, + anon_sym_DOT, + ACTIONS(2158), 1, + anon_sym_STAR_STAR, + ACTIONS(2164), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(471), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(461), 3, - anon_sym_EQ, + ACTIONS(2052), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(524), 14, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(2146), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2148), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2154), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(935), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2156), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(463), 17, + ACTIONS(2054), 18, sym__newline, - anon_sym_COLON, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, @@ -94164,83 +94926,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75081] = 15, - ACTIONS(2122), 1, + [75165] = 5, + ACTIONS(1383), 1, + anon_sym_COLON_EQ, + ACTIONS(1394), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1397), 6, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 28, anon_sym_LBRACK, - ACTIONS(2124), 1, anon_sym_LPAREN, - ACTIONS(2126), 1, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(2140), 1, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, - ACTIONS(2142), 1, anon_sym_PIPE, - ACTIONS(2144), 1, anon_sym_AMP, - ACTIONS(2146), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [75214] = 14, + ACTIONS(1954), 1, + anon_sym_LBRACK, + ACTIONS(1958), 1, + anon_sym_LPAREN, + ACTIONS(1960), 1, + anon_sym_DOT, + ACTIONS(2158), 1, + anon_sym_STAR_STAR, + ACTIONS(2162), 1, + anon_sym_AMP, + ACTIONS(2164), 1, anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2128), 2, + ACTIONS(2052), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2146), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2130), 2, + ACTIONS(2148), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2136), 2, + ACTIONS(2154), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1319), 2, + STATE(935), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2112), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2138), 3, + ACTIONS(2156), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2110), 15, - anon_sym_RPAREN, + ACTIONS(2054), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75150] = 3, + [75281] = 8, + ACTIONS(1954), 1, + anon_sym_LBRACK, + ACTIONS(1958), 1, + anon_sym_LPAREN, + ACTIONS(1960), 1, + anon_sym_DOT, + ACTIONS(2158), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1472), 5, - anon_sym_EQ, + STATE(935), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2052), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 31, + ACTIONS(2054), 26, sym__newline, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, anon_sym_from, anon_sym_COMMA, anon_sym_as, @@ -94255,7 +95068,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -94266,80 +95078,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75195] = 19, - ACTIONS(2291), 1, + [75336] = 10, + ACTIONS(1954), 1, anon_sym_LBRACK, - ACTIONS(2293), 1, + ACTIONS(1958), 1, anon_sym_LPAREN, - ACTIONS(2295), 1, + ACTIONS(1960), 1, anon_sym_DOT, - ACTIONS(2303), 1, - anon_sym_not, - ACTIONS(2309), 1, + ACTIONS(2158), 1, anon_sym_STAR_STAR, - ACTIONS(2311), 1, - anon_sym_PIPE, - ACTIONS(2313), 1, - anon_sym_AMP, - ACTIONS(2315), 1, - anon_sym_CARET, - ACTIONS(2319), 1, - anon_sym_is, - STATE(1417), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2297), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2299), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2305), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2317), 2, + ACTIONS(2052), 2, anon_sym_LT, anon_sym_GT, - STATE(1380), 2, + ACTIONS(2146), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(935), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2307), 3, + ACTIONS(2156), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2301), 6, + ACTIONS(2054), 23, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1958), 7, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [75272] = 5, + anon_sym_is, + [75395] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1462), 2, + ACTIONS(2374), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1453), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1457), 14, + ACTIONS(2376), 31, + sym__newline, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -94350,41 +95163,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1455), 17, - sym__newline, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75321] = 3, + [75440] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2103), 5, + ACTIONS(2378), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2105), 31, - sym_string_start, + ACTIONS(2380), 31, + sym__newline, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -94409,24 +95211,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [75366] = 3, + [75485] = 11, + ACTIONS(1954), 1, + anon_sym_LBRACK, + ACTIONS(1958), 1, + anon_sym_LPAREN, + ACTIONS(1960), 1, + anon_sym_DOT, + ACTIONS(2158), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2321), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2052), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2323), 31, + ACTIONS(2146), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2154), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(935), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2156), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2054), 21, sym__newline, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, anon_sym_from, anon_sym_COMMA, anon_sym_as, @@ -94436,12 +95251,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -94452,17 +95261,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75411] = 3, + [75546] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2325), 5, + ACTIONS(2382), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2327), 31, + ACTIONS(2384), 31, sym__newline, anon_sym_LBRACK, anon_sym_COLON, @@ -94494,32 +95303,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75456] = 3, + [75591] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1502), 5, - anon_sym_EQ, + ACTIONS(473), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(463), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1497), 31, - sym__newline, + ACTIONS(566), 14, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -94530,36 +95329,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(465), 17, + sym__newline, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75501] = 8, - ACTIONS(1990), 1, + [75640] = 8, + ACTIONS(2113), 1, anon_sym_LBRACK, - ACTIONS(1992), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2117), 1, anon_sym_DOT, - ACTIONS(2164), 1, + ACTIONS(2131), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(944), 2, + STATE(1223), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2050), 4, + ACTIONS(2052), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 26, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2054), 25, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -94583,24 +95394,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75556] = 3, + [75695] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2329), 5, + ACTIONS(2109), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2331), 31, - sym__newline, + ACTIONS(2111), 31, + sym_string_start, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -94625,24 +95435,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75601] = 3, + sym_type_conversion, + [75740] = 11, + ACTIONS(2113), 1, + anon_sym_LBRACK, + ACTIONS(2115), 1, + anon_sym_LPAREN, + ACTIONS(2117), 1, + anon_sym_DOT, + ACTIONS(2131), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2333), 5, - anon_sym_EQ, + ACTIONS(2119), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2127), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1223), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2052), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2335), 31, - sym__newline, - anon_sym_LBRACK, + ACTIONS(2129), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2054), 20, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -94651,12 +95476,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -94667,24 +95486,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75646] = 3, + [75801] = 10, + ACTIONS(2113), 1, + anon_sym_LBRACK, + ACTIONS(2115), 1, + anon_sym_LPAREN, + ACTIONS(2117), 1, + anon_sym_DOT, + ACTIONS(2131), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2337), 5, - anon_sym_EQ, + ACTIONS(2119), 2, anon_sym_STAR, anon_sym_SLASH, + STATE(1223), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2052), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2339), 31, - sym__newline, - anon_sym_LBRACK, + ACTIONS(2129), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2054), 22, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -94695,10 +95525,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -94709,17 +95535,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75691] = 3, + [75860] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2341), 5, + ACTIONS(2386), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2343), 31, + ACTIONS(2388), 31, sym__newline, anon_sym_LBRACK, anon_sym_COLON, @@ -94751,17 +95577,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75736] = 3, + [75905] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2345), 5, + ACTIONS(2390), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2347), 31, + ACTIONS(2392), 31, sym__newline, anon_sym_LBRACK, anon_sym_COLON, @@ -94793,38 +95619,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75781] = 11, - ACTIONS(1990), 1, + [75950] = 8, + ACTIONS(2113), 1, anon_sym_LBRACK, - ACTIONS(1992), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2117), 1, anon_sym_DOT, - ACTIONS(2164), 1, + ACTIONS(2131), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2050), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2152), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2160), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(944), 2, + STATE(1223), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2162), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2052), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2054), 25, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -94833,6 +95651,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -94843,26 +95666,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75842] = 5, - ACTIONS(647), 1, - sym_string_start, + [76005] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(950), 2, - sym_python_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1399), 4, + ACTIONS(2394), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 29, + ACTIONS(2396), 31, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -94887,34 +95708,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75891] = 10, - ACTIONS(1990), 1, - anon_sym_LBRACK, - ACTIONS(1992), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2164), 1, - anon_sym_STAR_STAR, + [76050] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2050), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2152), 2, + ACTIONS(2398), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - STATE(944), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2162), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 23, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2400), 31, sym__newline, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_DOT, anon_sym_from, anon_sym_COMMA, anon_sym_as, @@ -94926,6 +95736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -94936,27 +95750,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75950] = 8, - ACTIONS(1990), 1, + [76095] = 8, + ACTIONS(1954), 1, anon_sym_LBRACK, - ACTIONS(1992), 1, + ACTIONS(1958), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(1960), 1, anon_sym_DOT, - ACTIONS(2164), 1, + ACTIONS(2158), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(944), 2, + STATE(935), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2050), 4, + ACTIONS(2052), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 26, + ACTIONS(2054), 26, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -94983,70 +95797,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76005] = 14, - ACTIONS(1990), 1, - anon_sym_LBRACK, - ACTIONS(1992), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2164), 1, - anon_sym_STAR_STAR, - ACTIONS(2168), 1, - anon_sym_AMP, - ACTIONS(2170), 1, - anon_sym_CARET, + [76150] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2050), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2152), 2, + ACTIONS(2402), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2154), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2160), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(944), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2162), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 17, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2404), 31, sym__newline, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_DOT, anon_sym_from, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76072] = 3, + [76195] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2349), 5, + ACTIONS(2406), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2351), 31, + ACTIONS(2408), 31, sym__newline, anon_sym_LBRACK, anon_sym_COLON, @@ -95078,93 +95881,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76117] = 13, - ACTIONS(1990), 1, + [76240] = 14, + ACTIONS(2113), 1, anon_sym_LBRACK, - ACTIONS(1992), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2117), 1, anon_sym_DOT, - ACTIONS(2164), 1, + ACTIONS(2131), 1, anon_sym_STAR_STAR, - ACTIONS(2170), 1, + ACTIONS(2135), 1, + anon_sym_AMP, + ACTIONS(2137), 1, anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2050), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2152), 2, + ACTIONS(2119), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2154), 2, + ACTIONS(2121), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2160), 2, + ACTIONS(2127), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(944), 2, + STATE(1223), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2162), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [76182] = 12, - ACTIONS(1990), 1, - anon_sym_LBRACK, - ACTIONS(1992), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2164), 1, - anon_sym_STAR_STAR, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2050), 2, + ACTIONS(2052), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2152), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2154), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2160), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(944), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2162), 3, + ACTIONS(2129), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2052), 19, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2054), 16, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_in, @@ -95173,79 +95928,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76245] = 15, - ACTIONS(2122), 1, + [76307] = 13, + ACTIONS(2113), 1, anon_sym_LBRACK, - ACTIONS(2124), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2126), 1, + ACTIONS(2117), 1, anon_sym_DOT, - ACTIONS(2140), 1, + ACTIONS(2131), 1, anon_sym_STAR_STAR, - ACTIONS(2142), 1, - anon_sym_PIPE, - ACTIONS(2144), 1, - anon_sym_AMP, - ACTIONS(2146), 1, + ACTIONS(2137), 1, anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2128), 2, + ACTIONS(2119), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2130), 2, + ACTIONS(2121), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2136), 2, + ACTIONS(2127), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1319), 2, + STATE(1223), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2120), 3, - anon_sym_as, + ACTIONS(2052), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2138), 3, + ACTIONS(2129), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2118), 15, + ACTIONS(2054), 17, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76314] = 3, + [76372] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2353), 5, + ACTIONS(2410), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2355), 31, + ACTIONS(2412), 31, sym__newline, anon_sym_LBRACK, anon_sym_COLON, @@ -95277,32 +96028,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76359] = 3, + [76417] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2357), 5, - anon_sym_EQ, + ACTIONS(473), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(463), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2359), 31, - sym__newline, + ACTIONS(566), 14, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -95311,52 +96052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [76404] = 14, - ACTIONS(2214), 1, - anon_sym_LBRACK, - ACTIONS(2216), 1, - anon_sym_LPAREN, - ACTIONS(2218), 1, - anon_sym_DOT, - ACTIONS(2232), 1, - anon_sym_STAR_STAR, - ACTIONS(2236), 1, - anon_sym_AMP, - ACTIONS(2238), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2220), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2222), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2228), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1226), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2050), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2230), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 15, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(465), 17, + sym__newline, anon_sym_COLON, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_in, @@ -95364,53 +96066,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76470] = 15, - ACTIONS(2214), 1, + [76466] = 12, + ACTIONS(2113), 1, anon_sym_LBRACK, - ACTIONS(2216), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2218), 1, + ACTIONS(2117), 1, anon_sym_DOT, - ACTIONS(2232), 1, + ACTIONS(2131), 1, anon_sym_STAR_STAR, - ACTIONS(2234), 1, - anon_sym_PIPE, - ACTIONS(2236), 1, - anon_sym_AMP, - ACTIONS(2238), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2220), 2, + ACTIONS(2119), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2222), 2, + ACTIONS(2121), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2228), 2, + ACTIONS(2127), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1226), 2, + STATE(1223), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2060), 3, + ACTIONS(2052), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 3, + ACTIONS(2129), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2058), 14, + ACTIONS(2054), 18, anon_sym_COLON, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_in, @@ -95418,29 +96114,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76538] = 3, + [76529] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2103), 5, + ACTIONS(2414), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2105), 30, - sym_string_start, + ACTIONS(2416), 31, + sym__newline, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -95465,29 +96165,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76582] = 4, - ACTIONS(1385), 1, - anon_sym_COLON_EQ, + [76574] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 6, + ACTIONS(2348), 5, anon_sym_EQ, - anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 28, + ACTIONS(2350), 30, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -95507,29 +96205,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76628] = 4, - ACTIONS(288), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [76618] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 6, + ACTIONS(2398), 5, anon_sym_EQ, - anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 28, + ACTIONS(2400), 30, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -95549,29 +96246,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76674] = 4, - ACTIONS(288), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [76662] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 6, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(2374), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 28, + ACTIONS(2376), 30, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -95591,187 +96288,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76720] = 12, - ACTIONS(2291), 1, - anon_sym_LBRACK, - ACTIONS(2293), 1, - anon_sym_LPAREN, - ACTIONS(2295), 1, - anon_sym_DOT, - ACTIONS(2309), 1, - anon_sym_STAR_STAR, + [76706] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2050), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2297), 2, + ACTIONS(2207), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2299), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2305), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1380), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2307), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 18, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2209), 30, + sym_string_start, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76782] = 13, - ACTIONS(2291), 1, - anon_sym_LBRACK, - ACTIONS(2293), 1, - anon_sym_LPAREN, - ACTIONS(2295), 1, - anon_sym_DOT, - ACTIONS(2309), 1, - anon_sym_STAR_STAR, - ACTIONS(2315), 1, - anon_sym_CARET, + [76750] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2050), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2297), 2, + ACTIONS(2378), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2299), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2305), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1380), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2307), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 17, - anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2380), 30, + anon_sym_LBRACK, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [76846] = 14, - ACTIONS(2291), 1, - anon_sym_LBRACK, - ACTIONS(2293), 1, - anon_sym_LPAREN, - ACTIONS(2295), 1, - anon_sym_DOT, - ACTIONS(2309), 1, - anon_sym_STAR_STAR, - ACTIONS(2313), 1, - anon_sym_AMP, - ACTIONS(2315), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2050), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2297), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2299), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2305), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1380), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2307), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2052), 16, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_as, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_STAR_STAR, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76912] = 8, - ACTIONS(2291), 1, - anon_sym_LBRACK, - ACTIONS(2293), 1, - anon_sym_LPAREN, - ACTIONS(2295), 1, - anon_sym_DOT, - ACTIONS(2309), 1, - anon_sym_STAR_STAR, + [76794] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1380), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2050), 4, + ACTIONS(1403), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 25, - anon_sym_RBRACK, + ACTIONS(1405), 30, + anon_sym_LBRACK, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -95780,6 +96400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -95790,44 +96411,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76966] = 10, - ACTIONS(2291), 1, - anon_sym_LBRACK, - ACTIONS(2293), 1, - anon_sym_LPAREN, - ACTIONS(2295), 1, - anon_sym_DOT, - ACTIONS(2309), 1, - anon_sym_STAR_STAR, + [76838] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2050), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2297), 2, + ACTIONS(1403), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - STATE(1380), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2307), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 22, - anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1405), 30, + anon_sym_LBRACK, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -95838,45 +96452,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77024] = 11, - ACTIONS(2291), 1, - anon_sym_LBRACK, - ACTIONS(2293), 1, - anon_sym_LPAREN, - ACTIONS(2295), 1, - anon_sym_DOT, - ACTIONS(2309), 1, - anon_sym_STAR_STAR, + [76882] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2050), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2297), 2, + ACTIONS(2386), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2305), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1380), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2307), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 20, - anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2388), 30, + anon_sym_LBRACK, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -95887,34 +96493,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77084] = 8, - ACTIONS(2291), 1, - anon_sym_LBRACK, - ACTIONS(2293), 1, - anon_sym_LPAREN, - ACTIONS(2295), 1, - anon_sym_DOT, - ACTIONS(2309), 1, - anon_sym_STAR_STAR, + [76926] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1380), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2050), 4, + ACTIONS(2390), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 25, - anon_sym_RBRACK, + ACTIONS(2392), 30, + anon_sym_LBRACK, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -95923,6 +96523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -95933,27 +96534,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77138] = 3, + [76970] = 4, + ACTIONS(1383), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 5, - anon_sym_EQ, + ACTIONS(1397), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 30, + ACTIONS(1392), 29, anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -95973,28 +96576,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [77182] = 3, + [77016] = 4, + ACTIONS(290), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 5, - anon_sym_EQ, + ACTIONS(302), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 30, + ACTIONS(300), 29, anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -96014,28 +96618,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [77226] = 3, + [77062] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1472), 5, - anon_sym_EQ, + ACTIONS(1407), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 30, + ACTIONS(1409), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -96055,35 +96659,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [77270] = 8, - ACTIONS(2291), 1, - anon_sym_LBRACK, - ACTIONS(2293), 1, - anon_sym_LPAREN, - ACTIONS(2295), 1, - anon_sym_DOT, - ACTIONS(2309), 1, - anon_sym_STAR_STAR, + [77106] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1380), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2068), 4, + ACTIONS(1407), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2066), 25, - anon_sym_RBRACK, + ACTIONS(1409), 30, + anon_sym_LBRACK, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -96092,6 +96689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -96102,34 +96700,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77324] = 8, - ACTIONS(2291), 1, - anon_sym_LBRACK, - ACTIONS(2293), 1, - anon_sym_LPAREN, - ACTIONS(2295), 1, - anon_sym_DOT, - ACTIONS(2309), 1, - anon_sym_STAR_STAR, + [77150] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1380), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2064), 4, + ACTIONS(1436), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2062), 25, - anon_sym_RBRACK, + ACTIONS(1438), 30, + anon_sym_LBRACK, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -96138,93 +96730,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [77378] = 19, - ACTIONS(2122), 1, - anon_sym_LBRACK, - ACTIONS(2126), 1, - anon_sym_DOT, - ACTIONS(2178), 1, - anon_sym_LPAREN, - ACTIONS(2188), 1, - anon_sym_not, - ACTIONS(2194), 1, anon_sym_STAR_STAR, - ACTIONS(2196), 1, anon_sym_PIPE, - ACTIONS(2198), 1, anon_sym_AMP, - ACTIONS(2200), 1, anon_sym_CARET, - ACTIONS(2204), 1, - anon_sym_is, - STATE(1405), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2182), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2184), 2, - anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1175), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2192), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1958), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2186), 6, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77454] = 4, - ACTIONS(1385), 1, + anon_sym_is, + [77194] = 5, + ACTIONS(290), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 6, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(465), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(473), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 28, + ACTIONS(566), 27, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, @@ -96247,26 +96784,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77500] = 4, - ACTIONS(288), 1, + [77242] = 5, + ACTIONS(290), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 6, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(465), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(473), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 28, + ACTIONS(566), 27, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, @@ -96289,83 +96827,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77546] = 19, - ACTIONS(1956), 1, - anon_sym_LBRACK, - ACTIONS(1962), 1, - anon_sym_DOT, - ACTIONS(2022), 1, - anon_sym_LPAREN, - ACTIONS(2032), 1, - anon_sym_not, - ACTIONS(2038), 1, - anon_sym_STAR_STAR, - ACTIONS(2040), 1, - anon_sym_PIPE, - ACTIONS(2042), 1, - anon_sym_AMP, - ACTIONS(2044), 1, - anon_sym_CARET, - ACTIONS(2048), 1, - anon_sym_is, - STATE(1415), 1, - aux_sym_comparison_operator_repeat1, + [77290] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2026), 2, + ACTIONS(2410), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2028), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2034), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2046), 2, anon_sym_LT, anon_sym_GT, - STATE(1050), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2036), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1958), 6, + ACTIONS(2412), 30, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, + anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2030), 6, - anon_sym_in, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77622] = 4, - ACTIONS(288), 1, + anon_sym_is, + [77334] = 5, + ACTIONS(1383), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 6, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(1465), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1472), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 28, + ACTIONS(1467), 27, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, @@ -96388,27 +96911,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77668] = 3, + [77382] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1502), 5, - anon_sym_EQ, + ACTIONS(1451), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1497), 30, + ACTIONS(1453), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -96428,18 +96952,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [77712] = 3, + [77426] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1491), 5, + ACTIONS(2352), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1486), 30, + ACTIONS(2354), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -96470,17 +96993,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [77756] = 3, + [77470] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2353), 5, + ACTIONS(2356), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2355), 30, + ACTIONS(2358), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -96511,128 +97034,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [77800] = 15, - ACTIONS(2291), 1, - anon_sym_LBRACK, - ACTIONS(2293), 1, - anon_sym_LPAREN, - ACTIONS(2295), 1, - anon_sym_DOT, - ACTIONS(2309), 1, - anon_sym_STAR_STAR, - ACTIONS(2311), 1, - anon_sym_PIPE, - ACTIONS(2313), 1, - anon_sym_AMP, - ACTIONS(2315), 1, - anon_sym_CARET, + [77514] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2120), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2297), 2, + ACTIONS(2382), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2299), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2305), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1380), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2307), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2118), 15, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_as, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [77868] = 15, - ACTIONS(2291), 1, - anon_sym_LBRACK, - ACTIONS(2293), 1, - anon_sym_LPAREN, - ACTIONS(2295), 1, - anon_sym_DOT, - ACTIONS(2309), 1, - anon_sym_STAR_STAR, - ACTIONS(2311), 1, - anon_sym_PIPE, - ACTIONS(2313), 1, - anon_sym_AMP, - ACTIONS(2315), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2112), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2297), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2299), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2305), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1380), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2307), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2110), 15, - anon_sym_RBRACK, + ACTIONS(2384), 30, + anon_sym_LBRACK, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [77936] = 5, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(471), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(461), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(524), 14, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -96643,39 +97069,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(463), 16, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_as, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [77984] = 4, - ACTIONS(288), 1, - anon_sym_COLON_EQ, + [77558] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 5, + ACTIONS(2394), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 29, + ACTIONS(2396), 30, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, anon_sym_GT_GT, @@ -96702,22 +97116,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78030] = 5, + [77602] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(471), 2, + ACTIONS(2207), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(461), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(524), 14, + ACTIONS(2209), 30, + sym_string_start, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -96728,39 +97151,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(463), 16, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [77646] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1451), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1453), 30, + anon_sym_LBRACK, anon_sym_COLON, + anon_sym_LPAREN, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [78078] = 5, + [77690] = 4, + ACTIONS(290), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1462), 2, + ACTIONS(302), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1453), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1457), 14, + ACTIONS(300), 29, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOT, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -96771,39 +97234,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1455), 16, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [77736] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2207), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2209), 30, + sym_string_start, + anon_sym_LBRACK, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [78126] = 5, + [77780] = 4, + ACTIONS(1394), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(471), 2, + ACTIONS(1397), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(461), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(524), 14, + ACTIONS(1392), 29, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_DOT, + anon_sym_as, anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -96814,36 +97316,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(463), 16, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [77826] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2360), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2362), 30, + anon_sym_LBRACK, anon_sym_COLON, + anon_sym_LPAREN, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78174] = 4, - ACTIONS(288), 1, + sym_type_conversion, + [77870] = 4, + ACTIONS(290), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 5, + ACTIONS(302), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 29, + ACTIONS(300), 29, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96873,32 +97406,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78220] = 4, - ACTIONS(1385), 1, - anon_sym_COLON_EQ, + [77916] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 5, - anon_sym_as, + ACTIONS(473), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(463), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 29, + ACTIONS(566), 14, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -96909,33 +97432,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(465), 16, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_in, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78266] = 3, + [77964] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 5, - anon_sym_EQ, + ACTIONS(2406), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 30, + ACTIONS(2408), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -96955,19 +97490,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [78310] = 5, + [78008] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(471), 2, + ACTIONS(473), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(461), 3, + ACTIONS(463), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(524), 14, + ACTIONS(566), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -96982,7 +97516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(463), 16, + ACTIONS(465), 16, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, @@ -96999,27 +97533,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78358] = 3, + [78056] = 4, + ACTIONS(290), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2249), 5, - anon_sym_EQ, + ACTIONS(302), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2251), 30, + ACTIONS(300), 29, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -97039,82 +97575,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [78402] = 15, - ACTIONS(2291), 1, - anon_sym_LBRACK, - ACTIONS(2293), 1, - anon_sym_LPAREN, - ACTIONS(2295), 1, - anon_sym_DOT, - ACTIONS(2309), 1, - anon_sym_STAR_STAR, - ACTIONS(2311), 1, - anon_sym_PIPE, - ACTIONS(2313), 1, - anon_sym_AMP, - ACTIONS(2315), 1, - anon_sym_CARET, + [78102] = 4, + ACTIONS(1383), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2060), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2297), 2, + ACTIONS(1397), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2299), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2305), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1380), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2307), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2058), 15, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 29, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78470] = 3, + [78148] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2114), 5, - anon_sym_EQ, + ACTIONS(2214), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2116), 30, - sym_string_start, + ACTIONS(2216), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -97134,28 +97658,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78514] = 4, - ACTIONS(1396), 1, - anon_sym_COMMA, + [78192] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 5, - anon_sym_EQ, + ACTIONS(2398), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 29, + ACTIONS(2400), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_as, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -97175,29 +97699,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [78560] = 4, - ACTIONS(1469), 1, - anon_sym_COMMA, + [78236] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1472), 5, - anon_sym_EQ, + ACTIONS(2402), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 29, + ACTIONS(2404), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_as, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -97217,22 +97740,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [78606] = 3, + [78280] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2103), 5, + ACTIONS(2414), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2105), 30, - sym_string_start, + ACTIONS(2416), 30, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, anon_sym_GT_GT, @@ -97259,27 +97781,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78650] = 5, - ACTIONS(288), 1, - anon_sym_COLON_EQ, + [78324] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(463), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(471), 5, - anon_sym_as, + ACTIONS(2364), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(524), 27, + ACTIONS(2366), 30, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, @@ -97302,27 +97821,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78698] = 5, - ACTIONS(288), 1, + sym_type_conversion, + [78368] = 6, + ACTIONS(1383), 1, anon_sym_COLON_EQ, + ACTIONS(2418), 1, + anon_sym_LBRACK, + STATE(1936), 1, + sym_type_parameter, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(463), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(471), 5, - anon_sym_as, + ACTIONS(1397), 5, + anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(524), 27, - anon_sym_LBRACK, + ACTIONS(1392), 27, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, @@ -97345,27 +97866,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78746] = 5, - ACTIONS(1385), 1, - anon_sym_COLON_EQ, + [78418] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1455), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1462), 5, - anon_sym_as, + ACTIONS(2278), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1457), 27, + ACTIONS(2280), 30, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, @@ -97388,27 +97906,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78794] = 3, + sym_type_conversion, + [78462] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2253), 5, - anon_sym_EQ, + ACTIONS(2207), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2255), 30, + ACTIONS(2209), 30, + sym_string_start, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -97428,18 +97948,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [78838] = 3, + [78506] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2257), 5, + ACTIONS(2370), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2259), 30, + ACTIONS(2372), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -97470,17 +97989,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [78882] = 3, + [78550] = 19, + ACTIONS(1988), 1, + anon_sym_LPAREN, + ACTIONS(1998), 1, + anon_sym_not, + ACTIONS(2004), 1, + anon_sym_STAR_STAR, + ACTIONS(2006), 1, + anon_sym_PIPE, + ACTIONS(2008), 1, + anon_sym_AMP, + ACTIONS(2010), 1, + anon_sym_CARET, + ACTIONS(2014), 1, + anon_sym_is, + ACTIONS(2019), 1, + anon_sym_LBRACK, + ACTIONS(2023), 1, + anon_sym_DOT, + STATE(1415), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1992), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1994), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2000), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2012), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1056), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2002), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1956), 6, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1996), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [78626] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2261), 5, + ACTIONS(302), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2263), 30, + ACTIONS(300), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -97511,27 +98087,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [78926] = 3, + [78670] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2275), 5, + ACTIONS(2109), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2277), 30, + ACTIONS(2111), 30, + sym_string_start, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -97551,24 +98128,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [78970] = 3, + [78714] = 4, + ACTIONS(1431), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2357), 5, + ACTIONS(1434), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2359), 30, + ACTIONS(1429), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, @@ -97593,28 +98170,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [79014] = 3, + [78760] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2103), 5, - anon_sym_EQ, + ACTIONS(1447), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2105), 30, - sym_string_start, + ACTIONS(1449), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -97634,85 +98211,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79058] = 19, - ACTIONS(2073), 1, - anon_sym_LBRACK, - ACTIONS(2077), 1, - anon_sym_DOT, - ACTIONS(2293), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, - anon_sym_not, - ACTIONS(2309), 1, - anon_sym_STAR_STAR, - ACTIONS(2311), 1, - anon_sym_PIPE, - ACTIONS(2313), 1, - anon_sym_AMP, - ACTIONS(2315), 1, - anon_sym_CARET, - ACTIONS(2319), 1, - anon_sym_is, - STATE(1417), 1, - aux_sym_comparison_operator_repeat1, + [78804] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2297), 2, + ACTIONS(1472), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2299), 2, + ACTIONS(1463), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1467), 14, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2305), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2317), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1380), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2307), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1958), 6, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1465), 16, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_as, + anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2301), 6, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79134] = 3, + anon_sym_is, + [78852] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2114), 5, - anon_sym_EQ, + ACTIONS(2370), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2116), 30, - sym_string_start, + ACTIONS(2372), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -97732,28 +98295,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79178] = 3, + [78896] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2267), 5, - anon_sym_as, + ACTIONS(1447), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2269), 30, + ACTIONS(1449), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -97773,17 +98335,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79222] = 3, + sym_type_conversion, + [78940] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2271), 5, + ACTIONS(2364), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2273), 30, + ACTIONS(2366), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -97814,17 +98377,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79266] = 3, + [78984] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1419), 5, + ACTIONS(2360), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 30, + ACTIONS(2362), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -97855,17 +98418,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79310] = 3, + [79028] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1419), 5, + ACTIONS(2356), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 30, + ACTIONS(2358), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -97896,31 +98459,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79354] = 3, + [79072] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2279), 5, - anon_sym_as, + ACTIONS(1472), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1463), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2281), 30, + ACTIONS(1467), 14, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, anon_sym_DOT, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -97931,23 +98485,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1465), 16, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79398] = 3, + sym_type_conversion, + [79120] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2283), 5, + ACTIONS(2352), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2285), 30, + ACTIONS(2354), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -97978,31 +98543,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79442] = 3, + [79164] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1423), 5, - anon_sym_as, + ACTIONS(473), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(463), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1425), 30, + ACTIONS(566), 14, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, anon_sym_DOT, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -98013,23 +98569,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(465), 16, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79486] = 3, + sym_type_conversion, + [79212] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1423), 5, + ACTIONS(2348), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1425), 30, + ACTIONS(2350), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -98060,31 +98627,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79530] = 3, + [79256] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1415), 5, - anon_sym_as, + ACTIONS(473), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(463), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 30, + ACTIONS(566), 14, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, anon_sym_DOT, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -98095,29 +98653,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(465), 16, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79574] = 3, + sym_type_conversion, + [79304] = 15, + ACTIONS(2318), 1, + anon_sym_LBRACK, + ACTIONS(2320), 1, + anon_sym_LPAREN, + ACTIONS(2322), 1, + anon_sym_DOT, + ACTIONS(2336), 1, + anon_sym_STAR_STAR, + ACTIONS(2338), 1, + anon_sym_PIPE, + ACTIONS(2340), 1, + anon_sym_AMP, + ACTIONS(2342), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2287), 5, + ACTIONS(2059), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2324), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2326), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2332), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1335), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2334), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2061), 15, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [79372] = 5, + ACTIONS(1383), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1394), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1397), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2289), 30, + ACTIONS(1392), 27, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, anon_sym_DOT, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_in, anon_sym_if, @@ -98142,27 +98766,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79618] = 3, + [79420] = 5, + ACTIONS(290), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2349), 5, - anon_sym_EQ, + ACTIONS(304), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(302), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2351), 30, + ACTIONS(300), 27, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -98182,28 +98809,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [79662] = 3, + [79468] = 5, + ACTIONS(290), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1474), 5, - anon_sym_EQ, + ACTIONS(304), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(302), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1476), 30, + ACTIONS(300), 27, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -98223,32 +98852,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [79706] = 6, - ACTIONS(1385), 1, - anon_sym_COLON_EQ, - ACTIONS(1389), 1, - anon_sym_LBRACK, - STATE(1885), 1, - sym_type_parameter, + [79516] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 6, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(2278), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 26, + ACTIONS(2280), 30, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -98268,28 +98893,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79756] = 3, + [79560] = 6, + ACTIONS(1383), 1, + anon_sym_COLON_EQ, + ACTIONS(1387), 1, + anon_sym_LBRACK, + STATE(1915), 1, + sym_type_parameter, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2321), 5, - anon_sym_as, + ACTIONS(1397), 6, + anon_sym_EQ, + anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2323), 30, - anon_sym_LBRACK, - anon_sym_COLON, + ACTIONS(1392), 26, anon_sym_LPAREN, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -98309,28 +98937,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79800] = 3, + [79610] = 4, + ACTIONS(1501), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2325), 5, - anon_sym_as, + ACTIONS(1504), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2327), 30, + ACTIONS(1499), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -98350,17 +98978,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79844] = 3, + sym_type_conversion, + [79656] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1478), 5, + ACTIONS(302), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1480), 30, + ACTIONS(300), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -98391,28 +99020,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79888] = 3, + [79700] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2329), 5, - anon_sym_as, + ACTIONS(2414), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2331), 30, + ACTIONS(2416), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -98432,19 +99060,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79932] = 3, + sym_type_conversion, + [79744] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2333), 5, + ACTIONS(1465), 3, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + ACTIONS(1472), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2335), 30, + ACTIONS(1467), 27, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_RBRACE, anon_sym_DOT, @@ -98452,8 +99084,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -98473,28 +99103,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79976] = 3, + [79790] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2337), 5, - anon_sym_as, + ACTIONS(2402), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2339), 30, + ACTIONS(2404), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -98514,17 +99143,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80020] = 3, + sym_type_conversion, + [79834] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2341), 5, + ACTIONS(2314), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2343), 30, + ACTIONS(2316), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -98555,17 +99185,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80064] = 3, + [79878] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2345), 5, + ACTIONS(1420), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2347), 30, + ACTIONS(1415), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -98596,69 +99226,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80108] = 6, - ACTIONS(1385), 1, - anon_sym_COLON_EQ, - ACTIONS(2361), 1, + [79922] = 19, + ACTIONS(2063), 1, anon_sym_LBRACK, - STATE(1939), 1, - sym_type_parameter, + ACTIONS(2067), 1, + anon_sym_DOT, + ACTIONS(2320), 1, + anon_sym_LPAREN, + ACTIONS(2330), 1, + anon_sym_not, + ACTIONS(2336), 1, + anon_sym_STAR_STAR, + ACTIONS(2338), 1, + anon_sym_PIPE, + ACTIONS(2340), 1, + anon_sym_AMP, + ACTIONS(2342), 1, + anon_sym_CARET, + ACTIONS(2346), 1, + anon_sym_is, + STATE(1417), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 5, - anon_sym_COLON, + ACTIONS(2324), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2326), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2332), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2344), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 27, + STATE(1335), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2334), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1956), 6, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, - anon_sym_in, anon_sym_if, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(2328), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, - [80158] = 5, - ACTIONS(288), 1, - anon_sym_COLON_EQ, + [79998] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(305), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(303), 5, + ACTIONS(1504), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 27, + ACTIONS(1499), 30, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_DOT, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_in, anon_sym_if, @@ -98683,72 +99324,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80206] = 4, - ACTIONS(1499), 1, - anon_sym_COMMA, + [80042] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1502), 5, + ACTIONS(2314), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1497), 29, + ACTIONS(2316), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [80252] = 5, - ACTIONS(288), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(305), 2, - anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(303), 5, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(301), 27, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -98768,22 +99364,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80300] = 5, - ACTIONS(1385), 1, + sym_type_conversion, + [80086] = 5, + ACTIONS(290), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1396), 2, + ACTIONS(304), 2, anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(1399), 5, + ACTIONS(302), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 27, + ACTIONS(300), 27, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -98811,24 +99408,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80348] = 4, - ACTIONS(1488), 1, - anon_sym_COMMA, + [80134] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1491), 5, + ACTIONS(2214), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1486), 29, + ACTIONS(2216), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, anon_sym_RBRACE, anon_sym_DOT, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, @@ -98853,68 +99449,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [80394] = 3, + [80178] = 5, + ACTIONS(290), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2345), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2347), 30, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_DOT, + ACTIONS(304), 2, + anon_sym_RBRACK, anon_sym_COMMA, + ACTIONS(302), 5, anon_sym_as, - anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [80438] = 3, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2341), 5, - anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2343), 30, + ACTIONS(300), 27, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -98934,24 +99492,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [80482] = 3, + [80226] = 5, + ACTIONS(1383), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2114), 5, + ACTIONS(1394), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(1397), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2116), 30, - sym_string_start, + ACTIONS(1392), 27, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_in, anon_sym_if, @@ -98976,28 +99535,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80526] = 3, + [80274] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1474), 5, - anon_sym_as, + ACTIONS(2406), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1476), 30, + ACTIONS(2408), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -99017,28 +99575,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80570] = 3, + sym_type_conversion, + [80318] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2349), 5, - anon_sym_as, + ACTIONS(2374), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2351), 30, + ACTIONS(2376), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -99058,17 +99616,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80614] = 3, + sym_type_conversion, + [80362] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2337), 5, + ACTIONS(2378), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2339), 30, + ACTIONS(2380), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -99099,27 +99658,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [80658] = 3, + [80406] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2333), 5, - anon_sym_EQ, + ACTIONS(2109), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2335), 30, + ACTIONS(2111), 30, + sym_string_start, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -99139,28 +99699,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [80702] = 5, - ACTIONS(1385), 1, - anon_sym_COLON_EQ, + [80450] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1455), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1462), 5, - anon_sym_as, + ACTIONS(1420), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1457), 27, + ACTIONS(1415), 30, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, @@ -99183,27 +99739,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80750] = 5, - ACTIONS(288), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [80494] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(463), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(471), 5, - anon_sym_as, + ACTIONS(1403), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(524), 27, + ACTIONS(1405), 30, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, @@ -99226,17 +99780,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80798] = 3, + sym_type_conversion, + [80538] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2329), 5, + ACTIONS(1504), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2331), 30, + ACTIONS(1499), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -99267,64 +99822,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [80842] = 5, - ACTIONS(288), 1, - anon_sym_COLON_EQ, + [80582] = 15, + ACTIONS(2318), 1, + anon_sym_LBRACK, + ACTIONS(2320), 1, + anon_sym_LPAREN, + ACTIONS(2322), 1, + anon_sym_DOT, + ACTIONS(2336), 1, + anon_sym_STAR_STAR, + ACTIONS(2338), 1, + anon_sym_PIPE, + ACTIONS(2340), 1, + anon_sym_AMP, + ACTIONS(2342), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(463), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(471), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2097), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(524), 27, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(2324), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2326), 2, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_LT_LT, + ACTIONS(2332), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1335), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2334), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(2099), 15, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80890] = 3, + [80650] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2114), 5, + ACTIONS(1434), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2116), 30, - sym_string_start, + ACTIONS(1429), 30, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, anon_sym_GT_GT, @@ -99351,17 +99916,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80934] = 3, + [80694] = 15, + ACTIONS(2318), 1, + anon_sym_LBRACK, + ACTIONS(2320), 1, + anon_sym_LPAREN, + ACTIONS(2322), 1, + anon_sym_DOT, + ACTIONS(2336), 1, + anon_sym_STAR_STAR, + ACTIONS(2338), 1, + anon_sym_PIPE, + ACTIONS(2340), 1, + anon_sym_AMP, + ACTIONS(2342), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2093), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2324), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2326), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2332), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1335), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2334), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2095), 15, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [80762] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2357), 5, + ACTIONS(302), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2359), 30, + ACTIONS(300), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -99392,28 +100010,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80978] = 3, + [80806] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2275), 5, - anon_sym_as, + ACTIONS(1403), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2277), 30, + ACTIONS(1405), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -99433,69 +100050,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81022] = 3, + sym_type_conversion, + [80850] = 12, + ACTIONS(2284), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(2302), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2261), 5, - anon_sym_as, + ACTIONS(2290), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2292), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2298), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2052), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2263), 30, - anon_sym_LBRACK, + ACTIONS(2300), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2054), 17, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [80912] = 13, + ACTIONS(2284), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(2302), 1, + anon_sym_STAR_STAR, + ACTIONS(2308), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2290), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2292), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2298), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2052), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2300), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, + ACTIONS(2054), 16, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [80976] = 14, + ACTIONS(2284), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(2302), 1, + anon_sym_STAR_STAR, + ACTIONS(2306), 1, + anon_sym_AMP, + ACTIONS(2308), 1, anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2290), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2292), 2, + anon_sym_GT_GT, anon_sym_LT_LT, + ACTIONS(2298), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2052), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2300), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2054), 15, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81066] = 3, + [81042] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2257), 5, - anon_sym_as, + ACTIONS(2109), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2259), 30, + ACTIONS(2111), 30, + sym_string_start, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -99515,17 +100245,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81110] = 3, + [81086] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2253), 5, + ACTIONS(1397), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2255), 30, + ACTIONS(1392), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -99556,30 +100286,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81154] = 5, - ACTIONS(1385), 1, - anon_sym_COLON_EQ, + [81130] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1396), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1399), 5, - anon_sym_as, + ACTIONS(1451), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 27, + ACTIONS(1453), 30, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -99599,25 +100326,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81202] = 5, - ACTIONS(288), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [81174] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(305), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(303), 5, + ACTIONS(2109), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 27, + ACTIONS(2111), 30, + sym_string_start, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOT, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_in, anon_sym_if, @@ -99642,30 +100368,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81250] = 5, - ACTIONS(288), 1, + [81218] = 5, + ACTIONS(290), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(305), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(303), 5, + ACTIONS(465), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(473), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 27, + ACTIONS(566), 27, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -99685,28 +100411,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81298] = 3, + [81266] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2249), 5, - anon_sym_as, + ACTIONS(2394), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2251), 30, + ACTIONS(2396), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -99726,17 +100451,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81342] = 3, + sym_type_conversion, + [81310] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1478), 5, + ACTIONS(2382), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1480), 30, + ACTIONS(2384), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -99767,23 +100493,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [81386] = 3, + [81354] = 4, + ACTIONS(1417), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2325), 5, + ACTIONS(1420), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2327), 30, + ACTIONS(1415), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, @@ -99808,24 +100535,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [81430] = 3, + [81400] = 5, + ACTIONS(290), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2321), 5, - anon_sym_EQ, + ACTIONS(465), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(473), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2323), 30, + ACTIONS(566), 27, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, @@ -99848,78 +100578,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [81474] = 8, - ACTIONS(2214), 1, - anon_sym_LBRACK, - ACTIONS(2216), 1, - anon_sym_LPAREN, - ACTIONS(2218), 1, - anon_sym_DOT, - ACTIONS(2232), 1, - anon_sym_STAR_STAR, + [81448] = 5, + ACTIONS(1383), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1226), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2068), 5, - anon_sym_EQ, + ACTIONS(1465), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1472), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2066), 24, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [81528] = 8, - ACTIONS(2214), 1, + ACTIONS(1467), 27, anon_sym_LBRACK, - ACTIONS(2216), 1, anon_sym_LPAREN, - ACTIONS(2218), 1, + anon_sym_RPAREN, anon_sym_DOT, - ACTIONS(2232), 1, - anon_sym_STAR_STAR, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - STATE(1226), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2064), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2062), 24, - anon_sym_COLON, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, @@ -99931,6 +100610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -99941,28 +100621,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81582] = 8, - ACTIONS(2214), 1, + [81496] = 8, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(2216), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(2218), 1, + ACTIONS(2288), 1, anon_sym_DOT, - ACTIONS(2232), 1, + ACTIONS(2302), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1226), 2, + STATE(1249), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2050), 5, + ACTIONS(2052), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 24, + ACTIONS(2054), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_as, @@ -99987,27 +100667,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81636] = 3, + [81550] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2287), 5, - anon_sym_EQ, + ACTIONS(1403), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2289), 30, + ACTIONS(1405), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -100027,18 +100708,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [81680] = 3, + [81594] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1474), 5, + ACTIONS(1403), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1476), 30, + ACTIONS(1405), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -100069,36 +100749,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81724] = 11, - ACTIONS(2214), 1, + [81638] = 10, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(2216), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(2218), 1, + ACTIONS(2288), 1, anon_sym_DOT, - ACTIONS(2232), 1, + ACTIONS(2302), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2220), 2, + ACTIONS(2290), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2228), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1226), 2, + STATE(1249), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2050), 3, + ACTIONS(2052), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 3, + ACTIONS(2300), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2052), 19, + ACTIONS(2054), 21, anon_sym_COLON, anon_sym_COMMA, anon_sym_as, @@ -100108,6 +100785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -100118,44 +100797,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81784] = 10, - ACTIONS(2214), 1, - anon_sym_LBRACK, - ACTIONS(2216), 1, - anon_sym_LPAREN, - ACTIONS(2218), 1, - anon_sym_DOT, - ACTIONS(2232), 1, - anon_sym_STAR_STAR, + [81696] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2220), 2, + ACTIONS(1447), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - STATE(1226), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2050), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 21, + ACTIONS(1449), 30, + anon_sym_LBRACK, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -100166,29 +100838,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81842] = 8, - ACTIONS(2214), 1, - anon_sym_LBRACK, - ACTIONS(2216), 1, - anon_sym_LPAREN, - ACTIONS(2218), 1, - anon_sym_DOT, - ACTIONS(2232), 1, - anon_sym_STAR_STAR, + [81740] = 4, + ACTIONS(290), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1226), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2050), 5, + ACTIONS(302), 6, anon_sym_EQ, + anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 24, - anon_sym_COLON, + ACTIONS(300), 28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -100202,6 +100869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -100212,37 +100880,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81896] = 3, + [81786] = 11, + ACTIONS(2284), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(2302), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 5, - anon_sym_as, + ACTIONS(2290), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2298), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2052), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 30, - anon_sym_LBRACK, + ACTIONS(2300), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2054), 19, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -100253,26 +100929,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81940] = 4, + [81846] = 8, + ACTIONS(2284), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(2302), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1455), 3, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - ACTIONS(1462), 5, - anon_sym_as, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2052), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1457), 27, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_DOT, + ACTIONS(2054), 24, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, @@ -100284,7 +100965,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -100295,21 +100975,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81986] = 3, + [81900] = 4, + ACTIONS(290), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1415), 5, + ACTIONS(302), 6, anon_sym_EQ, + anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 30, + ACTIONS(300), 28, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -100335,29 +101017,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [82030] = 3, + [81946] = 4, + ACTIONS(1383), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2353), 5, - anon_sym_as, + ACTIONS(1397), 6, + anon_sym_EQ, + anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2355), 30, + ACTIONS(1392), 28, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -100377,69 +101059,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82074] = 3, + [81992] = 19, + ACTIONS(2115), 1, + anon_sym_LPAREN, + ACTIONS(2125), 1, + anon_sym_not, + ACTIONS(2131), 1, + anon_sym_STAR_STAR, + ACTIONS(2133), 1, + anon_sym_PIPE, + ACTIONS(2135), 1, + anon_sym_AMP, + ACTIONS(2137), 1, + anon_sym_CARET, + ACTIONS(2141), 1, + anon_sym_is, + ACTIONS(2173), 1, + anon_sym_LBRACK, + ACTIONS(2177), 1, + anon_sym_DOT, + STATE(1411), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1491), 5, - anon_sym_as, + ACTIONS(2119), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1486), 30, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(2121), 2, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_LT_LT, + ACTIONS(2127), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2139), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1223), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2129), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(1956), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2123), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, - [82118] = 3, + [82068] = 8, + ACTIONS(2318), 1, + anon_sym_LBRACK, + ACTIONS(2320), 1, + anon_sym_LPAREN, + ACTIONS(2322), 1, + anon_sym_DOT, + ACTIONS(2336), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1502), 5, - anon_sym_as, + STATE(1335), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2101), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1497), 30, - anon_sym_LBRACK, + ACTIONS(2103), 25, + anon_sym_RBRACK, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -100448,7 +101152,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -100459,68 +101162,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82162] = 13, - ACTIONS(2214), 1, + [82122] = 8, + ACTIONS(2318), 1, anon_sym_LBRACK, - ACTIONS(2216), 1, + ACTIONS(2320), 1, anon_sym_LPAREN, - ACTIONS(2218), 1, + ACTIONS(2322), 1, anon_sym_DOT, - ACTIONS(2232), 1, + ACTIONS(2336), 1, anon_sym_STAR_STAR, - ACTIONS(2238), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2220), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2222), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2228), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1226), 2, + STATE(1335), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2050), 3, - anon_sym_EQ, + ACTIONS(2105), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 16, + ACTIONS(2107), 25, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82226] = 3, + [82176] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1423), 5, + ACTIONS(1434), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1425), 30, + ACTIONS(1429), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -100551,17 +101249,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [82270] = 3, + [82220] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2283), 5, + ACTIONS(302), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2285), 30, + ACTIONS(300), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -100592,21 +101290,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [82314] = 3, + [82264] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2103), 5, + ACTIONS(1407), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2105), 30, - sym_string_start, + ACTIONS(1409), 30, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_GT_GT, @@ -100633,28 +101331,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82358] = 3, + [82308] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1472), 5, - anon_sym_as, + ACTIONS(1397), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 30, + ACTIONS(1392), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -100674,71 +101371,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82402] = 12, - ACTIONS(2214), 1, + sym_type_conversion, + [82352] = 8, + ACTIONS(2318), 1, anon_sym_LBRACK, - ACTIONS(2216), 1, + ACTIONS(2320), 1, anon_sym_LPAREN, - ACTIONS(2218), 1, + ACTIONS(2322), 1, anon_sym_DOT, - ACTIONS(2232), 1, + ACTIONS(2336), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2220), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2222), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2228), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1226), 2, + STATE(1335), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2050), 3, - anon_sym_EQ, + ACTIONS(2052), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 17, + ACTIONS(2054), 25, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82464] = 3, + [82406] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 5, + ACTIONS(1407), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 30, + ACTIONS(1409), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_GT_GT, @@ -100765,27 +101459,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82508] = 3, + [82450] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2279), 5, - anon_sym_EQ, + ACTIONS(1436), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2281), 30, + ACTIONS(1438), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -100805,64 +101500,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [82552] = 3, + [82494] = 15, + ACTIONS(2284), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(2302), 1, + anon_sym_STAR_STAR, + ACTIONS(2304), 1, + anon_sym_PIPE, + ACTIONS(2306), 1, + anon_sym_AMP, + ACTIONS(2308), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 5, - anon_sym_as, + ACTIONS(2290), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2292), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2298), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2059), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 30, - anon_sym_LBRACK, + ACTIONS(2300), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2061), 14, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82596] = 3, + [82562] = 11, + ACTIONS(2318), 1, + anon_sym_LBRACK, + ACTIONS(2320), 1, + anon_sym_LPAREN, + ACTIONS(2322), 1, + anon_sym_DOT, + ACTIONS(2336), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1423), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2052), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1425), 30, - anon_sym_LBRACK, + ACTIONS(2324), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2332), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1335), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2334), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2054), 20, + anon_sym_RBRACK, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -100871,12 +101592,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -100887,46 +101602,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [82640] = 15, - ACTIONS(2214), 1, + [82622] = 15, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(2216), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(2218), 1, + ACTIONS(2288), 1, anon_sym_DOT, - ACTIONS(2232), 1, + ACTIONS(2302), 1, anon_sym_STAR_STAR, - ACTIONS(2234), 1, + ACTIONS(2304), 1, anon_sym_PIPE, - ACTIONS(2236), 1, + ACTIONS(2306), 1, anon_sym_AMP, - ACTIONS(2238), 1, + ACTIONS(2308), 1, anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2220), 2, + ACTIONS(2290), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2222), 2, + ACTIONS(2292), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2228), 2, + ACTIONS(2298), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1226), 2, + STATE(1249), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2112), 3, + ACTIONS(2097), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 3, + ACTIONS(2300), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2110), 14, + ACTIONS(2099), 14, anon_sym_COLON, anon_sym_COMMA, anon_sym_as, @@ -100941,29 +101655,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82708] = 4, - ACTIONS(1385), 1, - anon_sym_COLON_EQ, + [82690] = 8, + ACTIONS(2284), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(2302), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 5, - anon_sym_as, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2105), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 29, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(2107), 24, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -100972,7 +101691,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -100983,70 +101701,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82754] = 4, - ACTIONS(288), 1, - anon_sym_COLON_EQ, + [82744] = 15, + ACTIONS(2284), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(2302), 1, + anon_sym_STAR_STAR, + ACTIONS(2304), 1, + anon_sym_PIPE, + ACTIONS(2306), 1, + anon_sym_AMP, + ACTIONS(2308), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 5, - anon_sym_as, + ACTIONS(2290), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2292), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2298), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2093), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 29, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(2300), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2095), 14, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82800] = 3, + [82812] = 8, + ACTIONS(2284), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(2302), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1478), 5, - anon_sym_as, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2101), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1480), 30, - anon_sym_LBRACK, + ACTIONS(2103), 24, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -101055,7 +101790,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -101066,38 +101800,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82844] = 4, - ACTIONS(288), 1, - anon_sym_COLON_EQ, + [82866] = 10, + ACTIONS(2318), 1, + anon_sym_LBRACK, + ACTIONS(2320), 1, + anon_sym_LPAREN, + ACTIONS(2322), 1, + anon_sym_DOT, + ACTIONS(2336), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2052), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 29, - anon_sym_LBRACK, + ACTIONS(2324), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1335), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2334), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2054), 22, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -101108,88 +101848,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82890] = 5, + [82924] = 8, + ACTIONS(2318), 1, + anon_sym_LBRACK, + ACTIONS(2320), 1, + anon_sym_LPAREN, + ACTIONS(2322), 1, + anon_sym_DOT, + ACTIONS(2336), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1462), 2, + STATE(1335), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2052), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1453), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1457), 14, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(2054), 25, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1455), 16, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82938] = 15, - ACTIONS(2214), 1, + [82978] = 14, + ACTIONS(2318), 1, anon_sym_LBRACK, - ACTIONS(2216), 1, + ACTIONS(2320), 1, anon_sym_LPAREN, - ACTIONS(2218), 1, + ACTIONS(2322), 1, anon_sym_DOT, - ACTIONS(2232), 1, + ACTIONS(2336), 1, anon_sym_STAR_STAR, - ACTIONS(2234), 1, - anon_sym_PIPE, - ACTIONS(2236), 1, + ACTIONS(2340), 1, anon_sym_AMP, - ACTIONS(2238), 1, + ACTIONS(2342), 1, anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2220), 2, + ACTIONS(2052), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2324), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2222), 2, + ACTIONS(2326), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2228), 2, + ACTIONS(2332), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1226), 2, + STATE(1335), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2120), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2230), 3, + ACTIONS(2334), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2118), 14, + ACTIONS(2054), 16, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_COMMA, anon_sym_as, @@ -101198,156 +101939,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83006] = 3, + [83044] = 13, + ACTIONS(2318), 1, + anon_sym_LBRACK, + ACTIONS(2320), 1, + anon_sym_LPAREN, + ACTIONS(2322), 1, + anon_sym_DOT, + ACTIONS(2336), 1, + anon_sym_STAR_STAR, + ACTIONS(2342), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1415), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2052), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 30, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(2324), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2326), 2, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_LT_LT, + ACTIONS(2332), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1335), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2334), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [83050] = 3, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(1423), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1425), 30, - anon_sym_LBRACK, + ACTIONS(2054), 17, + anon_sym_RBRACK, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83094] = 3, + [83108] = 12, + ACTIONS(2318), 1, + anon_sym_LBRACK, + ACTIONS(2320), 1, + anon_sym_LPAREN, + ACTIONS(2322), 1, + anon_sym_DOT, + ACTIONS(2336), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1423), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2052), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1425), 30, - anon_sym_LBRACK, + ACTIONS(2324), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2326), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2332), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1335), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2334), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2054), 18, + anon_sym_RBRACK, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83138] = 3, + [83170] = 4, + ACTIONS(290), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2267), 5, + ACTIONS(302), 6, anon_sym_EQ, + anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2269), 30, + ACTIONS(300), 28, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -101367,18 +102089,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [83182] = 3, + [83216] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2271), 5, + ACTIONS(2410), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2273), 30, + ACTIONS(2412), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -101409,17 +102130,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [83226] = 3, + [83260] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1419), 5, + ACTIONS(1436), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 30, + ACTIONS(1438), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -101450,17 +102171,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [83270] = 3, + [83304] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1419), 5, + ACTIONS(1407), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 30, + ACTIONS(1409), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -101491,28 +102212,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [83314] = 3, + [83348] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1419), 5, - anon_sym_as, + ACTIONS(1407), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 30, + ACTIONS(1409), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -101532,28 +102252,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83358] = 3, + sym_type_conversion, + [83392] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1419), 5, - anon_sym_as, + ACTIONS(2390), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 30, + ACTIONS(2392), 30, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -101573,21 +102293,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83402] = 4, + sym_type_conversion, + [83436] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1394), 3, + ACTIONS(2386), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2388), 30, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(1399), 13, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, @@ -101595,46 +102328,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1387), 18, - sym__newline, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [83447] = 3, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [83480] = 4, + ACTIONS(290), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2261), 5, - anon_sym_as, + ACTIONS(302), 6, + anon_sym_EQ, + anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2263), 29, + ACTIONS(300), 28, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -101654,22 +102377,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83490] = 5, + [83526] = 4, + ACTIONS(1383), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1462), 2, + ACTIONS(1397), 6, + anon_sym_EQ, + anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1453), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1457), 14, + ACTIONS(1392), 28, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -101680,43 +102413,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1455), 15, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83537] = 3, + [83572] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2325), 5, - anon_sym_as, + ACTIONS(2414), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2327), 29, + ACTIONS(2416), 29, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -101736,27 +102459,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83580] = 3, + [83615] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2321), 5, - anon_sym_as, + ACTIONS(2356), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2323), 29, + ACTIONS(2358), 29, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -101776,17 +102499,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83623] = 3, + [83658] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1472), 5, + ACTIONS(2364), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 29, + ACTIONS(2366), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -101816,22 +102539,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83666] = 5, + [83701] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1462), 2, + ACTIONS(2394), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1453), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1457), 14, + ACTIONS(2396), 29, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -101842,9 +102573,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1455), 15, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [83744] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2382), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2384), 29, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_async, @@ -101852,72 +102603,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83713] = 7, - ACTIONS(1465), 1, - anon_sym_EQ, + [83787] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1453), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1462), 2, + ACTIONS(2360), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1460), 5, - anon_sym_COLON, - anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2362), 29, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(1455), 12, - anon_sym_as, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - ACTIONS(1457), 12, + [83830] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1451), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1453), 29, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, + anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [83764] = 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [83873] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(471), 2, + ACTIONS(2406), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(461), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(524), 14, + ACTIONS(2408), 29, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -101928,9 +102733,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(463), 15, - anon_sym_RPAREN, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [83916] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2394), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2396), 29, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_async, @@ -101938,27 +102763,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83811] = 4, + [83959] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1467), 3, + ACTIONS(2214), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2216), 29, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, - ACTIONS(1472), 13, - anon_sym_STAR, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, @@ -101966,44 +102813,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1387), 18, - sym__newline, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [83856] = 7, - ACTIONS(1465), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [84002] = 7, + ACTIONS(1475), 1, anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1453), 2, + ACTIONS(1463), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1462), 2, + ACTIONS(1472), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1460), 5, + ACTIONS(1470), 5, sym__newline, anon_sym_COLON, anon_sym_SEMI, anon_sym_DOT, anon_sym_PIPE, - ACTIONS(1455), 12, + ACTIONS(1465), 12, anon_sym_as, anon_sym_in, anon_sym_if, @@ -102016,7 +102850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - ACTIONS(1457), 12, + ACTIONS(1467), 12, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_GT_GT, @@ -102029,62 +102863,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [83907] = 4, + [84053] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1497), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOT, - ACTIONS(1502), 13, + ACTIONS(2398), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1495), 18, - sym__newline, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [83952] = 4, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(1486), 3, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2400), 29, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, - ACTIONS(1491), 13, - anon_sym_STAR, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, @@ -102092,46 +102897,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1484), 18, - sym__newline, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [83997] = 3, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [84096] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2349), 5, - anon_sym_EQ, + ACTIONS(2402), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2351), 29, + ACTIONS(2404), 29, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -102151,20 +102943,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84040] = 3, + [84139] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1472), 5, + ACTIONS(2382), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 29, + ACTIONS(2384), 29, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_GT_GT, @@ -102191,30 +102983,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84083] = 3, + [84182] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 5, - anon_sym_EQ, + ACTIONS(473), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(463), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 29, + ACTIONS(566), 14, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -102225,37 +103009,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(465), 15, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_in, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84126] = 4, + [84229] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1499), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1502), 5, - anon_sym_as, + ACTIONS(473), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(463), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1497), 27, + ACTIONS(566), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -102266,33 +103051,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(465), 15, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_in, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84171] = 3, + [84276] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2249), 5, - anon_sym_EQ, + ACTIONS(2414), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2251), 29, + ACTIONS(2416), 29, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -102312,28 +103107,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84214] = 4, + [84319] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1488), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1491), 5, - anon_sym_as, + ACTIONS(2207), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1486), 27, + ACTIONS(2209), 30, + sym_string_start, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -102353,30 +103147,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84259] = 3, + [84362] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 5, - anon_sym_as, + ACTIONS(1472), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1463), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 29, + ACTIONS(1467), 14, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -102387,23 +103173,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1465), 15, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84302] = 3, + [84409] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 5, + ACTIONS(2352), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 29, + ACTIONS(2354), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -102433,27 +103229,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84345] = 3, + [84452] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2345), 5, - anon_sym_EQ, + ACTIONS(2348), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2347), 29, + ACTIONS(2350), 29, anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -102473,36 +103269,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84388] = 5, + [84495] = 7, + ACTIONS(1475), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(471), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(461), 3, - anon_sym_EQ, + ACTIONS(1463), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(524), 14, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(463), 15, + ACTIONS(1472), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1470), 5, anon_sym_COLON, anon_sym_RPAREN, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(1465), 12, anon_sym_as, anon_sym_in, anon_sym_if, @@ -102515,21 +103300,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84435] = 5, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(471), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(461), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(524), 14, + ACTIONS(1467), 12, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -102537,47 +103310,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(463), 15, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [84482] = 3, + [84546] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2287), 5, - anon_sym_as, + ACTIONS(2109), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2289), 29, + ACTIONS(2111), 30, + sym_string_start, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -102597,27 +103353,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84525] = 3, + [84589] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2353), 5, + ACTIONS(2374), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2355), 29, + ACTIONS(2376), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -102637,27 +103393,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84568] = 3, + [84632] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1491), 5, - anon_sym_EQ, + ACTIONS(2410), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1486), 29, + ACTIONS(2412), 29, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -102677,17 +103433,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84611] = 3, + [84675] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2341), 5, + ACTIONS(2378), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2343), 29, + ACTIONS(2380), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -102717,17 +103473,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84654] = 3, + [84718] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2337), 5, + ACTIONS(2386), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2339), 29, + ACTIONS(2388), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -102757,27 +103513,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84697] = 3, + [84761] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2345), 5, - anon_sym_as, + ACTIONS(2390), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2347), 29, + ACTIONS(2392), 29, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -102797,27 +103553,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84740] = 3, + [84804] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2283), 5, - anon_sym_as, + ACTIONS(2410), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2285), 29, + ACTIONS(2412), 29, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -102837,20 +103593,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84783] = 3, + [84847] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2279), 5, + ACTIONS(2278), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2281), 29, + ACTIONS(2280), 29, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_GT_GT, @@ -102877,27 +103633,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84826] = 3, + [84890] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1502), 5, - anon_sym_EQ, + ACTIONS(2390), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1497), 29, + ACTIONS(2392), 29, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -102917,27 +103673,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84869] = 3, + [84933] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2357), 5, - anon_sym_EQ, + ACTIONS(2386), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2359), 29, + ACTIONS(2388), 29, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -102957,83 +103713,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84912] = 19, - ACTIONS(2214), 1, - anon_sym_LBRACK, - ACTIONS(2216), 1, - anon_sym_LPAREN, - ACTIONS(2218), 1, - anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_not, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2377), 1, - anon_sym_PIPE, - ACTIONS(2379), 1, - anon_sym_AMP, - ACTIONS(2381), 1, - anon_sym_CARET, - ACTIONS(2385), 1, - anon_sym_is, - STATE(1506), 1, - aux_sym_comparison_operator_repeat1, + [84976] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2363), 2, + ACTIONS(473), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2365), 2, + ACTIONS(463), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(566), 14, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2371), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2383), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1226), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2373), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1958), 5, - anon_sym_as, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(465), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_in, anon_sym_if, - anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2367), 6, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84987] = 3, + anon_sym_is, + [85023] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1472), 5, + ACTIONS(2382), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 29, + ACTIONS(2384), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -103053,27 +103795,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85030] = 3, + [85066] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 5, + ACTIONS(2394), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 29, + ACTIONS(2396), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -103093,30 +103835,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85073] = 3, + [85109] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2341), 5, - anon_sym_as, + ACTIONS(473), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(463), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2343), 29, + ACTIONS(566), 14, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -103127,29 +103861,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [85116] = 3, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2337), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2339), 29, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(465), 15, anon_sym_RPAREN, - anon_sym_DOT, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_async, @@ -103157,43 +103871,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85159] = 3, + [85156] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2333), 5, - anon_sym_as, + ACTIONS(2348), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2335), 29, + ACTIONS(2350), 29, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -103213,27 +103917,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85202] = 3, + [85199] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2329), 5, - anon_sym_as, + ACTIONS(2406), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2331), 29, + ACTIONS(2408), 29, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -103253,27 +103957,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85245] = 3, + [85242] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2275), 5, + ACTIONS(302), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2277), 29, + ACTIONS(300), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -103293,27 +103997,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85288] = 3, + [85285] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2271), 5, - anon_sym_as, + ACTIONS(2214), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2273), 29, + ACTIONS(2216), 29, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -103333,17 +104037,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85331] = 3, + [85328] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2267), 5, + ACTIONS(2370), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2269), 29, + ACTIONS(2372), 29, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103373,17 +104077,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85374] = 3, + [85371] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2261), 5, + ACTIONS(2398), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2263), 29, + ACTIONS(2400), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -103413,27 +104117,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85417] = 3, + [85414] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2267), 5, - anon_sym_EQ, + ACTIONS(2378), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2269), 29, + ACTIONS(2380), 29, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -103453,27 +104157,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85460] = 3, + [85457] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2257), 5, - anon_sym_EQ, + ACTIONS(2374), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2259), 29, + ACTIONS(2376), 29, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -103493,27 +104197,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85503] = 3, + [85500] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2271), 5, + ACTIONS(2402), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2273), 29, + ACTIONS(2404), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -103533,30 +104237,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85546] = 3, + [85543] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1419), 5, - anon_sym_EQ, + ACTIONS(473), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(463), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 29, + ACTIONS(566), 14, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_else, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -103567,76 +104263,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [85589] = 3, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2253), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2255), 29, - anon_sym_LBRACK, + ACTIONS(465), 15, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85632] = 3, + [85590] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1419), 5, - anon_sym_EQ, + ACTIONS(473), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(463), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 29, + ACTIONS(566), 14, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_else, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -103647,33 +104305,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(465), 15, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85675] = 3, + [85637] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2333), 5, + ACTIONS(2352), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2335), 29, + ACTIONS(2354), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -103693,86 +104361,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85718] = 22, - ACTIONS(7), 1, - anon_sym_unset, - ACTIONS(9), 1, - anon_sym_inherit, - ACTIONS(11), 1, - anon_sym_include, - ACTIONS(13), 1, - anon_sym_require, - ACTIONS(15), 1, - anon_sym_export, - ACTIONS(17), 1, - anon_sym_OVERRIDES, - ACTIONS(19), 1, - anon_sym_EXPORT_FUNCTIONS, - ACTIONS(21), 1, - anon_sym_addtask, - ACTIONS(23), 1, - anon_sym_deltask, - ACTIONS(25), 1, - anon_sym_addhandler, - ACTIONS(27), 1, - anon_sym_fakeroot, - ACTIONS(29), 1, - anon_sym_python, - ACTIONS(31), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(33), 1, - anon_sym_def, - ACTIONS(35), 1, - sym_identifier, - ACTIONS(37), 1, - aux_sym__dotted_identifier_token1, - ACTIONS(2387), 1, - ts_builtin_sym_end, - STATE(1315), 1, - aux_sym_recipe_repeat1, - STATE(1521), 1, - sym_concatenation, - STATE(2296), 1, - sym_variable_expansion, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - STATE(2305), 14, - sym_variable_assignment, - sym_unset_statement, - sym_inherit_directive, - sym_include_directive, - sym_require_directive, - sym_export_statement, - sym_overrides_statement, - sym_export_functions_statement, - sym_addtask_statement, - sym_deltask_statement, - sym_addhandler_statement, - sym_anonymous_python_function, - sym_function_definition, - sym_python_function_definition, - [85799] = 3, + [85680] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2321), 5, - anon_sym_as, + ACTIONS(2314), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2323), 29, + ACTIONS(2316), 29, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -103792,17 +104401,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85842] = 3, + [85723] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2279), 5, + ACTIONS(1420), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2281), 29, + ACTIONS(1415), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -103832,17 +104441,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85885] = 3, + [85766] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2283), 5, + ACTIONS(1504), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2285), 29, + ACTIONS(1499), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -103872,27 +104481,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85928] = 3, + [85809] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1423), 5, - anon_sym_EQ, + ACTIONS(1417), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1420), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1425), 29, + ACTIONS(1415), 27, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -103912,22 +104522,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85971] = 5, + [85854] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(471), 2, + ACTIONS(1501), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1504), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(461), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(524), 14, + ACTIONS(1499), 27, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -103938,43 +104557,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(463), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86018] = 3, + [85899] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1423), 5, - anon_sym_EQ, + ACTIONS(2410), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1425), 29, + ACTIONS(2412), 29, anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -103994,28 +104603,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86061] = 4, + [85942] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1469), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1472), 5, - anon_sym_as, + ACTIONS(2370), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 27, + ACTIONS(2372), 29, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -104035,27 +104643,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86106] = 3, + [85985] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1415), 5, + ACTIONS(2360), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 29, + ACTIONS(2362), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -104075,17 +104683,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86149] = 3, + [86028] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2287), 5, + ACTIONS(2364), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2289), 29, + ACTIONS(2366), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -104115,17 +104723,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86192] = 3, + [86071] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2329), 5, + ACTIONS(2364), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2331), 29, + ACTIONS(2366), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -104155,23 +104763,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86235] = 4, + [86114] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1396), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1399), 5, + ACTIONS(2364), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 27, + ACTIONS(2366), 29, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_in, anon_sym_if, @@ -104196,27 +104803,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86280] = 3, + [86157] = 19, + ACTIONS(2284), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(2426), 1, + anon_sym_not, + ACTIONS(2432), 1, + anon_sym_STAR_STAR, + ACTIONS(2434), 1, + anon_sym_PIPE, + ACTIONS(2436), 1, + anon_sym_AMP, + ACTIONS(2438), 1, + anon_sym_CARET, + ACTIONS(2442), 1, + anon_sym_is, + STATE(1508), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2420), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2422), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2428), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2440), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2430), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1956), 5, + anon_sym_as, + anon_sym_if, + anon_sym_else, + anon_sym_and, + anon_sym_or, + ACTIONS(2424), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [86232] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 5, + ACTIONS(2360), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 29, + ACTIONS(2362), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -104236,27 +104899,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86323] = 3, + [86275] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 5, - anon_sym_as, + ACTIONS(2374), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 29, + ACTIONS(2376), 29, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -104276,27 +104939,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86366] = 3, + [86318] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2287), 5, - anon_sym_as, + ACTIONS(2378), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2289), 29, + ACTIONS(2380), 29, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -104316,27 +104979,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86409] = 3, + [86361] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2325), 5, - anon_sym_as, + ACTIONS(2278), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2327), 29, + ACTIONS(2280), 29, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -104356,27 +105019,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86452] = 3, + [86404] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2249), 5, + ACTIONS(1434), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2251), 29, + ACTIONS(1429), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -104396,27 +105059,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86495] = 3, + [86447] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1419), 5, - anon_sym_EQ, + ACTIONS(2360), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 29, + ACTIONS(2362), 29, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -104436,27 +105099,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86538] = 3, + [86490] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1419), 5, + ACTIONS(2356), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 29, + ACTIONS(2358), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -104476,27 +105139,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86581] = 3, + [86533] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2325), 5, - anon_sym_EQ, + ACTIONS(2356), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2327), 29, + ACTIONS(2358), 29, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -104516,17 +105179,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86624] = 3, + [86576] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1502), 5, + ACTIONS(2352), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1497), 29, + ACTIONS(2354), 29, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104556,20 +105219,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86667] = 3, + [86619] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1502), 5, + ACTIONS(2348), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1497), 29, + ACTIONS(2350), 29, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_GT_GT, @@ -104596,17 +105259,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86710] = 3, + [86662] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2321), 5, + ACTIONS(1403), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2323), 29, + ACTIONS(1405), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -104636,17 +105299,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86753] = 3, + [86705] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1423), 5, + ACTIONS(302), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1425), 29, + ACTIONS(300), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -104676,17 +105339,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86796] = 3, + [86748] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1478), 5, + ACTIONS(1447), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1480), 29, + ACTIONS(1449), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -104716,19 +105379,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86839] = 3, + [86791] = 5, + ACTIONS(1383), 1, + anon_sym_COLON_EQ, + ACTIONS(2368), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1423), 5, - anon_sym_EQ, + ACTIONS(1397), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1425), 29, + ACTIONS(1392), 28, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DOT, @@ -104756,27 +105421,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86882] = 3, + [86838] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1491), 5, - anon_sym_as, + ACTIONS(1403), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1486), 29, + ACTIONS(1405), 29, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -104796,27 +105461,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86925] = 3, + [86881] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2353), 5, - anon_sym_as, + ACTIONS(1397), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2355), 29, + ACTIONS(1392), 29, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -104836,27 +105501,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86968] = 3, + [86924] = 5, + ACTIONS(290), 1, + anon_sym_COLON_EQ, + ACTIONS(569), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2279), 5, - anon_sym_as, + ACTIONS(302), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2281), 29, + ACTIONS(300), 28, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -104876,22 +105543,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87011] = 5, + [86971] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(471), 2, + ACTIONS(2352), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(461), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(524), 14, + ACTIONS(2354), 29, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -104902,33 +105577,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(463), 15, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [87014] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2348), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2350), 29, + anon_sym_LBRACK, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87058] = 3, + [87057] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1491), 5, + ACTIONS(2278), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1486), 29, + ACTIONS(2280), 29, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104958,18 +105663,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87101] = 5, + [87100] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(471), 2, + ACTIONS(1472), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(461), 3, - anon_sym_EQ, + ACTIONS(1463), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(524), 14, + ACTIONS(1467), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -104984,13 +105689,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(463), 15, - anon_sym_COLON, + ACTIONS(1465), 15, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_as, anon_sym_in, anon_sym_if, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105000,20 +105705,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87148] = 3, + [87147] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2353), 5, + ACTIONS(1436), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2355), 29, + ACTIONS(1438), 29, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_GT_GT, @@ -105040,28 +105745,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87191] = 4, + [87190] = 4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1431), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1434), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1429), 27, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [87235] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1455), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1462), 5, + ACTIONS(1394), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1397), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1457), 27, + ACTIONS(1392), 27, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOT, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105081,27 +105827,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87236] = 3, + [87280] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1415), 5, - anon_sym_EQ, + ACTIONS(1407), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 29, + ACTIONS(1409), 29, anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105121,27 +105867,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87279] = 3, + [87323] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 5, - anon_sym_as, + ACTIONS(1403), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 29, + ACTIONS(1405), 29, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105161,27 +105907,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87322] = 3, + [87366] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2349), 5, - anon_sym_as, + ACTIONS(1403), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2351), 29, + ACTIONS(1405), 29, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105201,27 +105947,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87365] = 3, + [87409] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2287), 5, - anon_sym_EQ, + ACTIONS(1407), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2289), 29, + ACTIONS(1409), 29, anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105241,17 +105987,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87408] = 3, + [87452] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2329), 5, + ACTIONS(2390), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2331), 29, + ACTIONS(2392), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -105281,27 +106027,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87451] = 3, + [87495] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2321), 5, + ACTIONS(2278), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2323), 29, + ACTIONS(2280), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105321,27 +106067,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87494] = 3, + [87538] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2283), 5, + ACTIONS(300), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + ACTIONS(302), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(292), 18, + sym__newline, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [87583] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1407), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2285), 29, + ACTIONS(1409), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105361,27 +106148,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87537] = 3, + [87626] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2279), 5, + ACTIONS(1407), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2281), 29, + ACTIONS(1409), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105401,27 +106188,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87580] = 3, + [87669] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 5, + ACTIONS(1436), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 29, + ACTIONS(1438), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105441,17 +106228,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87623] = 3, + [87712] = 4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(300), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + ACTIONS(302), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(292), 18, + sym__newline, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [87757] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1478), 5, + ACTIONS(1447), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1480), 29, + ACTIONS(1449), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -105481,28 +106309,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87666] = 4, + [87800] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1455), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1462), 5, + ACTIONS(2386), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1457), 27, + ACTIONS(2388), 29, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105522,22 +106349,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87711] = 5, + [87843] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1462), 2, + ACTIONS(302), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1453), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1457), 14, + ACTIONS(300), 29, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -105548,43 +106383,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1455), 15, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_as, - anon_sym_in, - anon_sym_if, - anon_sym_else, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87758] = 3, + [87886] = 5, + ACTIONS(290), 1, + anon_sym_COLON_EQ, + ACTIONS(569), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2353), 5, - anon_sym_EQ, + ACTIONS(302), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2355), 29, + ACTIONS(300), 28, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105604,27 +106431,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87801] = 3, + [87933] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1491), 5, - anon_sym_EQ, + ACTIONS(2414), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1486), 29, + ACTIONS(2416), 29, anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105644,27 +106471,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87844] = 3, + [87976] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1502), 5, + ACTIONS(2370), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1497), 29, + ACTIONS(2372), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105684,30 +106511,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87887] = 3, + [88019] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 5, - anon_sym_as, + ACTIONS(1472), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1463), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 29, + ACTIONS(1467), 14, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -105718,23 +106537,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1465), 15, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87930] = 3, + [88066] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1472), 5, + ACTIONS(2314), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 29, + ACTIONS(2316), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -105764,27 +106593,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87973] = 3, + [88109] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2249), 5, - anon_sym_as, + ACTIONS(1420), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2251), 29, + ACTIONS(1415), 29, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105804,27 +106633,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88016] = 3, + [88152] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 5, + ACTIONS(1451), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 29, + ACTIONS(1453), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105844,21 +106673,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88059] = 4, - ACTIONS(1385), 1, - anon_sym_COLON_EQ, + [88195] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 5, - anon_sym_COLON, + ACTIONS(1504), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 28, + ACTIONS(1499), 29, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_DOT, anon_sym_COMMA, @@ -105866,6 +106693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105885,28 +106713,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88104] = 4, - ACTIONS(288), 1, - anon_sym_COLON_EQ, + [88238] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 5, - anon_sym_COLON, + ACTIONS(302), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 28, + ACTIONS(300), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105926,17 +106753,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88149] = 3, + [88281] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2271), 5, + ACTIONS(1447), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2273), 29, + ACTIONS(1449), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -105966,27 +106793,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88192] = 3, + [88324] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 5, - anon_sym_EQ, + ACTIONS(1465), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1472), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 29, + ACTIONS(1467), 27, anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -106006,17 +106834,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88235] = 3, + [88369] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2267), 5, + ACTIONS(1434), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2269), 29, + ACTIONS(1429), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -106046,17 +106874,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88278] = 3, + [88412] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1415), 5, + ACTIONS(2356), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 29, + ACTIONS(2358), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -106086,20 +106914,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88321] = 4, + [88455] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1396), 2, + ACTIONS(1394), 2, anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(1399), 5, + ACTIONS(1397), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 27, + ACTIONS(1392), 27, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -106127,27 +106955,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88366] = 3, + [88500] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2386), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2388), 29, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [88543] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2325), 5, - anon_sym_EQ, + ACTIONS(1431), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(1434), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2327), 29, + ACTIONS(1429), 27, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -106167,28 +107036,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88409] = 4, + [88588] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1469), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(1472), 5, - anon_sym_as, + ACTIONS(302), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 27, + ACTIONS(300), 29, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -106208,27 +107076,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88454] = 3, + [88631] = 4, + ACTIONS(1383), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1419), 5, - anon_sym_as, + ACTIONS(1397), 5, + anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 29, + ACTIONS(1392), 28, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -106248,19 +107117,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88497] = 4, - ACTIONS(288), 1, + [88676] = 4, + ACTIONS(290), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 5, + ACTIONS(302), 5, anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 28, + ACTIONS(300), 28, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -106289,30 +107158,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88542] = 3, + [88721] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2333), 5, - anon_sym_as, + ACTIONS(473), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(463), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2335), 29, + ACTIONS(566), 14, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOT, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -106323,33 +107184,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(465), 15, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88585] = 3, + [88768] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2253), 5, + ACTIONS(1397), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2255), 29, + ACTIONS(1392), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -106369,17 +107240,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88628] = 3, + [88811] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2257), 5, + ACTIONS(2390), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2259), 29, + ACTIONS(2392), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -106409,17 +107280,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88671] = 3, + [88854] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1478), 5, + ACTIONS(1407), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1480), 29, + ACTIONS(1409), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -106449,21 +107320,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88714] = 3, + [88897] = 4, + ACTIONS(290), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2261), 5, - anon_sym_EQ, + ACTIONS(302), 5, + anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2263), 29, + ACTIONS(300), 28, anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -106489,20 +107361,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88757] = 3, + [88942] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2357), 5, + ACTIONS(2314), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2359), 29, + ACTIONS(2316), 29, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_GT_GT, @@ -106529,20 +107401,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88800] = 3, + [88985] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2275), 5, + ACTIONS(1420), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2277), 29, + ACTIONS(1415), 29, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_GT_GT, @@ -106569,20 +107441,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88843] = 3, + [89028] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2261), 5, + ACTIONS(1504), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2263), 29, + ACTIONS(1499), 29, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_GT_GT, @@ -106609,17 +107481,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88886] = 3, + [89071] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2257), 5, + ACTIONS(302), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2259), 29, + ACTIONS(300), 29, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, @@ -106649,27 +107521,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88929] = 3, + [89114] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 5, - anon_sym_as, + ACTIONS(1407), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 29, + ACTIONS(1409), 29, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -106689,27 +107561,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88972] = 3, + [89157] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2329), 5, - anon_sym_EQ, + ACTIONS(1403), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2331), 29, + ACTIONS(1405), 29, anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -106729,17 +107601,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89015] = 3, + [89200] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2337), 5, + ACTIONS(1403), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2339), 29, + ACTIONS(1405), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -106769,20 +107641,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89058] = 3, + [89243] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2253), 5, + ACTIONS(2378), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2255), 29, + ACTIONS(2380), 29, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_GT_GT, @@ -106809,17 +107681,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89101] = 3, + [89286] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2341), 5, + ACTIONS(2374), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2343), 29, + ACTIONS(2376), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -106849,27 +107721,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89144] = 3, + [89329] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1474), 5, + ACTIONS(1436), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1476), 29, + ACTIONS(1438), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -106889,17 +107761,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89187] = 3, + [89372] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2333), 5, + ACTIONS(2410), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2335), 29, + ACTIONS(2412), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -106929,17 +107801,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89230] = 3, + [89415] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2253), 5, + ACTIONS(1472), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1463), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1467), 14, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1465), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_in, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [89462] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1434), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2255), 29, + ACTIONS(1429), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -106969,24 +107883,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89273] = 3, + [89505] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2337), 5, - anon_sym_EQ, + ACTIONS(1465), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1472), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2339), 29, + ACTIONS(1467), 27, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, @@ -107009,27 +107924,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89316] = 3, + [89550] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2341), 5, - anon_sym_EQ, + ACTIONS(2406), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2343), 29, + ACTIONS(2408), 29, anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -107049,22 +107964,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89359] = 5, + [89593] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1462), 2, + ACTIONS(302), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1453), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1457), 14, + ACTIONS(300), 29, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOT, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -107075,36 +107998,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1455), 15, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89406] = 3, + [89636] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2257), 5, + ACTIONS(2314), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2259), 29, + ACTIONS(2316), 29, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_GT_GT, @@ -107131,20 +108044,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89449] = 3, + [89679] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2345), 5, + ACTIONS(1420), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2347), 29, + ACTIONS(1415), 29, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_GT_GT, @@ -107171,17 +108084,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89492] = 3, + [89722] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2275), 5, + ACTIONS(2214), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2277), 29, + ACTIONS(2216), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -107211,17 +108124,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89535] = 3, + [89765] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2283), 5, + ACTIONS(1397), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2285), 29, + ACTIONS(1392), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -107251,27 +108164,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89578] = 3, + [89808] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2275), 5, - anon_sym_EQ, + ACTIONS(2370), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2277), 29, + ACTIONS(2372), 29, anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -107291,15 +108204,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89621] = 4, + [89851] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(301), 3, + ACTIONS(1392), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, - ACTIONS(303), 13, + ACTIONS(1397), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -107313,7 +108226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(290), 18, + ACTIONS(1385), 18, sym__newline, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -107332,27 +108245,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [89666] = 3, + [89896] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2357), 5, - anon_sym_as, + ACTIONS(1429), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + ACTIONS(1434), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1385), 18, + sym__newline, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [89941] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2414), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2359), 29, + ACTIONS(2416), 29, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -107372,21 +108326,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89709] = 4, + [89984] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(301), 3, + ACTIONS(2398), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2400), 29, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOT, - ACTIONS(303), 13, - anon_sym_STAR, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, @@ -107394,36 +108360,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(290), 18, - sym__newline, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [89754] = 3, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [90027] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2357), 5, + ACTIONS(2402), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2359), 29, + ACTIONS(2404), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -107453,27 +108406,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89797] = 3, + [90070] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1423), 5, - anon_sym_as, + ACTIONS(2398), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1425), 29, + ACTIONS(2400), 29, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -107493,20 +108446,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89840] = 3, + [90113] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1423), 5, + ACTIONS(1504), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1425), 29, + ACTIONS(1499), 29, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_GT_GT, @@ -107533,21 +108486,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89883] = 3, + [90156] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2103), 4, + ACTIONS(2214), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2105), 30, - sym_string_start, + ACTIONS(2216), 29, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -107573,17 +108526,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89926] = 3, + [90199] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2349), 5, + ACTIONS(2406), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2351), 29, + ACTIONS(2408), 29, anon_sym_LBRACK, anon_sym_COLON, anon_sym_LPAREN, @@ -107613,22 +108566,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89969] = 3, + [90242] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1474), 5, + ACTIONS(1501), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(1504), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1476), 29, + ACTIONS(1499), 27, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOT, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_in, anon_sym_if, @@ -107653,27 +108607,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90012] = 3, + [90287] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2345), 5, - anon_sym_EQ, + ACTIONS(1417), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(1420), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2347), 29, + ACTIONS(1415), 27, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -107693,27 +108648,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90055] = 3, + [90332] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1474), 5, - anon_sym_EQ, + ACTIONS(2402), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1476), 29, + ACTIONS(2404), 29, anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -107733,31 +108688,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90098] = 4, + [90375] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1499), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(1502), 5, - anon_sym_as, + ACTIONS(473), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(463), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1497), 27, + ACTIONS(566), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -107768,76 +108714,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [90143] = 4, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(1488), 2, - anon_sym_RBRACK, + ACTIONS(465), 15, + anon_sym_COLON, anon_sym_COMMA, - ACTIONS(1491), 5, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1486), 27, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90188] = 5, - ACTIONS(1385), 1, - anon_sym_COLON_EQ, - ACTIONS(2247), 1, - anon_sym_EQ, + [90422] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 4, + ACTIONS(1397), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 28, + ACTIONS(1392), 29, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -107857,21 +108770,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90235] = 5, - ACTIONS(288), 1, - anon_sym_COLON_EQ, - ACTIONS(551), 1, - anon_sym_EQ, + [90465] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 4, + ACTIONS(2382), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 28, + ACTIONS(2384), 29, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DOT, @@ -107899,25 +108810,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90282] = 5, + [90508] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(471), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(461), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(524), 14, + ACTIONS(1415), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, + ACTIONS(1420), 13, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, @@ -107925,100 +108832,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(463), 15, - anon_sym_RBRACK, + ACTIONS(1413), 18, + sym__newline, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_COLON, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [90329] = 22, - ACTIONS(2389), 1, - ts_builtin_sym_end, - ACTIONS(2391), 1, - anon_sym_unset, - ACTIONS(2394), 1, - anon_sym_inherit, - ACTIONS(2397), 1, - anon_sym_include, - ACTIONS(2400), 1, - anon_sym_require, - ACTIONS(2403), 1, - anon_sym_export, - ACTIONS(2406), 1, - anon_sym_OVERRIDES, - ACTIONS(2409), 1, - anon_sym_EXPORT_FUNCTIONS, - ACTIONS(2412), 1, - anon_sym_addtask, - ACTIONS(2415), 1, - anon_sym_deltask, - ACTIONS(2418), 1, - anon_sym_addhandler, - ACTIONS(2421), 1, - anon_sym_fakeroot, - ACTIONS(2424), 1, - anon_sym_python, - ACTIONS(2427), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2430), 1, - anon_sym_def, - ACTIONS(2433), 1, - sym_identifier, - ACTIONS(2436), 1, - aux_sym__dotted_identifier_token1, - STATE(1315), 1, - aux_sym_recipe_repeat1, - STATE(1521), 1, - sym_concatenation, - STATE(2296), 1, - sym_variable_expansion, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - STATE(2305), 14, - sym_variable_assignment, - sym_unset_statement, - sym_inherit_directive, - sym_include_directive, - sym_require_directive, - sym_export_statement, - sym_overrides_statement, - sym_export_functions_statement, - sym_addtask_statement, - sym_deltask_statement, - sym_addhandler_statement, - sym_anonymous_python_function, - sym_function_definition, - sym_python_function_definition, - [90410] = 5, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [90553] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(471), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(461), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(524), 14, + ACTIONS(1499), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, + ACTIONS(1504), 13, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, @@ -108026,36 +108873,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(463), 15, - anon_sym_RBRACK, + ACTIONS(1497), 18, + sym__newline, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_COLON, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_in, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [90457] = 3, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [90598] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2267), 5, + ACTIONS(1434), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2269), 29, + ACTIONS(1429), 29, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_GT_GT, @@ -108082,27 +108932,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90500] = 3, + [90641] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2271), 5, - anon_sym_as, + ACTIONS(1451), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2273), 29, + ACTIONS(1453), 29, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -108122,17 +108972,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90543] = 3, + [90684] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2249), 5, + ACTIONS(302), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2251), 29, + ACTIONS(300), 29, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, @@ -108162,63 +109012,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90586] = 5, - ACTIONS(288), 1, - anon_sym_COLON_EQ, - ACTIONS(551), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(303), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(301), 28, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [90633] = 3, + [90727] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2114), 4, + ACTIONS(2394), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2116), 30, - sym_string_start, + ACTIONS(2396), 29, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -108244,27 +109052,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90676] = 3, + [90770] = 4, + ACTIONS(290), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2349), 5, - anon_sym_as, + ACTIONS(473), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2351), 29, + ACTIONS(566), 28, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -108284,27 +109092,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90719] = 3, + [90814] = 8, + ACTIONS(2284), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(2432), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1419), 5, - anon_sym_as, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2101), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 29, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(2103), 23, + anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -108313,7 +109126,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -108324,76 +109136,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90762] = 5, + [90866] = 11, + ACTIONS(2284), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(2432), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(461), 2, + ACTIONS(2052), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(471), 2, + ACTIONS(2420), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(524), 14, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_GT_GT, + ACTIONS(2428), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2430), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(463), 15, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(2054), 18, anon_sym_as, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90808] = 11, - ACTIONS(2214), 1, + [90924] = 10, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(2216), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(2218), 1, + ACTIONS(2288), 1, anon_sym_DOT, - ACTIONS(2375), 1, + ACTIONS(2432), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2050), 2, + ACTIONS(2052), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2363), 2, + ACTIONS(2420), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2371), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1226), 2, + STATE(1249), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2373), 3, + ACTIONS(2430), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2052), 18, + ACTIONS(2054), 20, anon_sym_as, anon_sym_GT_GT, anon_sym_in, @@ -108402,6 +109217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -108412,26 +109229,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90866] = 3, + [90980] = 8, + ACTIONS(2284), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(2432), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1474), 4, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2052), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1476), 29, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(2054), 23, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -108440,7 +109263,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -108451,21 +109273,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90908] = 5, + [91032] = 4, + ACTIONS(1383), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1453), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1462), 2, + ACTIONS(1472), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1457), 14, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1467), 28, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -108476,54 +109307,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1455), 15, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_as, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90954] = 12, - ACTIONS(2214), 1, + [91076] = 13, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(2216), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(2218), 1, + ACTIONS(2288), 1, anon_sym_DOT, - ACTIONS(2375), 1, + ACTIONS(2432), 1, anon_sym_STAR_STAR, + ACTIONS(2438), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2050), 2, + ACTIONS(2052), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2363), 2, + ACTIONS(2420), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2365), 2, + ACTIONS(2422), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2371), 2, + ACTIONS(2428), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1226), 2, + STATE(1249), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2373), 3, + ACTIONS(2430), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2052), 16, + ACTIONS(2054), 15, anon_sym_as, anon_sym_in, anon_sym_if, @@ -108533,47 +109356,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91014] = 13, - ACTIONS(2214), 1, + [91138] = 14, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(2216), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(2218), 1, + ACTIONS(2288), 1, anon_sym_DOT, - ACTIONS(2375), 1, + ACTIONS(2432), 1, anon_sym_STAR_STAR, - ACTIONS(2381), 1, + ACTIONS(2436), 1, + anon_sym_AMP, + ACTIONS(2438), 1, anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2050), 2, + ACTIONS(2052), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2363), 2, + ACTIONS(2420), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2365), 2, + ACTIONS(2422), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2371), 2, + ACTIONS(2428), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1226), 2, + STATE(1249), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2373), 3, + ACTIONS(2430), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2052), 15, + ACTIONS(2054), 14, anon_sym_as, anon_sym_in, anon_sym_if, @@ -108582,39 +109406,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91076] = 8, - ACTIONS(2214), 1, - anon_sym_LBRACK, - ACTIONS(2216), 1, - anon_sym_LPAREN, - ACTIONS(2218), 1, - anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, + [91202] = 4, + ACTIONS(290), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1226), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2064), 4, + ACTIONS(473), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2062), 23, + ACTIONS(566), 28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -108623,6 +109441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -108633,23 +109452,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91128] = 6, + [91246] = 6, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1453), 2, + ACTIONS(1463), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1462), 2, + ACTIONS(1472), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1460), 5, + ACTIONS(1470), 5, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(1455), 12, + ACTIONS(1465), 12, anon_sym_as, anon_sym_in, anon_sym_if, @@ -108662,7 +109481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - ACTIONS(1457), 12, + ACTIONS(1467), 12, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_GT_GT, @@ -108675,21 +109494,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [91176] = 4, - ACTIONS(1385), 1, - anon_sym_COLON_EQ, + [91294] = 15, + ACTIONS(2284), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(2432), 1, + anon_sym_STAR_STAR, + ACTIONS(2434), 1, + anon_sym_PIPE, + ACTIONS(2436), 1, + anon_sym_AMP, + ACTIONS(2438), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1462), 4, + ACTIONS(2093), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2420), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2422), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2428), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2430), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2095), 13, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [91360] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2278), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1457), 28, + ACTIONS(2280), 29, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -108715,60 +109584,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91220] = 3, + [91402] = 12, + ACTIONS(2284), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(2432), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2052), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 29, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2420), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2422), 2, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_LT_LT, + ACTIONS(2428), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2430), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, + ACTIONS(2054), 16, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91262] = 4, - ACTIONS(288), 1, - anon_sym_COLON_EQ, + [91462] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(471), 4, + ACTIONS(302), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(524), 28, + ACTIONS(300), 29, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -108794,21 +109671,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91306] = 4, - ACTIONS(288), 1, - anon_sym_COLON_EQ, + [91504] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(471), 4, + ACTIONS(2314), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(524), 28, + ACTIONS(2316), 29, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -108834,72 +109710,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91350] = 15, - ACTIONS(2214), 1, - anon_sym_LBRACK, - ACTIONS(2216), 1, - anon_sym_LPAREN, - ACTIONS(2218), 1, - anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2377), 1, - anon_sym_PIPE, - ACTIONS(2379), 1, - anon_sym_AMP, - ACTIONS(2381), 1, - anon_sym_CARET, + [91546] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2060), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2363), 2, + ACTIONS(1420), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2365), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2371), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1226), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2373), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2058), 13, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1415), 29, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91416] = 4, - ACTIONS(288), 1, - anon_sym_COLON_EQ, + [91588] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(471), 4, + ACTIONS(1504), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(524), 28, + ACTIONS(1499), 29, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -108925,16 +109788,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91460] = 3, + [91630] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2353), 4, + ACTIONS(2374), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2355), 29, + ACTIONS(2376), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, @@ -108964,20 +109827,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91502] = 3, + [91672] = 4, + ACTIONS(290), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1491), 4, + ACTIONS(473), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1486), 29, + ACTIONS(566), 28, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -109003,21 +109867,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91544] = 4, - ACTIONS(1385), 1, - anon_sym_COLON_EQ, + [91716] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1462), 4, + ACTIONS(2378), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1457), 28, + ACTIONS(2380), 29, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -109043,32 +109906,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91588] = 8, - ACTIONS(2214), 1, - anon_sym_LBRACK, - ACTIONS(2216), 1, - anon_sym_LPAREN, - ACTIONS(2218), 1, - anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, + [91758] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1226), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2068), 4, + ACTIONS(2386), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2066), 23, + ACTIONS(2388), 29, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -109077,6 +109934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -109087,16 +109945,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91640] = 3, + [91800] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2253), 4, + ACTIONS(2356), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2255), 29, + ACTIONS(2358), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, @@ -109126,16 +109984,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91682] = 3, + [91842] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1502), 4, + ACTIONS(2360), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1497), 29, + ACTIONS(2362), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, @@ -109165,16 +110023,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91724] = 3, + [91884] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2257), 4, + ACTIONS(2364), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2259), 29, + ACTIONS(2366), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, @@ -109204,21 +110062,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91766] = 4, - ACTIONS(288), 1, - anon_sym_COLON_EQ, + [91926] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(471), 4, + ACTIONS(1434), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(524), 28, + ACTIONS(1429), 29, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -109244,66 +110101,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91810] = 14, - ACTIONS(2214), 1, - anon_sym_LBRACK, - ACTIONS(2216), 1, - anon_sym_LPAREN, - ACTIONS(2218), 1, - anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_AMP, - ACTIONS(2381), 1, - anon_sym_CARET, + [91968] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2050), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2363), 2, + ACTIONS(2390), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2365), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2371), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1226), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2373), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 14, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2392), 29, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91874] = 3, + [92010] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1472), 4, + ACTIONS(302), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 29, + ACTIONS(300), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, @@ -109333,16 +110179,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91916] = 3, + [92052] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 4, + ACTIONS(1397), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(301), 29, + ACTIONS(1392), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, @@ -109372,16 +110218,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91958] = 3, + [92094] = 15, + ACTIONS(2284), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(2432), 1, + anon_sym_STAR_STAR, + ACTIONS(2434), 1, + anon_sym_PIPE, + ACTIONS(2436), 1, + anon_sym_AMP, + ACTIONS(2438), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2097), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2420), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2422), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2428), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2430), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2099), 13, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [92160] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2267), 4, + ACTIONS(2348), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2269), 29, + ACTIONS(2350), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, @@ -109411,19 +110308,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92000] = 3, + [92202] = 4, + ACTIONS(1383), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2261), 4, + ACTIONS(1472), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2263), 29, + ACTIONS(1467), 28, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_DOT, anon_sym_COMMA, @@ -109450,20 +110348,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92042] = 3, + [92246] = 4, + ACTIONS(290), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2275), 4, + ACTIONS(473), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2277), 29, + ACTIONS(566), 28, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -109489,16 +110388,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92084] = 3, + [92290] = 5, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1463), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1472), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1467), 14, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1465), 15, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [92336] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1478), 4, + ACTIONS(1447), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1480), 29, + ACTIONS(1449), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, @@ -109528,16 +110468,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92126] = 3, + [92378] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2357), 4, + ACTIONS(2414), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2359), 29, + ACTIONS(2416), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, @@ -109567,16 +110507,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92168] = 3, + [92420] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2271), 4, + ACTIONS(2410), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2273), 29, + ACTIONS(2412), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, @@ -109606,16 +110546,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92210] = 3, + [92462] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2349), 4, + ACTIONS(1407), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2351), 29, + ACTIONS(1409), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, @@ -109645,16 +110585,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92252] = 3, + [92504] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2279), 4, + ACTIONS(2370), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2281), 29, + ACTIONS(2372), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, @@ -109684,16 +110624,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92294] = 3, + [92546] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2283), 4, + ACTIONS(2352), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2285), 29, + ACTIONS(2354), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, @@ -109723,44 +110663,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92336] = 15, - ACTIONS(2214), 1, + [92588] = 15, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(2216), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(2218), 1, + ACTIONS(2288), 1, anon_sym_DOT, - ACTIONS(2375), 1, + ACTIONS(2432), 1, anon_sym_STAR_STAR, - ACTIONS(2377), 1, + ACTIONS(2434), 1, anon_sym_PIPE, - ACTIONS(2379), 1, + ACTIONS(2436), 1, anon_sym_AMP, - ACTIONS(2381), 1, + ACTIONS(2438), 1, anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2120), 2, + ACTIONS(2059), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2363), 2, + ACTIONS(2420), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2365), 2, + ACTIONS(2422), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2371), 2, + ACTIONS(2428), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1226), 2, + STATE(1249), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2373), 3, + ACTIONS(2430), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2118), 13, + ACTIONS(2061), 13, anon_sym_as, anon_sym_in, anon_sym_if, @@ -109774,32 +110714,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92402] = 8, - ACTIONS(2214), 1, - anon_sym_LBRACK, - ACTIONS(2216), 1, - anon_sym_LPAREN, - ACTIONS(2218), 1, - anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, + [92654] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1226), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2050), 4, + ACTIONS(1403), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 23, + ACTIONS(1405), 29, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -109808,6 +110742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -109818,20 +110753,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92454] = 4, - ACTIONS(1385), 1, - anon_sym_COLON_EQ, + [92696] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1462), 4, + ACTIONS(2402), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1457), 28, + ACTIONS(2404), 29, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_DOT, anon_sym_COMMA, @@ -109858,20 +110792,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92498] = 4, - ACTIONS(288), 1, - anon_sym_COLON_EQ, + [92738] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(471), 4, + ACTIONS(1407), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(524), 28, + ACTIONS(1409), 29, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_DOT, anon_sym_COMMA, @@ -109898,16 +110831,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92542] = 3, + [92780] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1419), 4, + ACTIONS(1403), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 29, + ACTIONS(1405), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, @@ -109937,18 +110870,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92584] = 4, - ACTIONS(288), 1, + [92822] = 4, + ACTIONS(290), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(471), 4, + ACTIONS(473), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(524), 28, + ACTIONS(566), 28, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -109977,113 +110910,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92628] = 15, - ACTIONS(2214), 1, - anon_sym_LBRACK, - ACTIONS(2216), 1, - anon_sym_LPAREN, - ACTIONS(2218), 1, - anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(2377), 1, - anon_sym_PIPE, - ACTIONS(2379), 1, - anon_sym_AMP, - ACTIONS(2381), 1, - anon_sym_CARET, + [92866] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2112), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2363), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2365), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2371), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1226), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2373), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2110), 13, - anon_sym_as, - anon_sym_in, - anon_sym_if, - anon_sym_else, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [92694] = 10, - ACTIONS(2214), 1, - anon_sym_LBRACK, - ACTIONS(2216), 1, - anon_sym_LPAREN, - ACTIONS(2218), 1, - anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2050), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2363), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1226), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2373), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 20, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_else, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [92750] = 3, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2287), 4, + ACTIONS(1436), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2289), 29, + ACTIONS(1438), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, @@ -110113,32 +110949,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92792] = 8, - ACTIONS(2214), 1, - anon_sym_LBRACK, - ACTIONS(2216), 1, - anon_sym_LPAREN, - ACTIONS(2218), 1, - anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR_STAR, + [92908] = 4, + ACTIONS(290), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1226), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2050), 4, + ACTIONS(473), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 23, + ACTIONS(566), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, - anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -110147,6 +110978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -110157,16 +110989,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92844] = 3, + [92952] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1415), 4, + ACTIONS(2398), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 29, + ACTIONS(2400), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, @@ -110196,26 +111028,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92886] = 3, + [92994] = 8, + ACTIONS(2284), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(2432), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1423), 4, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2105), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1425), 29, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(2107), 23, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -110224,7 +111062,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -110235,16 +111072,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92928] = 3, + [93046] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1423), 4, + ACTIONS(2214), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1425), 29, + ACTIONS(2216), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, @@ -110274,16 +111111,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92970] = 3, + [93088] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2321), 4, + ACTIONS(2406), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2323), 29, + ACTIONS(2408), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, @@ -110313,26 +111150,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93012] = 3, + [93130] = 8, + ACTIONS(2284), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(2432), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2345), 4, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2052), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2347), 29, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(2054), 23, anon_sym_as, anon_sym_GT_GT, anon_sym_in, anon_sym_if, + anon_sym_else, anon_sym_not, anon_sym_and, anon_sym_or, @@ -110341,7 +111184,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -110352,20 +111194,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93054] = 3, + [93182] = 4, + ACTIONS(1383), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1419), 4, + ACTIONS(1472), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 29, + ACTIONS(1467), 28, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -110391,24 +111234,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93096] = 7, - ACTIONS(1465), 1, + [93226] = 7, + ACTIONS(1475), 1, anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1453), 2, + ACTIONS(1463), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1462), 2, + ACTIONS(1472), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1460), 4, + ACTIONS(1470), 4, anon_sym_COLON, anon_sym_DOT, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(1455), 12, + ACTIONS(1465), 12, anon_sym_as, anon_sym_in, anon_sym_if, @@ -110421,7 +111264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - ACTIONS(1457), 12, + ACTIONS(1467), 12, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110434,29 +111277,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [93146] = 3, + [93276] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2325), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(463), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2327), 29, + ACTIONS(473), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(566), 14, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -110467,61 +111302,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [93188] = 3, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2341), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2343), 29, - anon_sym_LBRACK, + ACTIONS(465), 15, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_in, anon_sym_if, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93230] = 3, + [93322] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2337), 4, + ACTIONS(1451), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2339), 29, + ACTIONS(1453), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, @@ -110551,29 +111357,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93272] = 3, + [93364] = 5, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2329), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(463), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2331), 29, + ACTIONS(473), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(566), 14, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, @@ -110584,22 +111382,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(465), 15, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_as, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93314] = 3, + [93410] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 4, + ACTIONS(2394), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 29, + ACTIONS(2396), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, @@ -110629,16 +111437,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93356] = 3, + [93452] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2249), 4, + ACTIONS(2382), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2251), 29, + ACTIONS(2384), 29, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, @@ -110668,24 +111476,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93398] = 5, + [93494] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(461), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(471), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(524), 14, + ACTIONS(1499), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, + ACTIONS(1504), 13, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, @@ -110693,71 +111498,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(463), 15, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_as, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [93444] = 3, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2333), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2335), 29, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1497), 16, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [93486] = 3, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [93537] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1462), 4, + ACTIONS(1472), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1457), 28, + ACTIONS(1467), 28, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -110786,7 +111553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93527] = 4, + [93578] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, @@ -110808,7 +111575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1387), 16, + ACTIONS(1465), 16, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_COLON, @@ -110825,11 +111592,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [93570] = 3, + [93621] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1419), 13, + ACTIONS(1392), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + ACTIONS(1397), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -110843,13 +111614,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1421), 19, + ACTIONS(1385), 16, anon_sym_EQ, anon_sym_PLUS_EQ, - anon_sym_LBRACK, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_COMMA, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110863,15 +111631,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [93611] = 4, + [93664] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(524), 3, + ACTIONS(1429), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, - ACTIONS(471), 13, + ACTIONS(1434), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -110885,7 +111653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(463), 16, + ACTIONS(1385), 16, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_COLON, @@ -110902,11 +111670,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [93654] = 3, + [93707] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1474), 13, + ACTIONS(1407), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -110920,7 +111688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1476), 19, + ACTIONS(1409), 19, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_LBRACK, @@ -110940,31 +111708,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [93695] = 3, + [93748] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1462), 4, + ACTIONS(1403), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1457), 28, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, @@ -110972,37 +111726,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [93736] = 3, + ACTIONS(1405), 19, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [93789] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1462), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1457), 28, + ACTIONS(566), 3, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RBRACE, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(473), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_in, - anon_sym_if, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, @@ -111010,21 +111768,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [93777] = 4, + ACTIONS(465), 16, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [93832] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1457), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOT, - ACTIONS(1462), 13, + ACTIONS(1403), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -111038,10 +111803,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1455), 16, + ACTIONS(1405), 19, anon_sym_EQ, anon_sym_PLUS_EQ, + anon_sym_LBRACK, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_COMMA, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111055,11 +111823,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [93820] = 3, + [93873] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1419), 13, + ACTIONS(1407), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -111073,7 +111841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1421), 19, + ACTIONS(1409), 19, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_LBRACK, @@ -111093,15 +111861,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [93861] = 4, + [93914] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(524), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOT, - ACTIONS(471), 13, + ACTIONS(1451), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -111115,10 +111879,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(463), 16, + ACTIONS(1453), 19, anon_sym_EQ, anon_sym_PLUS_EQ, + anon_sym_LBRACK, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_COMMA, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111132,17 +111899,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [93904] = 3, + [93955] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1415), 13, + ACTIONS(1472), 4, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1467), 28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, @@ -111150,35 +111931,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1417), 19, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [93945] = 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [93996] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1394), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOT, - ACTIONS(1399), 13, + ACTIONS(1447), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -111192,10 +111955,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1387), 16, + ACTIONS(1449), 19, anon_sym_EQ, anon_sym_PLUS_EQ, + anon_sym_LBRACK, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_COMMA, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111209,15 +111975,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [93988] = 4, + [94037] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1497), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOT, - ACTIONS(1502), 13, + ACTIONS(1436), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -111231,10 +111993,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1495), 16, + ACTIONS(1438), 19, anon_sym_EQ, anon_sym_PLUS_EQ, + anon_sym_LBRACK, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_COMMA, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111248,21 +112013,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [94031] = 4, + [94078] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1486), 3, + ACTIONS(1472), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1467), 28, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, - ACTIONS(1491), 13, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_in, + anon_sym_if, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_STAR_STAR, @@ -111270,32 +112045,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1484), 16, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [94074] = 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [94119] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(301), 3, + ACTIONS(1415), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, - ACTIONS(303), 13, + ACTIONS(1420), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -111309,7 +112073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(290), 16, + ACTIONS(1413), 16, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_COLON, @@ -111326,15 +112090,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [94117] = 4, + [94162] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(301), 3, + ACTIONS(300), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, - ACTIONS(303), 13, + ACTIONS(302), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -111348,7 +112112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(290), 16, + ACTIONS(292), 16, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_COLON, @@ -111365,49 +112129,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [94160] = 3, + [94205] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1423), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1425), 19, - anon_sym_EQ, - anon_sym_PLUS_EQ, + ACTIONS(300), 3, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [94201] = 3, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(1478), 13, + ACTIONS(302), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -111421,13 +112151,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1480), 19, + ACTIONS(292), 16, anon_sym_EQ, anon_sym_PLUS_EQ, - anon_sym_LBRACK, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_COMMA, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111441,11 +112168,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [94242] = 3, + [94248] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1423), 13, + ACTIONS(566), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + ACTIONS(473), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PLUS, @@ -111459,13 +112190,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1425), 19, + ACTIONS(465), 16, anon_sym_EQ, anon_sym_PLUS_EQ, - anon_sym_LBRACK, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_COMMA, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111479,29 +112207,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [94283] = 8, - ACTIONS(2439), 1, - anon_sym_EQ, - ACTIONS(2446), 1, + [94291] = 8, + ACTIONS(1968), 1, anon_sym_not, - ACTIONS(2452), 1, + ACTIONS(1984), 1, anon_sym_is, - STATE(1402), 1, + ACTIONS(2444), 1, + anon_sym_EQ, + STATE(1403), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2449), 2, + ACTIONS(1982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2443), 6, + ACTIONS(1966), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2441), 10, + ACTIONS(2446), 10, sym__newline, anon_sym_COLON, anon_sym_SEMI, @@ -111512,29 +112240,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PIPE, - [94324] = 8, - ACTIONS(2002), 1, + [94332] = 8, + ACTIONS(2448), 1, + anon_sym_EQ, + ACTIONS(2455), 1, anon_sym_not, - ACTIONS(2018), 1, + ACTIONS(2461), 1, anon_sym_is, - ACTIONS(2455), 1, - anon_sym_EQ, - STATE(1402), 1, + STATE(1403), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2016), 2, + ACTIONS(2458), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2000), 6, + ACTIONS(2452), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2457), 10, + ACTIONS(2450), 10, sym__newline, anon_sym_COLON, anon_sym_SEMI, @@ -111545,20 +112273,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PIPE, - [94365] = 4, + [94373] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 2, + ACTIONS(302), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(290), 5, + ACTIONS(292), 5, anon_sym_EQ, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, sym_type_conversion, - ACTIONS(301), 14, + ACTIONS(300), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -111573,52 +112301,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [94397] = 8, - ACTIONS(2188), 1, - anon_sym_not, - ACTIONS(2204), 1, - anon_sym_is, - ACTIONS(2455), 1, - anon_sym_EQ, - STATE(1409), 1, - aux_sym_comparison_operator_repeat1, + [94405] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2202), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2186), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2457), 9, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - [94437] = 4, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(1472), 2, + ACTIONS(1434), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1387), 5, + ACTIONS(1385), 5, anon_sym_EQ, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, sym_type_conversion, - ACTIONS(1467), 14, + ACTIONS(1429), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -111633,20 +112329,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [94469] = 4, + [94437] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 2, + ACTIONS(302), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1387), 5, + ACTIONS(292), 5, anon_sym_EQ, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, sym_type_conversion, - ACTIONS(1394), 14, + ACTIONS(300), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -111661,20 +112357,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [94501] = 4, + [94469] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 2, + ACTIONS(1397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(290), 5, + ACTIONS(1385), 5, anon_sym_EQ, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, sym_type_conversion, - ACTIONS(301), 14, + ACTIONS(1392), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -111689,52 +112385,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [94533] = 8, - ACTIONS(2439), 1, - anon_sym_EQ, - ACTIONS(2462), 1, - anon_sym_not, - ACTIONS(2468), 1, - anon_sym_is, - STATE(1409), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2465), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2459), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2441), 9, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - [94573] = 4, + [94501] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1491), 2, + ACTIONS(1504), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1484), 5, + ACTIONS(1497), 5, anon_sym_EQ, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, sym_type_conversion, - ACTIONS(1486), 14, + ACTIONS(1499), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -111749,20 +112413,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [94605] = 4, + [94533] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1502), 2, + ACTIONS(1420), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1495), 5, + ACTIONS(1413), 5, anon_sym_EQ, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, sym_type_conversion, - ACTIONS(1497), 14, + ACTIONS(1415), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -111777,28 +112441,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [94637] = 7, - ACTIONS(2474), 1, + [94565] = 8, + ACTIONS(2448), 1, + anon_sym_EQ, + ACTIONS(2467), 1, anon_sym_not, - ACTIONS(2480), 1, + ACTIONS(2473), 1, anon_sym_is, - STATE(1412), 1, + STATE(1410), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2477), 2, + ACTIONS(2470), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 6, + ACTIONS(2464), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2441), 9, - anon_sym_RBRACK, + ACTIONS(2450), 9, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + [94605] = 8, + ACTIONS(2125), 1, + anon_sym_not, + ACTIONS(2141), 1, + anon_sym_is, + ACTIONS(2444), 1, + anon_sym_EQ, + STATE(1410), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2139), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2123), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2446), 9, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + [94645] = 8, + ACTIONS(2296), 1, + anon_sym_not, + ACTIONS(2312), 1, + anon_sym_is, + ACTIONS(2444), 1, + anon_sym_EQ, + STATE(1413), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2310), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2294), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2446), 8, anon_sym_COLON, anon_sym_DOT, anon_sym_COMMA, @@ -111807,29 +112536,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PIPE, - [94674] = 8, - ACTIONS(2439), 1, + [94684] = 8, + ACTIONS(2448), 1, anon_sym_EQ, - ACTIONS(2486), 1, + ACTIONS(2479), 1, anon_sym_not, - ACTIONS(2492), 1, + ACTIONS(2485), 1, anon_sym_is, STATE(1413), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2489), 2, + ACTIONS(2482), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2483), 6, + ACTIONS(2476), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2441), 8, + ACTIONS(2450), 8, anon_sym_COLON, anon_sym_DOT, anon_sym_COMMA, @@ -111838,29 +112567,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PIPE, - [94713] = 8, - ACTIONS(2226), 1, + [94723] = 7, + ACTIONS(2491), 1, anon_sym_not, - ACTIONS(2242), 1, + ACTIONS(2497), 1, anon_sym_is, - ACTIONS(2455), 1, - anon_sym_EQ, - STATE(1413), 1, + STATE(1414), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2240), 2, + ACTIONS(2494), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2224), 6, + ACTIONS(2488), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2457), 8, + ACTIONS(2450), 9, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT, anon_sym_COMMA, @@ -111869,29 +112597,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PIPE, - [94752] = 8, - ACTIONS(2032), 1, + [94760] = 8, + ACTIONS(1998), 1, anon_sym_not, - ACTIONS(2048), 1, + ACTIONS(2014), 1, anon_sym_is, - ACTIONS(2455), 1, + ACTIONS(2444), 1, anon_sym_EQ, - STATE(1416), 1, + STATE(1419), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2046), 2, + ACTIONS(2012), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2030), 6, + ACTIONS(1996), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2457), 8, + ACTIONS(2446), 8, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, @@ -111900,58 +112628,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [94791] = 8, - ACTIONS(2439), 1, - anon_sym_EQ, - ACTIONS(2498), 1, + [94799] = 8, + ACTIONS(2448), 1, + anon_sym_as, + ACTIONS(2503), 1, anon_sym_not, - ACTIONS(2504), 1, + ACTIONS(2509), 1, anon_sym_is, STATE(1416), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2501), 2, + ACTIONS(2506), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2495), 6, + ACTIONS(2500), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2441), 8, + ACTIONS(2450), 8, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_as, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_and, anon_sym_or, - sym_type_conversion, - [94830] = 7, - ACTIONS(2303), 1, + [94838] = 7, + ACTIONS(2330), 1, anon_sym_not, - ACTIONS(2319), 1, + ACTIONS(2346), 1, anon_sym_is, - STATE(1412), 1, + STATE(1414), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2317), 2, + ACTIONS(2344), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2301), 6, + ACTIONS(2328), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2457), 9, + ACTIONS(2446), 9, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT, @@ -111961,29 +112689,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PIPE, - [94867] = 8, - ACTIONS(2439), 1, - anon_sym_as, - ACTIONS(2510), 1, + [94875] = 8, + ACTIONS(2031), 1, anon_sym_not, - ACTIONS(2516), 1, + ACTIONS(2047), 1, anon_sym_is, - STATE(1418), 1, + ACTIONS(2444), 1, + anon_sym_as, + STATE(1416), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2513), 2, + ACTIONS(2045), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 6, + ACTIONS(2029), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2441), 8, + ACTIONS(2446), 8, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, @@ -111992,49 +112720,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [94906] = 8, - ACTIONS(1972), 1, + [94914] = 8, + ACTIONS(2448), 1, + anon_sym_EQ, + ACTIONS(2515), 1, anon_sym_not, - ACTIONS(1988), 1, + ACTIONS(2521), 1, anon_sym_is, - ACTIONS(2455), 1, - anon_sym_as, - STATE(1418), 1, + STATE(1419), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1986), 2, + ACTIONS(2518), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1970), 6, + ACTIONS(2512), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2457), 8, + ACTIONS(2450), 8, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_and, anon_sym_or, - [94945] = 4, + sym_type_conversion, + [94953] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 2, + ACTIONS(302), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(463), 3, + ACTIONS(465), 3, anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(301), 14, + ACTIONS(300), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -112049,47 +112777,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [94975] = 7, - ACTIONS(2522), 1, - anon_sym_not, - ACTIONS(2528), 1, - anon_sym_is, - STATE(1421), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2525), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2519), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2441), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [95011] = 4, + [94983] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 2, + ACTIONS(302), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1245), 3, + ACTIONS(465), 3, anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(301), 14, + ACTIONS(300), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -112104,29 +112803,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [95041] = 8, - ACTIONS(2134), 1, + [95013] = 8, + ACTIONS(2185), 1, anon_sym_not, - ACTIONS(2150), 1, + ACTIONS(2201), 1, anon_sym_is, - ACTIONS(2455), 1, + ACTIONS(2444), 1, anon_sym_as, - STATE(1433), 1, + STATE(1429), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2148), 2, + ACTIONS(2199), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2132), 6, + ACTIONS(2183), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2457), 7, + ACTIONS(2446), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -112134,18 +112833,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [95079] = 4, + [95051] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 2, + ACTIONS(1397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1245), 3, + ACTIONS(2524), 3, anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(301), 14, + ACTIONS(1392), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -112160,27 +112859,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [95109] = 7, - ACTIONS(2158), 1, + [95081] = 4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(302), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1261), 3, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(300), 14, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [95111] = 7, + ACTIONS(2529), 1, anon_sym_not, - ACTIONS(2174), 1, + ACTIONS(2535), 1, anon_sym_is, - STATE(1421), 1, + STATE(1425), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2172), 2, + ACTIONS(2532), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2156), 6, + ACTIONS(2526), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2457), 8, + ACTIONS(2450), 8, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -112189,18 +112914,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_and, anon_sym_or, - [95145] = 4, + [95147] = 4, + ACTIONS(2540), 1, + anon_sym_COMMA, + STATE(1426), 1, + aux_sym_pattern_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2538), 17, + sym__newline, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [95177] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1455), 3, + ACTIONS(1465), 3, anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1394), 14, + ACTIONS(1392), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -112215,29 +112966,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [95175] = 8, - ACTIONS(2085), 1, + [95207] = 8, + ACTIONS(2448), 1, + anon_sym_as, + ACTIONS(2546), 1, anon_sym_not, - ACTIONS(2101), 1, + ACTIONS(2552), 1, anon_sym_is, - ACTIONS(2455), 1, - anon_sym_as, STATE(1428), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2099), 2, + ACTIONS(2549), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2083), 6, + ACTIONS(2543), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2457), 7, + ACTIONS(2450), 7, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_if, @@ -112245,45 +112996,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [95213] = 8, - ACTIONS(2439), 1, + [95245] = 8, + ACTIONS(2448), 1, anon_sym_as, - ACTIONS(2534), 1, + ACTIONS(2558), 1, anon_sym_not, - ACTIONS(2540), 1, + ACTIONS(2564), 1, anon_sym_is, - STATE(1428), 1, + STATE(1429), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2537), 2, + ACTIONS(2561), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 6, + ACTIONS(2555), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2441), 7, - anon_sym_RBRACK, + ACTIONS(2450), 7, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_and, anon_sym_or, - [95251] = 4, - ACTIONS(2543), 1, + [95283] = 4, + ACTIONS(2567), 1, anon_sym_COMMA, - STATE(1432), 1, + STATE(1426), 1, aux_sym_pattern_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(817), 17, + ACTIONS(819), 17, sym__newline, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -112301,44 +113052,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [95281] = 4, + [95313] = 8, + ACTIONS(2075), 1, + anon_sym_not, + ACTIONS(2091), 1, + anon_sym_is, + ACTIONS(2444), 1, + anon_sym_as, + STATE(1428), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(463), 3, - anon_sym_COLON, - anon_sym_RPAREN, + ACTIONS(2089), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2073), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2446), 7, + anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(301), 14, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [95311] = 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [95351] = 7, + ACTIONS(2152), 1, + anon_sym_not, + ACTIONS(2168), 1, + anon_sym_is, + STATE(1425), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2166), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2150), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2446), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [95387] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 2, + ACTIONS(302), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2545), 3, + ACTIONS(1261), 3, anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1394), 14, + ACTIONS(300), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -112353,20 +113137,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [95341] = 4, - ACTIONS(2549), 1, - anon_sym_COMMA, - STATE(1432), 1, - aux_sym_pattern_list_repeat1, + [95417] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2547), 17, + ACTIONS(2569), 18, sym__newline, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_COLON, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -112379,47 +113160,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [95371] = 8, - ACTIONS(2439), 1, - anon_sym_as, - ACTIONS(2555), 1, - anon_sym_not, - ACTIONS(2561), 1, - anon_sym_is, - STATE(1433), 1, - aux_sym_comparison_operator_repeat1, + [95442] = 13, + ACTIONS(2173), 1, + anon_sym_LBRACK, + ACTIONS(2177), 1, + anon_sym_DOT, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2579), 1, + anon_sym_STAR_STAR, + ACTIONS(2581), 1, + anon_sym_PIPE, + ACTIONS(2583), 1, + anon_sym_AMP, + ACTIONS(2585), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2558), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2552), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2441), 7, + ACTIONS(2571), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2573), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2575), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2577), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [95489] = 4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(292), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [95409] = 4, + ACTIONS(302), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(300), 14, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [95518] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 2, + ACTIONS(1385), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(1397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(463), 2, - anon_sym_COLON, - anon_sym_COMMA, - ACTIONS(301), 14, + ACTIONS(1392), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -112434,17 +113244,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [95438] = 4, + [95547] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1387), 2, + ACTIONS(292), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_in, - ACTIONS(1472), 2, + ACTIONS(302), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1467), 14, + ACTIONS(300), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -112459,55 +113269,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [95467] = 9, - ACTIONS(2214), 1, + [95576] = 13, + ACTIONS(1954), 1, anon_sym_LBRACK, - ACTIONS(2216), 1, - anon_sym_LPAREN, - ACTIONS(2218), 1, + ACTIONS(1960), 1, anon_sym_DOT, - ACTIONS(2568), 1, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2579), 1, anon_sym_STAR_STAR, + ACTIONS(2581), 1, + anon_sym_PIPE, + ACTIONS(2583), 1, + anon_sym_AMP, + ACTIONS(2585), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2564), 2, + ACTIONS(2571), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1226), 2, + ACTIONS(2573), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2575), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1249), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2566), 3, + ACTIONS(2577), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2052), 7, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [95506] = 8, - ACTIONS(2214), 1, + [95623] = 8, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(2216), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(2218), 1, + ACTIONS(2288), 1, anon_sym_DOT, - ACTIONS(2568), 1, + ACTIONS(2579), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2050), 2, + ACTIONS(2052), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1226), 2, + STATE(1249), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2052), 10, + ACTIONS(2054), 10, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -112518,158 +113332,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [95543] = 13, - ACTIONS(2052), 1, - anon_sym_PIPE, - ACTIONS(2214), 1, + [95660] = 10, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(2216), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(2218), 1, + ACTIONS(2288), 1, anon_sym_DOT, - ACTIONS(2568), 1, + ACTIONS(2579), 1, anon_sym_STAR_STAR, - ACTIONS(2574), 1, - anon_sym_AMP, - ACTIONS(2576), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2564), 2, + ACTIONS(2571), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2570), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2572), 2, + ACTIONS(2575), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1226), 2, + STATE(1249), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2566), 3, + ACTIONS(2577), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [95590] = 12, - ACTIONS(2214), 1, - anon_sym_LBRACK, - ACTIONS(2216), 1, - anon_sym_LPAREN, - ACTIONS(2218), 1, - anon_sym_DOT, - ACTIONS(2568), 1, - anon_sym_STAR_STAR, - ACTIONS(2576), 1, + ACTIONS(2054), 5, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, + [95701] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2052), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2564), 2, + ACTIONS(292), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(302), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2570), 2, + ACTIONS(300), 14, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2572), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1226), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2566), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [95635] = 11, - ACTIONS(2214), 1, - anon_sym_LBRACK, - ACTIONS(2216), 1, - anon_sym_LPAREN, - ACTIONS(2218), 1, - anon_sym_DOT, - ACTIONS(2568), 1, anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [95730] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2564), 2, + ACTIONS(1385), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(1434), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2570), 2, + ACTIONS(1429), 14, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2572), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1226), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2052), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(2566), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [95678] = 13, - ACTIONS(1990), 1, - anon_sym_LBRACK, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_LPAREN, - ACTIONS(2568), 1, anon_sym_STAR_STAR, - ACTIONS(2574), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(2576), 1, anon_sym_CARET, - ACTIONS(2578), 1, - anon_sym_PIPE, + anon_sym_LT_LT, + [95759] = 9, + ACTIONS(2284), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(2579), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2564), 2, + ACTIONS(2571), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2570), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2572), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1226), 2, + STATE(1249), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2566), 3, + ACTIONS(2577), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [95725] = 8, - ACTIONS(2214), 1, + ACTIONS(2054), 7, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [95798] = 8, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(2216), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(2218), 1, + ACTIONS(2288), 1, anon_sym_DOT, - ACTIONS(2568), 1, + ACTIONS(2579), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2050), 2, + ACTIONS(2052), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1226), 2, + STATE(1249), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2052), 10, + ACTIONS(2054), 10, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -112680,144 +113472,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [95762] = 13, + [95835] = 13, ACTIONS(2054), 1, + anon_sym_PIPE, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(2056), 1, - anon_sym_DOT, - ACTIONS(2216), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(2579), 1, anon_sym_STAR_STAR, - ACTIONS(2574), 1, + ACTIONS(2583), 1, anon_sym_AMP, - ACTIONS(2576), 1, + ACTIONS(2585), 1, anon_sym_CARET, - ACTIONS(2578), 1, - anon_sym_PIPE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2564), 2, + ACTIONS(2571), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2570), 2, + ACTIONS(2573), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2572), 2, + ACTIONS(2575), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1226), 2, + STATE(1249), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2566), 3, + ACTIONS(2577), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [95809] = 13, - ACTIONS(1956), 1, + [95882] = 12, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(1962), 1, - anon_sym_DOT, - ACTIONS(2216), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(2579), 1, anon_sym_STAR_STAR, - ACTIONS(2574), 1, - anon_sym_AMP, - ACTIONS(2576), 1, + ACTIONS(2585), 1, anon_sym_CARET, - ACTIONS(2578), 1, - anon_sym_PIPE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2564), 2, + ACTIONS(2054), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2571), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2570), 2, + ACTIONS(2573), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2572), 2, + ACTIONS(2575), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1226), 2, + STATE(1249), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2566), 3, + ACTIONS(2577), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [95856] = 4, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(1484), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(1491), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1486), 14, + [95927] = 11, + ACTIONS(2284), 1, anon_sym_LBRACK, + ACTIONS(2286), 1, anon_sym_LPAREN, + ACTIONS(2288), 1, anon_sym_DOT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [95885] = 13, - ACTIONS(2020), 1, - anon_sym_LBRACK, - ACTIONS(2024), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2579), 1, anon_sym_STAR_STAR, - ACTIONS(2574), 1, - anon_sym_AMP, - ACTIONS(2576), 1, - anon_sym_CARET, - ACTIONS(2578), 1, - anon_sym_PIPE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2564), 2, + ACTIONS(2571), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2570), 2, + ACTIONS(2573), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2572), 2, + ACTIONS(2575), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1226), 2, + STATE(1249), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2566), 3, + ACTIONS(2054), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(2577), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [95932] = 4, + [95970] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1495), 2, - anon_sym_RBRACK, + ACTIONS(292), 2, anon_sym_COMMA, - ACTIONS(1502), 2, + anon_sym_in, + ACTIONS(302), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1497), 14, + ACTIONS(300), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -112832,160 +113596,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [95961] = 4, + [95999] = 13, + ACTIONS(2203), 1, + anon_sym_LBRACK, + ACTIONS(2205), 1, + anon_sym_DOT, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2579), 1, + anon_sym_STAR_STAR, + ACTIONS(2581), 1, + anon_sym_PIPE, + ACTIONS(2583), 1, + anon_sym_AMP, + ACTIONS(2585), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(290), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(303), 2, + ACTIONS(2571), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(301), 14, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(2573), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2575), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2577), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + [96046] = 13, + ACTIONS(1986), 1, + anon_sym_LBRACK, + ACTIONS(1990), 1, + anon_sym_DOT, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2579), 1, anon_sym_STAR_STAR, + ACTIONS(2581), 1, anon_sym_PIPE, + ACTIONS(2583), 1, anon_sym_AMP, + ACTIONS(2585), 1, anon_sym_CARET, - anon_sym_LT_LT, - [95990] = 10, - ACTIONS(2580), 1, - aux_sym_recipe_token1, - ACTIONS(2582), 1, - anon_sym_NULL, - ACTIONS(2586), 1, - anon_sym_LBRACK, - ACTIONS(2588), 1, - anon_sym_COLON, - ACTIONS(2590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2594), 1, - sym__concat, - STATE(1519), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2592), 2, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1710), 3, - sym_variable_flag, - sym_override, - sym_variable_expansion, - ACTIONS(2584), 8, - anon_sym_EQ, - anon_sym_QMARK_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_COLON_EQ, - anon_sym_PLUS_EQ, - anon_sym_EQ_PLUS, - anon_sym_DOT_EQ, - anon_sym_EQ_DOT, - [96031] = 4, + ACTIONS(2571), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2573), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2575), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2577), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [96093] = 8, + ACTIONS(2284), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(2579), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(290), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(303), 2, + ACTIONS(2105), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(301), 14, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOT, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2107), 10, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [96060] = 13, - ACTIONS(2176), 1, + [96130] = 8, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(2180), 1, - anon_sym_DOT, - ACTIONS(2216), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(2579), 1, anon_sym_STAR_STAR, - ACTIONS(2574), 1, - anon_sym_AMP, - ACTIONS(2576), 1, - anon_sym_CARET, - ACTIONS(2578), 1, - anon_sym_PIPE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2564), 2, + ACTIONS(2101), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2570), 2, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2103), 10, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2572), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1226), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2566), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [96107] = 13, - ACTIONS(2073), 1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [96167] = 13, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(2077), 1, - anon_sym_DOT, - ACTIONS(2216), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(2579), 1, anon_sym_STAR_STAR, - ACTIONS(2574), 1, + ACTIONS(2581), 1, + anon_sym_PIPE, + ACTIONS(2583), 1, anon_sym_AMP, - ACTIONS(2576), 1, + ACTIONS(2585), 1, anon_sym_CARET, - ACTIONS(2578), 1, - anon_sym_PIPE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2564), 2, + ACTIONS(2571), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2570), 2, + ACTIONS(2573), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2572), 2, + ACTIONS(2575), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1226), 2, + STATE(1249), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2566), 3, + ACTIONS(2577), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [96154] = 2, + [96214] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2596), 18, + ACTIONS(1385), 18, sym__newline, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -113004,11 +113779,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [96179] = 2, + [96239] = 4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1397), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1465), 2, + anon_sym_COLON, + anon_sym_COMMA, + ACTIONS(1392), 14, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [96268] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1387), 18, + ACTIONS(2587), 18, sym__newline, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -113027,17 +113827,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [96204] = 4, + [96293] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1387), 2, + ACTIONS(1413), 2, anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(1472), 2, + ACTIONS(1420), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1467), 14, + ACTIONS(1415), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -113052,17 +113852,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [96233] = 4, + [96322] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1387), 2, - anon_sym_RBRACK, + ACTIONS(1385), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1399), 2, + ACTIONS(1434), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1394), 14, + ACTIONS(1429), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -113077,42 +113877,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [96262] = 4, + [96351] = 13, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2579), 1, + anon_sym_STAR_STAR, + ACTIONS(2581), 1, + anon_sym_PIPE, + ACTIONS(2583), 1, + anon_sym_AMP, + ACTIONS(2585), 1, + anon_sym_CARET, + ACTIONS(2589), 1, + anon_sym_LBRACK, + ACTIONS(2591), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1484), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1491), 2, + ACTIONS(2571), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1486), 14, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(2573), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2575), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2577), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [96291] = 4, + [96398] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1495), 2, + ACTIONS(1413), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_in, - ACTIONS(1502), 2, + ACTIONS(1420), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1497), 14, + ACTIONS(1415), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -113127,51 +113936,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [96320] = 13, - ACTIONS(2216), 1, - anon_sym_LPAREN, - ACTIONS(2291), 1, + [96427] = 10, + ACTIONS(2593), 1, + aux_sym_recipe_token1, + ACTIONS(2595), 1, + anon_sym_, + ACTIONS(2599), 1, anon_sym_LBRACK, - ACTIONS(2295), 1, - anon_sym_DOT, - ACTIONS(2568), 1, - anon_sym_STAR_STAR, - ACTIONS(2574), 1, - anon_sym_AMP, - ACTIONS(2576), 1, - anon_sym_CARET, - ACTIONS(2578), 1, - anon_sym_PIPE, - ACTIONS(3), 2, + ACTIONS(2601), 1, + anon_sym_COLON, + ACTIONS(2603), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2607), 1, + sym__concat, + STATE(1519), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(2564), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2570), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2572), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1226), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2566), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [96367] = 4, + STATE(1720), 3, + sym_variable_flag, + sym_override, + sym_variable_expansion, + ACTIONS(2597), 8, + anon_sym_EQ, + anon_sym_QMARK_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_EQ_PLUS, + anon_sym_DOT_EQ, + anon_sym_EQ_DOT, + [96468] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1387), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1399), 2, + ACTIONS(302), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1394), 14, + ACTIONS(1261), 2, + anon_sym_COLON, + anon_sym_COMMA, + ACTIONS(300), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -113186,17 +113992,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [96396] = 4, + [96497] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(290), 2, + ACTIONS(1497), 2, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_in, - ACTIONS(303), 2, + ACTIONS(1504), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(301), 14, + ACTIONS(1499), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -113211,17 +114017,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [96425] = 4, + [96526] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(290), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(303), 2, + ACTIONS(302), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(301), 14, + ACTIONS(1261), 2, + anon_sym_COLON, + anon_sym_COMMA, + ACTIONS(300), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -113236,65 +114042,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [96454] = 10, - ACTIONS(2214), 1, - anon_sym_LBRACK, - ACTIONS(2216), 1, + [96555] = 13, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(2218), 1, + ACTIONS(2318), 1, + anon_sym_LBRACK, + ACTIONS(2322), 1, anon_sym_DOT, - ACTIONS(2568), 1, + ACTIONS(2579), 1, anon_sym_STAR_STAR, + ACTIONS(2581), 1, + anon_sym_PIPE, + ACTIONS(2583), 1, + anon_sym_AMP, + ACTIONS(2585), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2564), 2, + ACTIONS(2571), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2572), 2, + ACTIONS(2573), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2575), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1226), 2, + STATE(1249), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2566), 3, + ACTIONS(2577), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2052), 5, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [96495] = 2, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2598), 18, - sym__newline, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [96520] = 2, + [96602] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2547), 18, + ACTIONS(2538), 18, sym__newline, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -113313,17 +114099,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [96545] = 4, + [96627] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1387), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1399), 2, + ACTIONS(1397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1394), 14, + ACTIONS(2524), 2, + anon_sym_COLON, + anon_sym_COMMA, + ACTIONS(1392), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -113338,85 +114124,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [96574] = 13, - ACTIONS(2122), 1, - anon_sym_LBRACK, - ACTIONS(2126), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_LPAREN, - ACTIONS(2568), 1, - anon_sym_STAR_STAR, - ACTIONS(2574), 1, - anon_sym_AMP, - ACTIONS(2576), 1, - anon_sym_CARET, - ACTIONS(2578), 1, - anon_sym_PIPE, + [96656] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2564), 2, + ACTIONS(1385), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2570), 2, + ACTIONS(1392), 14, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2572), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1226), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2566), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [96621] = 13, - ACTIONS(2214), 1, - anon_sym_LBRACK, - ACTIONS(2216), 1, - anon_sym_LPAREN, - ACTIONS(2218), 1, - anon_sym_DOT, - ACTIONS(2568), 1, anon_sym_STAR_STAR, - ACTIONS(2574), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(2576), 1, anon_sym_CARET, - ACTIONS(2578), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2564), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2570), 2, - anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2572), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1226), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2566), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [96668] = 4, + [96685] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1497), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1504), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1455), 2, - anon_sym_COLON, - anon_sym_COMMA, - ACTIONS(1394), 14, + ACTIONS(1499), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -113431,17 +114174,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [96697] = 4, + [96714] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 2, + ACTIONS(1385), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1245), 2, - anon_sym_COLON, - anon_sym_COMMA, - ACTIONS(301), 14, + ACTIONS(1392), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -113456,17 +114199,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [96726] = 4, + [96743] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1387), 2, - anon_sym_RPAREN, + ACTIONS(292), 2, + anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(1472), 2, + ACTIONS(302), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1467), 14, + ACTIONS(300), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -113481,17 +114224,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [96755] = 4, + [96772] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1495), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1502), 2, + ACTIONS(302), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1497), 14, + ACTIONS(465), 2, + anon_sym_COLON, + anon_sym_COMMA, + ACTIONS(300), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -113506,51 +114249,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [96784] = 13, - ACTIONS(2216), 1, + [96801] = 13, + ACTIONS(2019), 1, + anon_sym_LBRACK, + ACTIONS(2023), 1, + anon_sym_DOT, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2579), 1, anon_sym_STAR_STAR, - ACTIONS(2574), 1, + ACTIONS(2581), 1, + anon_sym_PIPE, + ACTIONS(2583), 1, anon_sym_AMP, - ACTIONS(2576), 1, + ACTIONS(2585), 1, anon_sym_CARET, - ACTIONS(2578), 1, - anon_sym_PIPE, - ACTIONS(2600), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2564), 2, + ACTIONS(2571), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2570), 2, + ACTIONS(2573), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2572), 2, + ACTIONS(2575), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1226), 2, + STATE(1249), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2566), 3, + ACTIONS(2577), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [96831] = 4, + [96848] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1484), 2, - anon_sym_RPAREN, + ACTIONS(1385), 2, anon_sym_COMMA, - ACTIONS(1491), 2, + anon_sym_in, + ACTIONS(1434), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1486), 14, + ACTIONS(1429), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -113565,75 +114308,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [96860] = 8, - ACTIONS(2214), 1, - anon_sym_LBRACK, - ACTIONS(2216), 1, - anon_sym_LPAREN, - ACTIONS(2218), 1, - anon_sym_DOT, - ACTIONS(2568), 1, - anon_sym_STAR_STAR, + [96877] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2068), 2, + ACTIONS(292), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(302), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1226), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2066), 10, + ACTIONS(300), 14, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [96897] = 8, - ACTIONS(2214), 1, + [96906] = 13, + ACTIONS(2063), 1, anon_sym_LBRACK, - ACTIONS(2216), 1, - anon_sym_LPAREN, - ACTIONS(2218), 1, + ACTIONS(2067), 1, anon_sym_DOT, - ACTIONS(2568), 1, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2579), 1, anon_sym_STAR_STAR, + ACTIONS(2581), 1, + anon_sym_PIPE, + ACTIONS(2583), 1, + anon_sym_AMP, + ACTIONS(2585), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2064), 2, + ACTIONS(2571), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1226), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2062), 10, + ACTIONS(2573), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2575), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2577), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [96934] = 4, + [96953] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1399), 2, + ACTIONS(302), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2545), 2, + ACTIONS(465), 2, anon_sym_COLON, anon_sym_COMMA, - ACTIONS(1394), 14, + ACTIONS(300), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -113648,17 +114392,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [96963] = 4, + [96982] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2225), 2, + ts_builtin_sym_end, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2609), 16, + anon_sym_unset, + anon_sym_inherit, + anon_sym_inherit_defer, + anon_sym_include, + anon_sym_require, + anon_sym_export, + anon_sym_OVERRIDES, + anon_sym_EXPORT_FUNCTIONS, + anon_sym_addtask, + anon_sym_deltask, + anon_sym_addhandler, + anon_sym_fakeroot, + anon_sym_python, + anon_sym_def, + sym_identifier, + aux_sym__dotted_identifier_token1, + [97009] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 2, + ACTIONS(1413), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1420), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1245), 2, - anon_sym_COLON, - anon_sym_COMMA, - ACTIONS(301), 14, + ACTIONS(1415), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -113673,17 +114441,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [96992] = 4, + [97038] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(303), 2, + ACTIONS(1497), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1504), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(463), 2, - anon_sym_COLON, - anon_sym_COMMA, - ACTIONS(301), 14, + ACTIONS(1499), 14, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOT, @@ -113698,191 +114466,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97021] = 4, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(290), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(303), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(301), 14, + [97067] = 13, + ACTIONS(2113), 1, anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(2117), 1, anon_sym_DOT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2579), 1, anon_sym_STAR_STAR, + ACTIONS(2581), 1, anon_sym_PIPE, + ACTIONS(2583), 1, anon_sym_AMP, + ACTIONS(2585), 1, anon_sym_CARET, - anon_sym_LT_LT, - [97050] = 4, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(290), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(303), 2, + ACTIONS(2571), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(301), 14, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(2573), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2575), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1249), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2577), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [97079] = 2, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2598), 17, - anon_sym_EQ, - anon_sym_PLUS_EQ, + [97114] = 13, + ACTIONS(2611), 1, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_in, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [97103] = 3, + ACTIONS(2613), 1, + anon_sym_LPAREN, + ACTIONS(2615), 1, + anon_sym_STAR, + ACTIONS(2617), 1, + anon_sym_SLASH, + ACTIONS(2619), 1, + anon_sym_STAR_STAR, + ACTIONS(2621), 1, + sym_python_identifier, + STATE(2152), 1, + sym_parameter, + STATE(2153), 1, + sym_tuple_pattern, + STATE(2461), 1, + sym_lambda_parameters, + STATE(2472), 1, + sym__parameters, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2389), 2, - ts_builtin_sym_end, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2604), 15, - anon_sym_unset, - anon_sym_inherit, - anon_sym_include, - anon_sym_require, - anon_sym_export, - anon_sym_OVERRIDES, - anon_sym_EXPORT_FUNCTIONS, - anon_sym_addtask, - anon_sym_deltask, - anon_sym_addhandler, - anon_sym_fakeroot, - anon_sym_python, - anon_sym_def, - sym_identifier, - aux_sym__dotted_identifier_token1, - [97129] = 13, - ACTIONS(2606), 1, - anon_sym_COLON, - ACTIONS(2608), 1, + STATE(2263), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2267), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [97160] = 13, + ACTIONS(2613), 1, anon_sym_LPAREN, - ACTIONS(2610), 1, + ACTIONS(2615), 1, anon_sym_STAR, - ACTIONS(2612), 1, + ACTIONS(2617), 1, anon_sym_SLASH, - ACTIONS(2614), 1, + ACTIONS(2619), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2621), 1, sym_python_identifier, - STATE(2104), 1, + ACTIONS(2623), 1, + anon_sym_COLON, + STATE(2152), 1, sym_parameter, - STATE(2110), 1, + STATE(2153), 1, sym_tuple_pattern, - STATE(2377), 1, - sym_lambda_parameters, - STATE(2468), 1, + STATE(2472), 1, sym__parameters, + STATE(2531), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(2269), 2, + STATE(2263), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2280), 5, + STATE(2267), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [97175] = 13, - ACTIONS(2608), 1, + [97206] = 13, + ACTIONS(2613), 1, anon_sym_LPAREN, - ACTIONS(2610), 1, + ACTIONS(2615), 1, anon_sym_STAR, - ACTIONS(2612), 1, + ACTIONS(2617), 1, anon_sym_SLASH, - ACTIONS(2614), 1, + ACTIONS(2619), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2621), 1, sym_python_identifier, - ACTIONS(2618), 1, + ACTIONS(2625), 1, anon_sym_COLON, - STATE(2104), 1, + STATE(2152), 1, sym_parameter, - STATE(2110), 1, + STATE(2153), 1, sym_tuple_pattern, - STATE(2468), 1, + STATE(2472), 1, sym__parameters, - STATE(2470), 1, + STATE(2473), 1, sym_lambda_parameters, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(2269), 2, + STATE(2263), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2280), 5, + STATE(2267), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [97221] = 11, - ACTIONS(2584), 1, + [97252] = 4, + ACTIONS(2627), 1, + anon_sym_COMMA, + STATE(1499), 1, + aux_sym_pattern_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(819), 15, anon_sym_EQ, - ACTIONS(2588), 1, + anon_sym_PLUS_EQ, + anon_sym_COLON, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [97280] = 11, + ACTIONS(2597), 1, + anon_sym_EQ, + ACTIONS(2601), 1, anon_sym_COLON, - ACTIONS(2594), 1, + ACTIONS(2607), 1, sym__concat, - ACTIONS(2622), 1, + ACTIONS(2631), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2633), 1, anon_sym_LPAREN, - ACTIONS(2626), 1, + ACTIONS(2635), 1, anon_sym_DOLLAR_LBRACE, STATE(1519), 1, aux_sym_concatenation_repeat1, - STATE(1629), 1, + STATE(1645), 1, sym_override, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1710), 2, + STATE(1720), 2, sym_variable_flag, sym_variable_expansion, - ACTIONS(2620), 7, + ACTIONS(2629), 7, anon_sym_QMARK_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_COLON_EQ, @@ -113890,11 +114654,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_PLUS, anon_sym_DOT_EQ, anon_sym_EQ_DOT, - [97263] = 2, + [97322] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2596), 17, + ACTIONS(2587), 17, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_COLON, @@ -113912,51 +114676,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [97287] = 13, - ACTIONS(2608), 1, + [97346] = 13, + ACTIONS(2613), 1, anon_sym_LPAREN, - ACTIONS(2610), 1, + ACTIONS(2615), 1, anon_sym_STAR, - ACTIONS(2612), 1, + ACTIONS(2617), 1, anon_sym_SLASH, - ACTIONS(2614), 1, + ACTIONS(2619), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2621), 1, sym_python_identifier, - ACTIONS(2628), 1, + ACTIONS(2637), 1, anon_sym_COLON, - STATE(2104), 1, + STATE(2152), 1, sym_parameter, - STATE(2110), 1, + STATE(2153), 1, sym_tuple_pattern, - STATE(2468), 1, - sym__parameters, - STATE(2534), 1, + STATE(2416), 1, sym_lambda_parameters, + STATE(2472), 1, + sym__parameters, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(2269), 2, + STATE(2263), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2280), 5, + STATE(2267), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [97333] = 4, - ACTIONS(2630), 1, + [97392] = 6, + ACTIONS(2639), 1, + anon_sym_EQ, + ACTIONS(2643), 1, + anon_sym_COLON, + ACTIONS(2645), 1, anon_sym_COMMA, - STATE(1489), 1, + STATE(1430), 1, aux_sym_pattern_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2547), 15, - anon_sym_EQ, + ACTIONS(2641), 13, anon_sym_PLUS_EQ, - anon_sym_COLON, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -113969,44 +114735,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [97361] = 13, - ACTIONS(2608), 1, + [97424] = 13, + ACTIONS(2613), 1, anon_sym_LPAREN, - ACTIONS(2610), 1, + ACTIONS(2615), 1, anon_sym_STAR, - ACTIONS(2612), 1, + ACTIONS(2617), 1, anon_sym_SLASH, - ACTIONS(2614), 1, + ACTIONS(2619), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2621), 1, sym_python_identifier, - ACTIONS(2633), 1, + ACTIONS(2647), 1, anon_sym_COLON, - STATE(2104), 1, + STATE(2152), 1, sym_parameter, - STATE(2110), 1, + STATE(2153), 1, sym_tuple_pattern, - STATE(2468), 1, - sym__parameters, - STATE(2549), 1, + STATE(2357), 1, sym_lambda_parameters, + STATE(2472), 1, + sym__parameters, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(2269), 2, + STATE(2263), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2280), 5, + STATE(2267), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [97407] = 2, + [97470] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1387), 17, + ACTIONS(2569), 17, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_COLON, @@ -114024,86 +114790,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [97431] = 13, - ACTIONS(2608), 1, - anon_sym_LPAREN, - ACTIONS(2610), 1, - anon_sym_STAR, - ACTIONS(2612), 1, - anon_sym_SLASH, - ACTIONS(2614), 1, - anon_sym_STAR_STAR, - ACTIONS(2616), 1, - sym_python_identifier, - ACTIONS(2635), 1, - anon_sym_COLON, - STATE(2104), 1, - sym_parameter, - STATE(2110), 1, - sym_tuple_pattern, - STATE(2468), 1, - sym__parameters, - STATE(2473), 1, - sym_lambda_parameters, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - STATE(2269), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2280), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [97477] = 13, - ACTIONS(2608), 1, - anon_sym_LPAREN, - ACTIONS(2610), 1, - anon_sym_STAR, - ACTIONS(2612), 1, - anon_sym_SLASH, - ACTIONS(2614), 1, - anon_sym_STAR_STAR, - ACTIONS(2616), 1, - sym_python_identifier, - ACTIONS(2637), 1, - anon_sym_COLON, - STATE(2104), 1, - sym_parameter, - STATE(2110), 1, - sym_tuple_pattern, - STATE(2406), 1, - sym_lambda_parameters, - STATE(2468), 1, - sym__parameters, + [97494] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(2269), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2280), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [97523] = 6, - ACTIONS(2639), 1, + ACTIONS(1385), 17, anon_sym_EQ, - ACTIONS(2643), 1, + anon_sym_PLUS_EQ, anon_sym_COLON, - ACTIONS(2645), 1, anon_sym_COMMA, - STATE(1429), 1, - aux_sym_pattern_list_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2641), 13, - anon_sym_PLUS_EQ, + anon_sym_in, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -114116,18 +114812,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [97555] = 6, + [97518] = 5, ACTIONS(2639), 1, anon_sym_EQ, ACTIONS(2643), 1, anon_sym_COLON, - ACTIONS(2647), 1, - anon_sym_COMMA, - STATE(1500), 1, - aux_sym_pattern_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, + ACTIONS(2649), 2, + sym__newline, + anon_sym_SEMI, ACTIONS(2641), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -114142,139 +114837,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [97587] = 13, - ACTIONS(2608), 1, + [97548] = 13, + ACTIONS(2613), 1, anon_sym_LPAREN, - ACTIONS(2610), 1, + ACTIONS(2615), 1, anon_sym_STAR, - ACTIONS(2612), 1, + ACTIONS(2617), 1, anon_sym_SLASH, - ACTIONS(2614), 1, + ACTIONS(2619), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2621), 1, sym_python_identifier, - ACTIONS(2649), 1, + ACTIONS(2651), 1, anon_sym_COLON, - STATE(2104), 1, + STATE(2152), 1, + sym_parameter, + STATE(2153), 1, + sym_tuple_pattern, + STATE(2472), 1, + sym__parameters, + STATE(2518), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(2263), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2267), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [97594] = 13, + ACTIONS(2613), 1, + anon_sym_LPAREN, + ACTIONS(2615), 1, + anon_sym_STAR, + ACTIONS(2617), 1, + anon_sym_SLASH, + ACTIONS(2619), 1, + anon_sym_STAR_STAR, + ACTIONS(2621), 1, + sym_python_identifier, + ACTIONS(2653), 1, + anon_sym_COLON, + STATE(2152), 1, sym_parameter, - STATE(2110), 1, + STATE(2153), 1, sym_tuple_pattern, - STATE(2410), 1, - sym_lambda_parameters, - STATE(2468), 1, + STATE(2472), 1, sym__parameters, + STATE(2508), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(2269), 2, + STATE(2263), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2280), 5, + STATE(2267), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [97633] = 13, - ACTIONS(2608), 1, + [97640] = 13, + ACTIONS(2613), 1, anon_sym_LPAREN, - ACTIONS(2610), 1, + ACTIONS(2615), 1, anon_sym_STAR, - ACTIONS(2612), 1, + ACTIONS(2617), 1, anon_sym_SLASH, - ACTIONS(2614), 1, + ACTIONS(2619), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2621), 1, sym_python_identifier, - ACTIONS(2651), 1, + ACTIONS(2655), 1, anon_sym_COLON, - STATE(2104), 1, + STATE(2152), 1, sym_parameter, - STATE(2110), 1, + STATE(2153), 1, sym_tuple_pattern, - STATE(2468), 1, - sym__parameters, - STATE(2559), 1, + STATE(2412), 1, sym_lambda_parameters, + STATE(2472), 1, + sym__parameters, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(2269), 2, + STATE(2263), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2280), 5, + STATE(2267), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [97679] = 5, - ACTIONS(2639), 1, - anon_sym_EQ, - ACTIONS(2643), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2653), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(2641), 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, - [97709] = 13, - ACTIONS(2608), 1, + [97686] = 13, + ACTIONS(2613), 1, anon_sym_LPAREN, - ACTIONS(2610), 1, + ACTIONS(2615), 1, anon_sym_STAR, - ACTIONS(2612), 1, + ACTIONS(2617), 1, anon_sym_SLASH, - ACTIONS(2614), 1, + ACTIONS(2619), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2621), 1, sym_python_identifier, - ACTIONS(2655), 1, + ACTIONS(2657), 1, anon_sym_COLON, - STATE(2104), 1, + STATE(2152), 1, sym_parameter, - STATE(2110), 1, + STATE(2153), 1, sym_tuple_pattern, - STATE(2439), 1, - sym_lambda_parameters, - STATE(2468), 1, + STATE(2472), 1, sym__parameters, + STATE(2530), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(2269), 2, + STATE(2263), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2280), 5, + STATE(2267), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [97755] = 4, - ACTIONS(2657), 1, + [97732] = 4, + ACTIONS(2659), 1, anon_sym_COMMA, - STATE(1489), 1, + STATE(1499), 1, aux_sym_pattern_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(817), 15, + ACTIONS(2538), 15, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_COLON, @@ -114290,110 +114993,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [97783] = 13, - ACTIONS(2608), 1, + [97760] = 13, + ACTIONS(2613), 1, anon_sym_LPAREN, - ACTIONS(2610), 1, + ACTIONS(2615), 1, anon_sym_STAR, - ACTIONS(2612), 1, + ACTIONS(2617), 1, anon_sym_SLASH, - ACTIONS(2614), 1, + ACTIONS(2619), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2621), 1, sym_python_identifier, - ACTIONS(2659), 1, + ACTIONS(2662), 1, anon_sym_COLON, - STATE(2104), 1, + STATE(2152), 1, sym_parameter, - STATE(2110), 1, + STATE(2153), 1, sym_tuple_pattern, - STATE(2468), 1, + STATE(2472), 1, sym__parameters, - STATE(2482), 1, + STATE(2540), 1, sym_lambda_parameters, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(2269), 2, + STATE(2263), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2280), 5, + STATE(2267), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [97829] = 13, - ACTIONS(2608), 1, + [97806] = 13, + ACTIONS(2613), 1, anon_sym_LPAREN, - ACTIONS(2610), 1, + ACTIONS(2615), 1, anon_sym_STAR, - ACTIONS(2612), 1, + ACTIONS(2617), 1, anon_sym_SLASH, - ACTIONS(2614), 1, + ACTIONS(2619), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2621), 1, sym_python_identifier, - ACTIONS(2661), 1, + ACTIONS(2664), 1, anon_sym_COLON, - STATE(2104), 1, + STATE(2152), 1, sym_parameter, - STATE(2110), 1, + STATE(2153), 1, sym_tuple_pattern, - STATE(2353), 1, + STATE(2382), 1, sym_lambda_parameters, - STATE(2468), 1, + STATE(2472), 1, sym__parameters, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(2269), 2, + STATE(2263), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2280), 5, + STATE(2267), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [97875] = 13, - ACTIONS(2608), 1, + [97852] = 13, + ACTIONS(2613), 1, anon_sym_LPAREN, - ACTIONS(2610), 1, + ACTIONS(2615), 1, anon_sym_STAR, - ACTIONS(2612), 1, + ACTIONS(2617), 1, anon_sym_SLASH, - ACTIONS(2614), 1, + ACTIONS(2619), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2621), 1, sym_python_identifier, - ACTIONS(2663), 1, + ACTIONS(2666), 1, anon_sym_COLON, - STATE(2104), 1, + STATE(2152), 1, sym_parameter, - STATE(2110), 1, + STATE(2153), 1, sym_tuple_pattern, - STATE(2468), 1, - sym__parameters, - STATE(2512), 1, + STATE(2454), 1, sym_lambda_parameters, + STATE(2472), 1, + sym__parameters, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(2269), 2, + STATE(2263), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2280), 5, + STATE(2267), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [97921] = 2, + [97898] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2547), 17, + ACTIONS(2538), 17, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_COLON, @@ -114411,222 +115114,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [97945] = 13, - ACTIONS(2608), 1, + [97922] = 6, + ACTIONS(2639), 1, + anon_sym_EQ, + ACTIONS(2643), 1, + anon_sym_COLON, + ACTIONS(2668), 1, + anon_sym_COMMA, + STATE(1486), 1, + aux_sym_pattern_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2641), 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, + [97954] = 13, + ACTIONS(2613), 1, anon_sym_LPAREN, - ACTIONS(2610), 1, + ACTIONS(2615), 1, anon_sym_STAR, - ACTIONS(2612), 1, + ACTIONS(2617), 1, anon_sym_SLASH, - ACTIONS(2614), 1, + ACTIONS(2619), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2621), 1, sym_python_identifier, - ACTIONS(2665), 1, + ACTIONS(2670), 1, anon_sym_COLON, - STATE(2104), 1, + STATE(2152), 1, sym_parameter, - STATE(2110), 1, + STATE(2153), 1, sym_tuple_pattern, - STATE(2448), 1, - sym_lambda_parameters, - STATE(2468), 1, + STATE(2472), 1, sym__parameters, + STATE(2476), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(2269), 2, + STATE(2263), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2280), 5, + STATE(2267), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [97991] = 7, - ACTIONS(2369), 1, - anon_sym_not, - ACTIONS(2385), 1, - anon_sym_is, - STATE(1508), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2383), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2457), 5, - anon_sym_as, - anon_sym_if, - anon_sym_else, - anon_sym_and, - anon_sym_or, - ACTIONS(2367), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [98024] = 12, - ACTIONS(2667), 1, + [98000] = 12, + ACTIONS(2672), 1, anon_sym_LPAREN, - ACTIONS(2669), 1, + ACTIONS(2674), 1, anon_sym_RPAREN, - ACTIONS(2671), 1, + ACTIONS(2676), 1, anon_sym_STAR, - ACTIONS(2673), 1, + ACTIONS(2678), 1, anon_sym_SLASH, - ACTIONS(2675), 1, + ACTIONS(2680), 1, anon_sym_STAR_STAR, - ACTIONS(2677), 1, + ACTIONS(2682), 1, sym_python_identifier, - STATE(2138), 1, - sym_parameter, - STATE(2139), 1, + STATE(2221), 1, sym_tuple_pattern, - STATE(2440), 1, + STATE(2224), 1, + sym_parameter, + STATE(2444), 1, sym__parameters, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(2141), 2, + STATE(2211), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2265), 5, + STATE(2240), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [98067] = 7, - ACTIONS(2682), 1, + [98043] = 7, + ACTIONS(2687), 1, anon_sym_not, - ACTIONS(2688), 1, + ACTIONS(2693), 1, anon_sym_is, - STATE(1508), 1, + STATE(1507), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2685), 2, + ACTIONS(2690), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2441), 5, + ACTIONS(2450), 5, anon_sym_as, anon_sym_if, anon_sym_else, anon_sym_and, anon_sym_or, - ACTIONS(2679), 6, + ACTIONS(2684), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98100] = 11, - ACTIONS(2608), 1, - anon_sym_LPAREN, - ACTIONS(2610), 1, - anon_sym_STAR, - ACTIONS(2612), 1, - anon_sym_SLASH, - ACTIONS(2614), 1, - anon_sym_STAR_STAR, - ACTIONS(2616), 1, - sym_python_identifier, - ACTIONS(2691), 1, - anon_sym_COLON, - STATE(2110), 1, - sym_tuple_pattern, - STATE(2241), 1, - sym_parameter, + [98076] = 7, + ACTIONS(2426), 1, + anon_sym_not, + ACTIONS(2442), 1, + anon_sym_is, + STATE(1507), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(2269), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2280), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [98140] = 11, - ACTIONS(2667), 1, + ACTIONS(2440), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2446), 5, + anon_sym_as, + anon_sym_if, + anon_sym_else, + anon_sym_and, + anon_sym_or, + ACTIONS(2424), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [98109] = 11, + ACTIONS(2672), 1, anon_sym_LPAREN, - ACTIONS(2671), 1, + ACTIONS(2676), 1, anon_sym_STAR, - ACTIONS(2673), 1, + ACTIONS(2678), 1, anon_sym_SLASH, - ACTIONS(2675), 1, + ACTIONS(2680), 1, anon_sym_STAR_STAR, - ACTIONS(2677), 1, + ACTIONS(2682), 1, sym_python_identifier, - ACTIONS(2691), 1, + ACTIONS(2696), 1, anon_sym_RPAREN, - STATE(2139), 1, + STATE(2221), 1, sym_tuple_pattern, - STATE(2244), 1, + STATE(2243), 1, sym_parameter, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(2141), 2, + STATE(2211), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2265), 5, + STATE(2240), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [98180] = 9, - ACTIONS(2594), 1, - sym__concat, - ACTIONS(2622), 1, - anon_sym_LBRACK, - ACTIONS(2693), 1, - anon_sym_EQ, - ACTIONS(2697), 1, - anon_sym_COLON, - STATE(1519), 1, - aux_sym_concatenation_repeat1, - STATE(1563), 1, - sym_variable_flag, - STATE(1566), 1, - aux_sym_override_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2695), 8, - anon_sym_QMARK_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_COLON_EQ, - anon_sym_PLUS_EQ, - anon_sym_EQ_PLUS, - anon_sym_DOT_EQ, - anon_sym_EQ_DOT, - anon_sym_LPAREN, - [98216] = 6, - ACTIONS(31), 1, + [98149] = 6, + ACTIONS(33), 1, anon_sym_DOLLAR_LBRACE, - STATE(1522), 1, + STATE(1524), 1, sym_variable_expansion, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2699), 2, + ACTIONS(2698), 2, anon_sym_EQ, anon_sym_COLON, - ACTIONS(2703), 2, + ACTIONS(2702), 2, sym_identifier, aux_sym__dotted_identifier_token1, - ACTIONS(2701), 9, + ACTIONS(2700), 9, anon_sym_QMARK_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_COLON_EQ, @@ -114636,36 +115309,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_DOT, anon_sym_LBRACK, anon_sym_LPAREN, - [98246] = 11, - ACTIONS(2667), 1, + [98179] = 11, + ACTIONS(2613), 1, anon_sym_LPAREN, - ACTIONS(2671), 1, + ACTIONS(2615), 1, anon_sym_STAR, - ACTIONS(2673), 1, + ACTIONS(2617), 1, anon_sym_SLASH, - ACTIONS(2675), 1, + ACTIONS(2619), 1, anon_sym_STAR_STAR, - ACTIONS(2677), 1, + ACTIONS(2621), 1, sym_python_identifier, - ACTIONS(2705), 1, - anon_sym_RPAREN, - STATE(2139), 1, + ACTIONS(2704), 1, + anon_sym_COLON, + STATE(2153), 1, sym_tuple_pattern, - STATE(2244), 1, + STATE(2246), 1, sym_parameter, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(2141), 2, + STATE(2263), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2265), 5, + STATE(2267), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [98286] = 4, + [98219] = 4, ACTIONS(2639), 1, anon_sym_EQ, ACTIONS(2643), 1, @@ -114687,105 +115360,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [98312] = 11, - ACTIONS(2608), 1, + [98245] = 9, + ACTIONS(2607), 1, + sym__concat, + ACTIONS(2631), 1, + anon_sym_LBRACK, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(2710), 1, + anon_sym_COLON, + STATE(1519), 1, + aux_sym_concatenation_repeat1, + STATE(1552), 1, + aux_sym_override_repeat1, + STATE(1553), 1, + sym_variable_flag, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2708), 8, + anon_sym_QMARK_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_EQ_PLUS, + anon_sym_DOT_EQ, + anon_sym_EQ_DOT, + anon_sym_LPAREN, + [98281] = 11, + ACTIONS(2672), 1, anon_sym_LPAREN, - ACTIONS(2610), 1, + ACTIONS(2676), 1, anon_sym_STAR, - ACTIONS(2612), 1, + ACTIONS(2678), 1, anon_sym_SLASH, - ACTIONS(2614), 1, + ACTIONS(2680), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2682), 1, sym_python_identifier, - ACTIONS(2705), 1, - anon_sym_COLON, - STATE(2110), 1, + ACTIONS(2704), 1, + anon_sym_RPAREN, + STATE(2221), 1, sym_tuple_pattern, - STATE(2241), 1, + STATE(2243), 1, sym_parameter, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(2269), 2, + STATE(2211), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2280), 5, + STATE(2240), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [98352] = 10, - ACTIONS(2608), 1, + [98321] = 11, + ACTIONS(2613), 1, anon_sym_LPAREN, - ACTIONS(2610), 1, + ACTIONS(2615), 1, anon_sym_STAR, - ACTIONS(2612), 1, + ACTIONS(2617), 1, anon_sym_SLASH, - ACTIONS(2614), 1, + ACTIONS(2619), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2621), 1, sym_python_identifier, - STATE(2110), 1, + ACTIONS(2696), 1, + anon_sym_COLON, + STATE(2153), 1, sym_tuple_pattern, - STATE(2241), 1, + STATE(2246), 1, sym_parameter, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(2269), 2, + STATE(2263), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2280), 5, + STATE(2267), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [98389] = 10, - ACTIONS(2667), 1, + [98361] = 10, + ACTIONS(2672), 1, anon_sym_LPAREN, - ACTIONS(2671), 1, + ACTIONS(2676), 1, anon_sym_STAR, - ACTIONS(2673), 1, + ACTIONS(2678), 1, anon_sym_SLASH, - ACTIONS(2675), 1, + ACTIONS(2680), 1, anon_sym_STAR_STAR, - ACTIONS(2677), 1, + ACTIONS(2682), 1, sym_python_identifier, - STATE(2139), 1, + STATE(2221), 1, sym_tuple_pattern, - STATE(2244), 1, + STATE(2243), 1, sym_parameter, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(2141), 2, + STATE(2211), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2265), 5, + STATE(2240), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [98426] = 7, - ACTIONS(2594), 1, + [98398] = 7, + ACTIONS(2607), 1, sym__concat, - ACTIONS(2622), 1, + ACTIONS(2631), 1, anon_sym_LBRACK, STATE(1519), 1, aux_sym_concatenation_repeat1, - STATE(1580), 1, + STATE(1621), 1, sym_variable_flag, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2707), 2, + ACTIONS(2712), 2, anon_sym_EQ, anon_sym_COLON, - ACTIONS(2709), 8, + ACTIONS(2714), 8, anon_sym_QMARK_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_COLON_EQ, @@ -114794,18 +115496,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_EQ, anon_sym_EQ_DOT, anon_sym_LPAREN, - [98457] = 5, - ACTIONS(2715), 1, - sym__concat, - STATE(1520), 1, - aux_sym_concatenation_repeat1, + [98429] = 7, + ACTIONS(2597), 1, + anon_sym_EQ, + ACTIONS(2601), 1, + anon_sym_COLON, + ACTIONS(2631), 1, + anon_sym_LBRACK, + ACTIONS(2635), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2711), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2713), 10, + STATE(1720), 3, + sym_variable_flag, + sym_override, + sym_variable_expansion, + ACTIONS(2629), 7, anon_sym_QMARK_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_COLON_EQ, @@ -114813,21 +115520,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_PLUS, anon_sym_DOT_EQ, anon_sym_EQ_DOT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR_LBRACE, - [98484] = 5, - ACTIONS(2721), 1, + [98460] = 5, + ACTIONS(2720), 1, sym__concat, - STATE(1520), 1, + STATE(1521), 1, aux_sym_concatenation_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2717), 2, + ACTIONS(2716), 2, anon_sym_EQ, anon_sym_COLON, - ACTIONS(2719), 10, + ACTIONS(2718), 10, anon_sym_QMARK_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_COLON_EQ, @@ -114838,39 +115542,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR_LBRACE, - [98511] = 7, - ACTIONS(2584), 1, - anon_sym_EQ, - ACTIONS(2588), 1, - anon_sym_COLON, - ACTIONS(2622), 1, - anon_sym_LBRACK, - ACTIONS(2626), 1, - anon_sym_DOLLAR_LBRACE, + [98487] = 10, + ACTIONS(2613), 1, + anon_sym_LPAREN, + ACTIONS(2615), 1, + anon_sym_STAR, + ACTIONS(2617), 1, + anon_sym_SLASH, + ACTIONS(2619), 1, + anon_sym_STAR_STAR, + ACTIONS(2621), 1, + sym_python_identifier, + STATE(2153), 1, + sym_tuple_pattern, + STATE(2246), 1, + sym_parameter, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1710), 3, - sym_variable_flag, - sym_override, - sym_variable_expansion, - ACTIONS(2620), 7, - anon_sym_QMARK_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_COLON_EQ, - anon_sym_PLUS_EQ, - anon_sym_EQ_PLUS, - anon_sym_DOT_EQ, - anon_sym_EQ_DOT, - [98542] = 3, + STATE(2263), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2267), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [98524] = 5, + ACTIONS(2726), 1, + sym__concat, + STATE(1521), 1, + aux_sym_concatenation_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2717), 2, + ACTIONS(2722), 2, anon_sym_EQ, anon_sym_COLON, - ACTIONS(2719), 11, - sym__concat, + ACTIONS(2724), 10, anon_sym_QMARK_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_COLON_EQ, @@ -114881,14 +115591,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR_LBRACE, - [98564] = 3, + [98551] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2724), 2, + ACTIONS(2729), 2, anon_sym_EQ, anon_sym_COLON, - ACTIONS(2726), 11, + ACTIONS(2731), 11, sym__concat, anon_sym_QMARK_EQ, anon_sym_QMARK_QMARK_EQ, @@ -114900,21 +115610,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR_LBRACE, - [98586] = 7, - ACTIONS(2594), 1, - sym__concat, - ACTIONS(2693), 1, - anon_sym_EQ, - ACTIONS(2697), 1, - anon_sym_COLON, - STATE(1519), 1, - aux_sym_concatenation_repeat1, - STATE(1566), 1, - aux_sym_override_repeat1, + [98573] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2695), 8, + ACTIONS(2733), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(2735), 11, + sym__concat, anon_sym_QMARK_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_COLON_EQ, @@ -114922,15 +115626,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_PLUS, anon_sym_DOT_EQ, anon_sym_EQ_DOT, + anon_sym_LBRACK, anon_sym_LPAREN, - [98616] = 3, + anon_sym_DOLLAR_LBRACE, + [98595] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2728), 2, + ACTIONS(2722), 2, anon_sym_EQ, anon_sym_COLON, - ACTIONS(2730), 11, + ACTIONS(2724), 11, sym__concat, anon_sym_QMARK_EQ, anon_sym_QMARK_QMARK_EQ, @@ -114942,84 +115648,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR_LBRACE, - [98638] = 2, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2732), 12, - sym__newline, + [98617] = 7, + ACTIONS(2607), 1, + sym__concat, + ACTIONS(2706), 1, anon_sym_EQ, + ACTIONS(2710), 1, anon_sym_COLON, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - [98657] = 13, - ACTIONS(2734), 1, - anon_sym_COLON, - ACTIONS(2736), 1, - anon_sym_RBRACE, - ACTIONS(2738), 1, - anon_sym_COMMA, - ACTIONS(2740), 1, - anon_sym_as, - ACTIONS(2742), 1, - anon_sym_if, - ACTIONS(2744), 1, - anon_sym_async, - ACTIONS(2746), 1, - anon_sym_for, - ACTIONS(2748), 1, - anon_sym_and, - ACTIONS(2750), 1, - anon_sym_or, - STATE(1768), 1, - sym_for_in_clause, - STATE(2096), 1, - aux_sym__collection_elements_repeat1, - STATE(2434), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [98698] = 13, - ACTIONS(2734), 1, - anon_sym_COLON, - ACTIONS(2736), 1, - anon_sym_RBRACE, - ACTIONS(2738), 1, - anon_sym_COMMA, - ACTIONS(2740), 1, - anon_sym_as, - ACTIONS(2742), 1, - anon_sym_if, - ACTIONS(2744), 1, - anon_sym_async, - ACTIONS(2746), 1, - anon_sym_for, - ACTIONS(2748), 1, - anon_sym_and, - ACTIONS(2750), 1, - anon_sym_or, - STATE(1768), 1, - sym_for_in_clause, - STATE(2096), 1, - aux_sym__collection_elements_repeat1, - STATE(2394), 1, - sym__comprehension_clauses, + STATE(1519), 1, + aux_sym_concatenation_repeat1, + STATE(1552), 1, + aux_sym_override_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [98739] = 2, + ACTIONS(2708), 8, + anon_sym_QMARK_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_EQ_PLUS, + anon_sym_DOT_EQ, + anon_sym_EQ_DOT, + anon_sym_LPAREN, + [98647] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1958), 12, + ACTIONS(1956), 12, sym__newline, anon_sym_EQ, anon_sym_COLON, @@ -115032,761 +115688,596 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PIPE, - [98758] = 2, + [98666] = 5, + ACTIONS(2607), 1, + sym__concat, + STATE(1519), 1, + aux_sym_concatenation_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2752), 12, - sym__newline, + ACTIONS(2712), 2, anon_sym_EQ, anon_sym_COLON, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - [98777] = 13, - ACTIONS(2734), 1, - anon_sym_COLON, - ACTIONS(2736), 1, - anon_sym_RBRACE, - ACTIONS(2738), 1, - anon_sym_COMMA, - ACTIONS(2740), 1, - anon_sym_as, - ACTIONS(2742), 1, - anon_sym_if, - ACTIONS(2744), 1, - anon_sym_async, - ACTIONS(2746), 1, - anon_sym_for, - ACTIONS(2748), 1, - anon_sym_and, - ACTIONS(2750), 1, - anon_sym_or, - STATE(1768), 1, - sym_for_in_clause, - STATE(2096), 1, - aux_sym__collection_elements_repeat1, - STATE(2370), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [98818] = 13, - ACTIONS(2734), 1, - anon_sym_COLON, - ACTIONS(2736), 1, - anon_sym_RBRACE, - ACTIONS(2738), 1, - anon_sym_COMMA, - ACTIONS(2740), 1, - anon_sym_as, - ACTIONS(2742), 1, - anon_sym_if, - ACTIONS(2744), 1, - anon_sym_async, - ACTIONS(2746), 1, - anon_sym_for, - ACTIONS(2748), 1, - anon_sym_and, - ACTIONS(2750), 1, - anon_sym_or, - STATE(1768), 1, - sym_for_in_clause, - STATE(2096), 1, - aux_sym__collection_elements_repeat1, - STATE(2363), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [98859] = 13, - ACTIONS(2734), 1, + ACTIONS(2714), 8, + anon_sym_QMARK_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_EQ_PLUS, + anon_sym_DOT_EQ, + anon_sym_EQ_DOT, + anon_sym_LPAREN, + [98691] = 13, + ACTIONS(2737), 1, anon_sym_COLON, - ACTIONS(2736), 1, + ACTIONS(2739), 1, anon_sym_RBRACE, - ACTIONS(2738), 1, + ACTIONS(2741), 1, anon_sym_COMMA, - ACTIONS(2740), 1, + ACTIONS(2743), 1, anon_sym_as, - ACTIONS(2742), 1, + ACTIONS(2745), 1, anon_sym_if, - ACTIONS(2744), 1, + ACTIONS(2747), 1, anon_sym_async, - ACTIONS(2746), 1, + ACTIONS(2749), 1, anon_sym_for, - ACTIONS(2748), 1, + ACTIONS(2751), 1, anon_sym_and, - ACTIONS(2750), 1, + ACTIONS(2753), 1, anon_sym_or, - STATE(1768), 1, + STATE(1740), 1, sym_for_in_clause, - STATE(2096), 1, + STATE(2091), 1, aux_sym__collection_elements_repeat1, - STATE(2416), 1, + STATE(2551), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [98900] = 13, - ACTIONS(2734), 1, + [98732] = 13, + ACTIONS(2737), 1, anon_sym_COLON, - ACTIONS(2736), 1, + ACTIONS(2739), 1, anon_sym_RBRACE, - ACTIONS(2738), 1, + ACTIONS(2741), 1, anon_sym_COMMA, - ACTIONS(2740), 1, + ACTIONS(2743), 1, anon_sym_as, - ACTIONS(2742), 1, + ACTIONS(2745), 1, anon_sym_if, - ACTIONS(2744), 1, + ACTIONS(2747), 1, anon_sym_async, - ACTIONS(2746), 1, + ACTIONS(2749), 1, anon_sym_for, - ACTIONS(2748), 1, + ACTIONS(2751), 1, anon_sym_and, - ACTIONS(2750), 1, + ACTIONS(2753), 1, anon_sym_or, - STATE(1768), 1, + STATE(1740), 1, sym_for_in_clause, - STATE(2096), 1, + STATE(2091), 1, aux_sym__collection_elements_repeat1, - STATE(2476), 1, + STATE(2422), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [98941] = 13, - ACTIONS(2734), 1, + [98773] = 13, + ACTIONS(2737), 1, anon_sym_COLON, - ACTIONS(2736), 1, + ACTIONS(2739), 1, anon_sym_RBRACE, - ACTIONS(2738), 1, + ACTIONS(2741), 1, anon_sym_COMMA, - ACTIONS(2740), 1, + ACTIONS(2743), 1, anon_sym_as, - ACTIONS(2742), 1, + ACTIONS(2745), 1, anon_sym_if, - ACTIONS(2744), 1, + ACTIONS(2747), 1, anon_sym_async, - ACTIONS(2746), 1, + ACTIONS(2749), 1, anon_sym_for, - ACTIONS(2748), 1, + ACTIONS(2751), 1, anon_sym_and, - ACTIONS(2750), 1, + ACTIONS(2753), 1, anon_sym_or, - STATE(1768), 1, + STATE(1740), 1, sym_for_in_clause, - STATE(2096), 1, + STATE(2091), 1, aux_sym__collection_elements_repeat1, - STATE(2392), 1, + STATE(2445), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [98982] = 5, - ACTIONS(2594), 1, - sym__concat, - STATE(1519), 1, - aux_sym_concatenation_repeat1, + [98814] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2707), 2, + ACTIONS(2755), 12, + sym__newline, anon_sym_EQ, anon_sym_COLON, - ACTIONS(2709), 8, - anon_sym_QMARK_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_COLON_EQ, - anon_sym_PLUS_EQ, - anon_sym_EQ_PLUS, - anon_sym_DOT_EQ, - anon_sym_EQ_DOT, - anon_sym_LPAREN, - [99007] = 13, - ACTIONS(2734), 1, - anon_sym_COLON, - ACTIONS(2736), 1, - anon_sym_RBRACE, - ACTIONS(2738), 1, - anon_sym_COMMA, - ACTIONS(2740), 1, - anon_sym_as, - ACTIONS(2742), 1, - anon_sym_if, - ACTIONS(2744), 1, - anon_sym_async, - ACTIONS(2746), 1, - anon_sym_for, - ACTIONS(2748), 1, - anon_sym_and, - ACTIONS(2750), 1, - anon_sym_or, - STATE(1768), 1, - sym_for_in_clause, - STATE(2096), 1, - aux_sym__collection_elements_repeat1, - STATE(2542), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [99048] = 12, - ACTIONS(2754), 1, - anon_sym_RPAREN, - ACTIONS(2756), 1, - anon_sym_COMMA, - ACTIONS(2758), 1, - anon_sym_as, - ACTIONS(2760), 1, - anon_sym_if, - ACTIONS(2762), 1, - anon_sym_async, - ACTIONS(2764), 1, - anon_sym_for, - ACTIONS(2766), 1, - anon_sym_and, - ACTIONS(2768), 1, - anon_sym_or, - STATE(1748), 1, - sym_for_in_clause, - STATE(2199), 1, - aux_sym_argument_list_repeat1, - STATE(2435), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [99086] = 9, - ACTIONS(2774), 1, - anon_sym_COMMA, - ACTIONS(2776), 1, - anon_sym_as, - ACTIONS(2778), 1, - anon_sym_if, - ACTIONS(2780), 1, - anon_sym_and, - ACTIONS(2782), 1, - anon_sym_or, - STATE(1992), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2772), 2, - sym__newline, anon_sym_SEMI, - ACTIONS(2770), 3, - anon_sym_COLON, anon_sym_DOT, - anon_sym_PIPE, - [99118] = 5, - ACTIONS(2693), 1, - anon_sym_EQ, - ACTIONS(2697), 1, - anon_sym_COLON, - STATE(1566), 1, - aux_sym_override_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2695), 8, - anon_sym_QMARK_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_COLON_EQ, - anon_sym_PLUS_EQ, - anon_sym_EQ_PLUS, - anon_sym_DOT_EQ, - anon_sym_EQ_DOT, - anon_sym_LPAREN, - [99142] = 5, - ACTIONS(2707), 1, - anon_sym_EQ, - ACTIONS(2784), 1, - anon_sym_COLON, - STATE(1541), 1, - aux_sym_override_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2709), 8, - anon_sym_QMARK_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_COLON_EQ, - anon_sym_PLUS_EQ, - anon_sym_EQ_PLUS, - anon_sym_DOT_EQ, - anon_sym_EQ_DOT, - anon_sym_LPAREN, - [99166] = 5, - ACTIONS(2697), 1, - anon_sym_COLON, - ACTIONS(2787), 1, - anon_sym_EQ, - STATE(1541), 1, - aux_sym_override_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2789), 8, - anon_sym_QMARK_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_COLON_EQ, - anon_sym_PLUS_EQ, - anon_sym_EQ_PLUS, - anon_sym_DOT_EQ, - anon_sym_EQ_DOT, - anon_sym_LPAREN, - [99190] = 5, - ACTIONS(2780), 1, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_and, - ACTIONS(2782), 1, anon_sym_or, - ACTIONS(2793), 1, - anon_sym_as, + anon_sym_PIPE, + [98833] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2791), 8, + ACTIONS(2757), 12, sym__newline, anon_sym_EQ, anon_sym_COLON, anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, anon_sym_if, + anon_sym_and, + anon_sym_or, anon_sym_PIPE, - [99214] = 12, - ACTIONS(2758), 1, + [98852] = 13, + ACTIONS(2737), 1, + anon_sym_COLON, + ACTIONS(2739), 1, + anon_sym_RBRACE, + ACTIONS(2741), 1, + anon_sym_COMMA, + ACTIONS(2743), 1, anon_sym_as, - ACTIONS(2760), 1, + ACTIONS(2745), 1, anon_sym_if, - ACTIONS(2762), 1, + ACTIONS(2747), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2749), 1, anon_sym_for, - ACTIONS(2766), 1, + ACTIONS(2751), 1, anon_sym_and, - ACTIONS(2768), 1, + ACTIONS(2753), 1, anon_sym_or, - ACTIONS(2796), 1, - anon_sym_RPAREN, - ACTIONS(2798), 1, - anon_sym_COMMA, - STATE(1748), 1, + STATE(1740), 1, sym_for_in_clause, - STATE(2154), 1, + STATE(2091), 1, aux_sym__collection_elements_repeat1, - STATE(2371), 1, + STATE(2521), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [99252] = 12, - ACTIONS(2736), 1, - anon_sym_RBRACK, - ACTIONS(2800), 1, + [98893] = 13, + ACTIONS(2737), 1, + anon_sym_COLON, + ACTIONS(2739), 1, + anon_sym_RBRACE, + ACTIONS(2741), 1, anon_sym_COMMA, - ACTIONS(2802), 1, + ACTIONS(2743), 1, anon_sym_as, - ACTIONS(2804), 1, + ACTIONS(2745), 1, anon_sym_if, - ACTIONS(2806), 1, + ACTIONS(2747), 1, anon_sym_async, - ACTIONS(2808), 1, + ACTIONS(2749), 1, anon_sym_for, - ACTIONS(2810), 1, + ACTIONS(2751), 1, anon_sym_and, - ACTIONS(2812), 1, + ACTIONS(2753), 1, anon_sym_or, - STATE(1767), 1, + STATE(1740), 1, sym_for_in_clause, - STATE(2214), 1, + STATE(2091), 1, aux_sym__collection_elements_repeat1, - STATE(2412), 1, + STATE(2367), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [99290] = 4, - ACTIONS(2780), 1, + [98934] = 13, + ACTIONS(2737), 1, + anon_sym_COLON, + ACTIONS(2739), 1, + anon_sym_RBRACE, + ACTIONS(2741), 1, + anon_sym_COMMA, + ACTIONS(2743), 1, + anon_sym_as, + ACTIONS(2745), 1, + anon_sym_if, + ACTIONS(2747), 1, + anon_sym_async, + ACTIONS(2749), 1, + anon_sym_for, + ACTIONS(2751), 1, anon_sym_and, - ACTIONS(2782), 1, + ACTIONS(2753), 1, anon_sym_or, + STATE(1740), 1, + sym_for_in_clause, + STATE(2091), 1, + aux_sym__collection_elements_repeat1, + STATE(2401), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2814), 9, - sym__newline, - anon_sym_EQ, + [98975] = 13, + ACTIONS(2737), 1, anon_sym_COLON, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(2739), 1, + anon_sym_RBRACE, + ACTIONS(2741), 1, anon_sym_COMMA, + ACTIONS(2743), 1, anon_sym_as, + ACTIONS(2745), 1, anon_sym_if, - anon_sym_PIPE, - [99312] = 12, - ACTIONS(2758), 1, - anon_sym_as, - ACTIONS(2760), 1, - anon_sym_if, - ACTIONS(2762), 1, + ACTIONS(2747), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2749), 1, anon_sym_for, - ACTIONS(2766), 1, + ACTIONS(2751), 1, anon_sym_and, - ACTIONS(2768), 1, + ACTIONS(2753), 1, anon_sym_or, - ACTIONS(2798), 1, - anon_sym_COMMA, - ACTIONS(2816), 1, - anon_sym_RPAREN, - STATE(1748), 1, + STATE(1740), 1, sym_for_in_clause, - STATE(2154), 1, + STATE(2091), 1, aux_sym__collection_elements_repeat1, - STATE(2544), 1, + STATE(2397), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [99350] = 12, - ACTIONS(2758), 1, + [99016] = 13, + ACTIONS(2737), 1, + anon_sym_COLON, + ACTIONS(2739), 1, + anon_sym_RBRACE, + ACTIONS(2741), 1, + anon_sym_COMMA, + ACTIONS(2743), 1, anon_sym_as, - ACTIONS(2760), 1, + ACTIONS(2745), 1, anon_sym_if, - ACTIONS(2762), 1, + ACTIONS(2747), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2749), 1, anon_sym_for, - ACTIONS(2766), 1, + ACTIONS(2751), 1, anon_sym_and, - ACTIONS(2768), 1, + ACTIONS(2753), 1, anon_sym_or, - ACTIONS(2818), 1, + STATE(1740), 1, + sym_for_in_clause, + STATE(2091), 1, + aux_sym__collection_elements_repeat1, + STATE(2376), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [99057] = 12, + ACTIONS(2759), 1, anon_sym_RPAREN, - ACTIONS(2820), 1, + ACTIONS(2761), 1, anon_sym_COMMA, - STATE(1748), 1, + ACTIONS(2763), 1, + anon_sym_as, + ACTIONS(2765), 1, + anon_sym_if, + ACTIONS(2767), 1, + anon_sym_async, + ACTIONS(2769), 1, + anon_sym_for, + ACTIONS(2771), 1, + anon_sym_and, + ACTIONS(2773), 1, + anon_sym_or, + STATE(1749), 1, sym_for_in_clause, - STATE(2020), 1, + STATE(2130), 1, aux_sym_argument_list_repeat1, - STATE(2544), 1, + STATE(2405), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [99388] = 7, - ACTIONS(2822), 1, - anon_sym_DQUOTE, - ACTIONS(2824), 1, - aux_sym_string_token1, - ACTIONS(2828), 1, - anon_sym_DOLLAR_LBRACE_AT, - ACTIONS(2830), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - STATE(1570), 3, - sym_inline_python, - sym_variable_expansion, - aux_sym_string_repeat1, - ACTIONS(2826), 4, - aux_sym_string_token2, - anon_sym_DOLLARBB_ENV_PASSTHROUGH, - anon_sym_DOLLARBB_ENV_PASSTHROUGH_ADDITIONS, - anon_sym_DOLLAR, - [99416] = 12, - ACTIONS(2758), 1, + [99095] = 12, + ACTIONS(2739), 1, + anon_sym_RBRACK, + ACTIONS(2775), 1, + anon_sym_COMMA, + ACTIONS(2777), 1, anon_sym_as, - ACTIONS(2760), 1, + ACTIONS(2779), 1, anon_sym_if, - ACTIONS(2762), 1, + ACTIONS(2781), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2783), 1, anon_sym_for, - ACTIONS(2766), 1, + ACTIONS(2785), 1, anon_sym_and, - ACTIONS(2768), 1, + ACTIONS(2787), 1, anon_sym_or, - ACTIONS(2832), 1, - anon_sym_RPAREN, - ACTIONS(2834), 1, - anon_sym_COMMA, - STATE(1748), 1, + STATE(1773), 1, sym_for_in_clause, - STATE(2154), 1, + STATE(2214), 1, aux_sym__collection_elements_repeat1, - STATE(2397), 1, + STATE(2410), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [99454] = 6, - ACTIONS(2776), 1, + [99133] = 12, + ACTIONS(2739), 1, + anon_sym_RBRACK, + ACTIONS(2775), 1, + anon_sym_COMMA, + ACTIONS(2777), 1, anon_sym_as, - ACTIONS(2778), 1, + ACTIONS(2779), 1, anon_sym_if, - ACTIONS(2780), 1, + ACTIONS(2781), 1, + anon_sym_async, + ACTIONS(2783), 1, + anon_sym_for, + ACTIONS(2785), 1, anon_sym_and, - ACTIONS(2782), 1, + ACTIONS(2787), 1, anon_sym_or, + STATE(1773), 1, + sym_for_in_clause, + STATE(2214), 1, + aux_sym__collection_elements_repeat1, + STATE(2403), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2837), 7, - sym__newline, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - [99480] = 12, - ACTIONS(2758), 1, + [99171] = 12, + ACTIONS(2763), 1, anon_sym_as, - ACTIONS(2760), 1, + ACTIONS(2765), 1, anon_sym_if, - ACTIONS(2762), 1, + ACTIONS(2767), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2769), 1, anon_sym_for, - ACTIONS(2766), 1, + ACTIONS(2771), 1, anon_sym_and, - ACTIONS(2768), 1, + ACTIONS(2773), 1, anon_sym_or, - ACTIONS(2798), 1, - anon_sym_COMMA, - ACTIONS(2839), 1, + ACTIONS(2789), 1, anon_sym_RPAREN, - STATE(1748), 1, + ACTIONS(2791), 1, + anon_sym_COMMA, + STATE(1749), 1, sym_for_in_clause, - STATE(2154), 1, + STATE(2157), 1, aux_sym__collection_elements_repeat1, - STATE(2413), 1, + STATE(2400), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [99518] = 12, - ACTIONS(2736), 1, - anon_sym_RBRACK, - ACTIONS(2800), 1, - anon_sym_COMMA, - ACTIONS(2802), 1, + [99209] = 12, + ACTIONS(2763), 1, anon_sym_as, - ACTIONS(2804), 1, + ACTIONS(2765), 1, anon_sym_if, - ACTIONS(2806), 1, + ACTIONS(2767), 1, anon_sym_async, - ACTIONS(2808), 1, + ACTIONS(2769), 1, anon_sym_for, - ACTIONS(2810), 1, + ACTIONS(2771), 1, anon_sym_and, - ACTIONS(2812), 1, + ACTIONS(2773), 1, anon_sym_or, - STATE(1767), 1, + ACTIONS(2791), 1, + anon_sym_COMMA, + ACTIONS(2793), 1, + anon_sym_RPAREN, + STATE(1749), 1, sym_for_in_clause, - STATE(2214), 1, + STATE(2157), 1, aux_sym__collection_elements_repeat1, - STATE(2436), 1, + STATE(2364), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [99556] = 12, - ACTIONS(2758), 1, + [99247] = 9, + ACTIONS(2799), 1, + anon_sym_COMMA, + ACTIONS(2801), 1, + anon_sym_as, + ACTIONS(2803), 1, + anon_sym_if, + ACTIONS(2805), 1, + anon_sym_and, + ACTIONS(2807), 1, + anon_sym_or, + STATE(1990), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2797), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(2795), 3, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_PIPE, + [99279] = 12, + ACTIONS(2763), 1, anon_sym_as, - ACTIONS(2760), 1, + ACTIONS(2765), 1, anon_sym_if, - ACTIONS(2762), 1, + ACTIONS(2767), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2769), 1, anon_sym_for, - ACTIONS(2766), 1, + ACTIONS(2771), 1, anon_sym_and, - ACTIONS(2768), 1, + ACTIONS(2773), 1, anon_sym_or, - ACTIONS(2841), 1, - anon_sym_RPAREN, - ACTIONS(2843), 1, + ACTIONS(2791), 1, anon_sym_COMMA, - STATE(1748), 1, + ACTIONS(2809), 1, + anon_sym_RPAREN, + STATE(1749), 1, sym_for_in_clause, - STATE(2137), 1, - aux_sym_argument_list_repeat1, - STATE(2397), 1, + STATE(2157), 1, + aux_sym__collection_elements_repeat1, + STATE(2451), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [99594] = 7, - ACTIONS(2845), 1, + [99317] = 7, + ACTIONS(2811), 1, anon_sym_DQUOTE, - ACTIONS(2847), 1, + ACTIONS(2813), 1, aux_sym_string_token1, - ACTIONS(2853), 1, + ACTIONS(2817), 1, anon_sym_DOLLAR_LBRACE_AT, - ACTIONS(2856), 1, + ACTIONS(2819), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2592), 2, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - STATE(1555), 3, + STATE(1549), 3, sym_inline_python, sym_variable_expansion, aux_sym_string_repeat1, - ACTIONS(2850), 4, + ACTIONS(2815), 4, aux_sym_string_token2, anon_sym_DOLLARBB_ENV_PASSTHROUGH, anon_sym_DOLLARBB_ENV_PASSTHROUGH_ADDITIONS, anon_sym_DOLLAR, - [99622] = 12, - ACTIONS(2758), 1, + [99345] = 12, + ACTIONS(2763), 1, anon_sym_as, - ACTIONS(2760), 1, + ACTIONS(2765), 1, anon_sym_if, - ACTIONS(2762), 1, + ACTIONS(2767), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2769), 1, anon_sym_for, - ACTIONS(2766), 1, + ACTIONS(2771), 1, anon_sym_and, - ACTIONS(2768), 1, + ACTIONS(2773), 1, anon_sym_or, - ACTIONS(2859), 1, + ACTIONS(2821), 1, anon_sym_RPAREN, - ACTIONS(2861), 1, + ACTIONS(2823), 1, anon_sym_COMMA, - STATE(1748), 1, + STATE(1749), 1, sym_for_in_clause, - STATE(2093), 1, + STATE(2203), 1, aux_sym_argument_list_repeat1, - STATE(2360), 1, + STATE(2451), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [99660] = 12, - ACTIONS(2758), 1, + [99383] = 12, + ACTIONS(2739), 1, + anon_sym_RBRACK, + ACTIONS(2775), 1, + anon_sym_COMMA, + ACTIONS(2777), 1, anon_sym_as, - ACTIONS(2760), 1, + ACTIONS(2779), 1, anon_sym_if, - ACTIONS(2762), 1, + ACTIONS(2781), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2783), 1, anon_sym_for, - ACTIONS(2766), 1, + ACTIONS(2785), 1, anon_sym_and, - ACTIONS(2768), 1, + ACTIONS(2787), 1, anon_sym_or, - ACTIONS(2798), 1, - anon_sym_COMMA, - ACTIONS(2832), 1, - anon_sym_RPAREN, - STATE(1748), 1, + STATE(1773), 1, sym_for_in_clause, - STATE(2154), 1, + STATE(2214), 1, aux_sym__collection_elements_repeat1, - STATE(2397), 1, + STATE(2378), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [99698] = 6, - ACTIONS(2776), 1, - anon_sym_as, - ACTIONS(2778), 1, - anon_sym_if, - ACTIONS(2780), 1, - anon_sym_and, - ACTIONS(2782), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2863), 7, - sym__newline, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - [99724] = 12, - ACTIONS(2758), 1, + [99421] = 12, + ACTIONS(2763), 1, anon_sym_as, - ACTIONS(2760), 1, + ACTIONS(2765), 1, anon_sym_if, - ACTIONS(2762), 1, + ACTIONS(2767), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2769), 1, anon_sym_for, - ACTIONS(2766), 1, + ACTIONS(2771), 1, anon_sym_and, - ACTIONS(2768), 1, + ACTIONS(2773), 1, anon_sym_or, - ACTIONS(2798), 1, + ACTIONS(2791), 1, anon_sym_COMMA, - ACTIONS(2865), 1, + ACTIONS(2825), 1, anon_sym_RPAREN, - STATE(1748), 1, + STATE(1749), 1, sym_for_in_clause, - STATE(2154), 1, + STATE(2157), 1, aux_sym__collection_elements_repeat1, - STATE(2395), 1, + STATE(2405), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [99762] = 12, - ACTIONS(2758), 1, - anon_sym_as, - ACTIONS(2760), 1, - anon_sym_if, - ACTIONS(2762), 1, - anon_sym_async, - ACTIONS(2764), 1, - anon_sym_for, - ACTIONS(2766), 1, - anon_sym_and, - ACTIONS(2768), 1, - anon_sym_or, - ACTIONS(2867), 1, - anon_sym_RPAREN, - ACTIONS(2869), 1, - anon_sym_COMMA, - STATE(1748), 1, - sym_for_in_clause, - STATE(2193), 1, - aux_sym_argument_list_repeat1, - STATE(2395), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, + [99459] = 7, + ACTIONS(2827), 1, + anon_sym_DQUOTE, + ACTIONS(2829), 1, + aux_sym_string_token1, + ACTIONS(2835), 1, + anon_sym_DOLLAR_LBRACE_AT, + ACTIONS(2838), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [99800] = 6, - ACTIONS(2776), 1, + STATE(1549), 3, + sym_inline_python, + sym_variable_expansion, + aux_sym_string_repeat1, + ACTIONS(2832), 4, + aux_sym_string_token2, + anon_sym_DOLLARBB_ENV_PASSTHROUGH, + anon_sym_DOLLARBB_ENV_PASSTHROUGH_ADDITIONS, + anon_sym_DOLLAR, + [99487] = 6, + ACTIONS(2801), 1, anon_sym_as, - ACTIONS(2778), 1, + ACTIONS(2803), 1, anon_sym_if, - ACTIONS(2780), 1, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(2782), 1, + ACTIONS(2807), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2871), 7, + ACTIONS(2841), 7, sym__newline, anon_sym_EQ, anon_sym_COLON, @@ -115794,43 +116285,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_COMMA, anon_sym_PIPE, - [99826] = 12, - ACTIONS(2758), 1, + [99513] = 12, + ACTIONS(2763), 1, anon_sym_as, - ACTIONS(2760), 1, + ACTIONS(2765), 1, anon_sym_if, - ACTIONS(2762), 1, + ACTIONS(2767), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2769), 1, anon_sym_for, - ACTIONS(2766), 1, + ACTIONS(2771), 1, anon_sym_and, - ACTIONS(2768), 1, + ACTIONS(2773), 1, anon_sym_or, - ACTIONS(2798), 1, - anon_sym_COMMA, - ACTIONS(2873), 1, + ACTIONS(2825), 1, anon_sym_RPAREN, - STATE(1748), 1, + ACTIONS(2843), 1, + anon_sym_COMMA, + STATE(1749), 1, sym_for_in_clause, - STATE(2154), 1, + STATE(2157), 1, aux_sym__collection_elements_repeat1, - STATE(2360), 1, + STATE(2405), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [99864] = 5, - ACTIONS(2697), 1, + [99551] = 5, + ACTIONS(2710), 1, anon_sym_COLON, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_EQ, - STATE(1542), 1, + STATE(1573), 1, aux_sym_override_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2877), 8, + ACTIONS(2848), 8, anon_sym_QMARK_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_COLON_EQ, @@ -115839,69 +116330,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_EQ, anon_sym_EQ_DOT, anon_sym_LPAREN, - [99888] = 12, - ACTIONS(2758), 1, - anon_sym_as, - ACTIONS(2760), 1, - anon_sym_if, - ACTIONS(2762), 1, - anon_sym_async, - ACTIONS(2764), 1, - anon_sym_for, - ACTIONS(2766), 1, - anon_sym_and, - ACTIONS(2768), 1, - anon_sym_or, - ACTIONS(2879), 1, - anon_sym_RPAREN, - ACTIONS(2881), 1, - anon_sym_COMMA, - STATE(1748), 1, - sym_for_in_clause, - STATE(2039), 1, - aux_sym_argument_list_repeat1, - STATE(2371), 1, - sym__comprehension_clauses, + [99575] = 5, + ACTIONS(2710), 1, + anon_sym_COLON, + ACTIONS(2846), 1, + anon_sym_EQ, + STATE(1572), 1, + aux_sym_override_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [99926] = 12, - ACTIONS(2758), 1, + ACTIONS(2848), 8, + anon_sym_QMARK_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_EQ_PLUS, + anon_sym_DOT_EQ, + anon_sym_EQ_DOT, + anon_sym_LPAREN, + [99599] = 12, + ACTIONS(2739), 1, + anon_sym_RBRACK, + ACTIONS(2775), 1, + anon_sym_COMMA, + ACTIONS(2777), 1, anon_sym_as, - ACTIONS(2760), 1, + ACTIONS(2779), 1, anon_sym_if, - ACTIONS(2762), 1, + ACTIONS(2781), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2783), 1, anon_sym_for, - ACTIONS(2766), 1, + ACTIONS(2785), 1, anon_sym_and, - ACTIONS(2768), 1, + ACTIONS(2787), 1, anon_sym_or, - ACTIONS(2883), 1, - anon_sym_RPAREN, - ACTIONS(2885), 1, - anon_sym_COMMA, - STATE(1748), 1, + STATE(1773), 1, sym_for_in_clause, - STATE(2178), 1, - aux_sym_argument_list_repeat1, - STATE(2413), 1, + STATE(2214), 1, + aux_sym__collection_elements_repeat1, + STATE(2542), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [99964] = 5, - ACTIONS(2697), 1, - anon_sym_COLON, - ACTIONS(2875), 1, + [99637] = 5, + ACTIONS(2706), 1, anon_sym_EQ, - STATE(1541), 1, + ACTIONS(2710), 1, + anon_sym_COLON, + STATE(1552), 1, aux_sym_override_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2877), 8, + ACTIONS(2708), 8, anon_sym_QMARK_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_COLON_EQ, @@ -115910,190 +116394,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_EQ, anon_sym_EQ_DOT, anon_sym_LPAREN, - [99988] = 12, - ACTIONS(2758), 1, + [99661] = 5, + ACTIONS(2805), 1, + anon_sym_and, + ACTIONS(2807), 1, + anon_sym_or, + ACTIONS(2852), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2850), 8, + sym__newline, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_if, + anon_sym_PIPE, + [99685] = 12, + ACTIONS(2739), 1, + anon_sym_RBRACK, + ACTIONS(2775), 1, + anon_sym_COMMA, + ACTIONS(2777), 1, anon_sym_as, - ACTIONS(2760), 1, + ACTIONS(2779), 1, anon_sym_if, - ACTIONS(2762), 1, + ACTIONS(2781), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2783), 1, anon_sym_for, - ACTIONS(2766), 1, + ACTIONS(2785), 1, anon_sym_and, - ACTIONS(2768), 1, + ACTIONS(2787), 1, anon_sym_or, - ACTIONS(2798), 1, - anon_sym_COMMA, - ACTIONS(2887), 1, - anon_sym_RPAREN, - STATE(1748), 1, + STATE(1773), 1, sym_for_in_clause, - STATE(2154), 1, + STATE(2214), 1, aux_sym__collection_elements_repeat1, - STATE(2477), 1, + STATE(2363), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [100026] = 12, - ACTIONS(2736), 1, - anon_sym_RBRACK, - ACTIONS(2800), 1, + [99723] = 6, + ACTIONS(2801), 1, + anon_sym_as, + ACTIONS(2803), 1, + anon_sym_if, + ACTIONS(2805), 1, + anon_sym_and, + ACTIONS(2807), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2855), 7, + sym__newline, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COMMA, - ACTIONS(2802), 1, + anon_sym_PIPE, + [99749] = 12, + ACTIONS(2763), 1, anon_sym_as, - ACTIONS(2804), 1, + ACTIONS(2765), 1, anon_sym_if, - ACTIONS(2806), 1, + ACTIONS(2767), 1, anon_sym_async, - ACTIONS(2808), 1, + ACTIONS(2769), 1, anon_sym_for, - ACTIONS(2810), 1, + ACTIONS(2771), 1, anon_sym_and, - ACTIONS(2812), 1, + ACTIONS(2773), 1, anon_sym_or, - STATE(1767), 1, + ACTIONS(2857), 1, + anon_sym_RPAREN, + ACTIONS(2859), 1, + anon_sym_COMMA, + STATE(1749), 1, sym_for_in_clause, - STATE(2214), 1, - aux_sym__collection_elements_repeat1, - STATE(2359), 1, + STATE(2187), 1, + aux_sym_argument_list_repeat1, + STATE(2419), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [100064] = 12, - ACTIONS(2758), 1, + [99787] = 6, + ACTIONS(2801), 1, + anon_sym_as, + ACTIONS(2803), 1, + anon_sym_if, + ACTIONS(2805), 1, + anon_sym_and, + ACTIONS(2807), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2861), 7, + sym__newline, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_PIPE, + [99813] = 12, + ACTIONS(2763), 1, anon_sym_as, - ACTIONS(2760), 1, + ACTIONS(2765), 1, anon_sym_if, - ACTIONS(2762), 1, + ACTIONS(2767), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2769), 1, anon_sym_for, - ACTIONS(2766), 1, + ACTIONS(2771), 1, anon_sym_and, - ACTIONS(2768), 1, + ACTIONS(2773), 1, anon_sym_or, - ACTIONS(2798), 1, + ACTIONS(2791), 1, anon_sym_COMMA, - ACTIONS(2889), 1, + ACTIONS(2863), 1, anon_sym_RPAREN, - STATE(1748), 1, + STATE(1749), 1, sym_for_in_clause, - STATE(2154), 1, + STATE(2157), 1, aux_sym__collection_elements_repeat1, - STATE(2435), 1, + STATE(2419), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [100102] = 7, - ACTIONS(2828), 1, + [99851] = 7, + ACTIONS(2817), 1, anon_sym_DOLLAR_LBRACE_AT, - ACTIONS(2830), 1, + ACTIONS(2819), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2891), 1, + ACTIONS(2865), 1, anon_sym_DQUOTE, - ACTIONS(2893), 1, + ACTIONS(2867), 1, aux_sym_string_token1, - ACTIONS(2592), 2, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - STATE(1555), 3, + STATE(1545), 3, sym_inline_python, sym_variable_expansion, aux_sym_string_repeat1, - ACTIONS(2895), 4, + ACTIONS(2869), 4, aux_sym_string_token2, anon_sym_DOLLARBB_ENV_PASSTHROUGH, anon_sym_DOLLARBB_ENV_PASSTHROUGH_ADDITIONS, anon_sym_DOLLAR, - [100130] = 12, - ACTIONS(2736), 1, - anon_sym_RBRACK, - ACTIONS(2800), 1, - anon_sym_COMMA, - ACTIONS(2802), 1, + [99879] = 12, + ACTIONS(2763), 1, anon_sym_as, - ACTIONS(2804), 1, + ACTIONS(2765), 1, anon_sym_if, - ACTIONS(2806), 1, + ACTIONS(2767), 1, anon_sym_async, - ACTIONS(2808), 1, + ACTIONS(2769), 1, anon_sym_for, - ACTIONS(2810), 1, + ACTIONS(2771), 1, anon_sym_and, - ACTIONS(2812), 1, + ACTIONS(2773), 1, anon_sym_or, - STATE(1767), 1, + ACTIONS(2871), 1, + anon_sym_RPAREN, + ACTIONS(2873), 1, + anon_sym_COMMA, + STATE(1749), 1, sym_for_in_clause, - STATE(2214), 1, - aux_sym__collection_elements_repeat1, - STATE(2399), 1, + STATE(2228), 1, + aux_sym_argument_list_repeat1, + STATE(2400), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [100168] = 12, - ACTIONS(2758), 1, + [99917] = 12, + ACTIONS(2763), 1, anon_sym_as, - ACTIONS(2760), 1, + ACTIONS(2765), 1, anon_sym_if, - ACTIONS(2762), 1, + ACTIONS(2767), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2769), 1, anon_sym_for, - ACTIONS(2766), 1, + ACTIONS(2771), 1, anon_sym_and, - ACTIONS(2768), 1, + ACTIONS(2773), 1, anon_sym_or, - ACTIONS(2897), 1, + ACTIONS(2875), 1, anon_sym_RPAREN, - ACTIONS(2899), 1, + ACTIONS(2877), 1, anon_sym_COMMA, - STATE(1748), 1, + STATE(1749), 1, sym_for_in_clause, - STATE(2120), 1, + STATE(2089), 1, aux_sym_argument_list_repeat1, - STATE(2477), 1, + STATE(2364), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [100206] = 12, - ACTIONS(2736), 1, + [99955] = 3, + ACTIONS(2805), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2755), 10, + sym__newline, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_or, + anon_sym_PIPE, + [99975] = 12, + ACTIONS(2739), 1, anon_sym_RBRACK, - ACTIONS(2800), 1, + ACTIONS(2775), 1, anon_sym_COMMA, - ACTIONS(2802), 1, + ACTIONS(2777), 1, anon_sym_as, - ACTIONS(2804), 1, + ACTIONS(2779), 1, anon_sym_if, - ACTIONS(2806), 1, + ACTIONS(2781), 1, anon_sym_async, - ACTIONS(2808), 1, + ACTIONS(2783), 1, anon_sym_for, - ACTIONS(2810), 1, + ACTIONS(2785), 1, anon_sym_and, - ACTIONS(2812), 1, + ACTIONS(2787), 1, anon_sym_or, - STATE(1767), 1, + STATE(1773), 1, sym_for_in_clause, STATE(2214), 1, aux_sym__collection_elements_repeat1, - STATE(2545), 1, + STATE(2418), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [100013] = 12, + ACTIONS(2763), 1, + anon_sym_as, + ACTIONS(2765), 1, + anon_sym_if, + ACTIONS(2767), 1, + anon_sym_async, + ACTIONS(2769), 1, + anon_sym_for, + ACTIONS(2771), 1, + anon_sym_and, + ACTIONS(2773), 1, + anon_sym_or, + ACTIONS(2791), 1, + anon_sym_COMMA, + ACTIONS(2879), 1, + anon_sym_RPAREN, + STATE(1749), 1, + sym_for_in_clause, + STATE(2157), 1, + aux_sym__collection_elements_repeat1, + STATE(2522), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [100051] = 12, + ACTIONS(2763), 1, + anon_sym_as, + ACTIONS(2765), 1, + anon_sym_if, + ACTIONS(2767), 1, + anon_sym_async, + ACTIONS(2769), 1, + anon_sym_for, + ACTIONS(2771), 1, + anon_sym_and, + ACTIONS(2773), 1, + anon_sym_or, + ACTIONS(2881), 1, + anon_sym_RPAREN, + ACTIONS(2883), 1, + anon_sym_COMMA, + STATE(1749), 1, + sym_for_in_clause, + STATE(2124), 1, + aux_sym_argument_list_repeat1, + STATE(2522), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [100244] = 3, - ACTIONS(2780), 1, + [100089] = 4, + ACTIONS(2805), 1, anon_sym_and, + ACTIONS(2807), 1, + anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2752), 10, + ACTIONS(2885), 9, sym__newline, anon_sym_EQ, anon_sym_COLON, @@ -116102,118 +116716,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_or, anon_sym_PIPE, - [100264] = 12, - ACTIONS(2736), 1, - anon_sym_RBRACK, - ACTIONS(2800), 1, + [100111] = 12, + ACTIONS(2763), 1, + anon_sym_as, + ACTIONS(2765), 1, + anon_sym_if, + ACTIONS(2767), 1, + anon_sym_async, + ACTIONS(2769), 1, + anon_sym_for, + ACTIONS(2771), 1, + anon_sym_and, + ACTIONS(2773), 1, + anon_sym_or, + ACTIONS(2887), 1, + anon_sym_RPAREN, + ACTIONS(2889), 1, anon_sym_COMMA, - ACTIONS(2802), 1, + STATE(1749), 1, + sym_for_in_clause, + STATE(2034), 1, + aux_sym_argument_list_repeat1, + STATE(2574), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [100149] = 12, + ACTIONS(2763), 1, anon_sym_as, - ACTIONS(2804), 1, + ACTIONS(2765), 1, anon_sym_if, - ACTIONS(2806), 1, + ACTIONS(2767), 1, anon_sym_async, - ACTIONS(2808), 1, + ACTIONS(2769), 1, anon_sym_for, - ACTIONS(2810), 1, + ACTIONS(2771), 1, anon_sym_and, - ACTIONS(2812), 1, + ACTIONS(2773), 1, anon_sym_or, - STATE(1767), 1, + ACTIONS(2791), 1, + anon_sym_COMMA, + ACTIONS(2891), 1, + anon_sym_RPAREN, + STATE(1749), 1, sym_for_in_clause, - STATE(2214), 1, + STATE(2157), 1, aux_sym__collection_elements_repeat1, - STATE(2478), 1, + STATE(2377), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [100302] = 12, - ACTIONS(2736), 1, + [100187] = 5, + ACTIONS(2710), 1, + anon_sym_COLON, + ACTIONS(2893), 1, + anon_sym_EQ, + STATE(1573), 1, + aux_sym_override_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2895), 8, + anon_sym_QMARK_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_EQ_PLUS, + anon_sym_DOT_EQ, + anon_sym_EQ_DOT, + anon_sym_LPAREN, + [100211] = 5, + ACTIONS(2712), 1, + anon_sym_EQ, + ACTIONS(2897), 1, + anon_sym_COLON, + STATE(1573), 1, + aux_sym_override_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2714), 8, + anon_sym_QMARK_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_EQ_PLUS, + anon_sym_DOT_EQ, + anon_sym_EQ_DOT, + anon_sym_LPAREN, + [100235] = 12, + ACTIONS(2739), 1, anon_sym_RBRACK, - ACTIONS(2800), 1, + ACTIONS(2775), 1, anon_sym_COMMA, - ACTIONS(2802), 1, + ACTIONS(2777), 1, anon_sym_as, - ACTIONS(2804), 1, + ACTIONS(2779), 1, anon_sym_if, - ACTIONS(2806), 1, + ACTIONS(2781), 1, anon_sym_async, - ACTIONS(2808), 1, + ACTIONS(2783), 1, anon_sym_for, - ACTIONS(2810), 1, + ACTIONS(2785), 1, anon_sym_and, - ACTIONS(2812), 1, + ACTIONS(2787), 1, anon_sym_or, - STATE(1767), 1, + STATE(1773), 1, sym_for_in_clause, STATE(2214), 1, aux_sym__collection_elements_repeat1, - STATE(2401), 1, + STATE(2523), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [100273] = 12, + ACTIONS(2763), 1, + anon_sym_as, + ACTIONS(2765), 1, + anon_sym_if, + ACTIONS(2767), 1, + anon_sym_async, + ACTIONS(2769), 1, + anon_sym_for, + ACTIONS(2771), 1, + anon_sym_and, + ACTIONS(2773), 1, + anon_sym_or, + ACTIONS(2791), 1, + anon_sym_COMMA, + ACTIONS(2900), 1, + anon_sym_RPAREN, + STATE(1749), 1, + sym_for_in_clause, + STATE(2157), 1, + aux_sym__collection_elements_repeat1, + STATE(2574), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [100340] = 12, - ACTIONS(2736), 1, + [100311] = 12, + ACTIONS(2739), 1, anon_sym_RBRACK, - ACTIONS(2800), 1, + ACTIONS(2775), 1, anon_sym_COMMA, - ACTIONS(2802), 1, + ACTIONS(2777), 1, anon_sym_as, - ACTIONS(2804), 1, + ACTIONS(2779), 1, anon_sym_if, - ACTIONS(2806), 1, + ACTIONS(2781), 1, anon_sym_async, - ACTIONS(2808), 1, + ACTIONS(2783), 1, anon_sym_for, - ACTIONS(2810), 1, + ACTIONS(2785), 1, anon_sym_and, - ACTIONS(2812), 1, + ACTIONS(2787), 1, anon_sym_or, - STATE(1767), 1, + STATE(1773), 1, sym_for_in_clause, STATE(2214), 1, aux_sym__collection_elements_repeat1, - STATE(2372), 1, + STATE(2453), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [100378] = 6, - ACTIONS(2901), 1, + [100349] = 12, + ACTIONS(2763), 1, anon_sym_as, - ACTIONS(2903), 1, + ACTIONS(2765), 1, anon_sym_if, - ACTIONS(2905), 1, + ACTIONS(2767), 1, + anon_sym_async, + ACTIONS(2769), 1, + anon_sym_for, + ACTIONS(2771), 1, anon_sym_and, - ACTIONS(2907), 1, + ACTIONS(2773), 1, anon_sym_or, + ACTIONS(2902), 1, + anon_sym_RPAREN, + ACTIONS(2904), 1, + anon_sym_COMMA, + STATE(1749), 1, + sym_for_in_clause, + STATE(2035), 1, + aux_sym_argument_list_repeat1, + STATE(2377), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2770), 6, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - [100403] = 7, + [100387] = 7, + ACTIONS(2811), 1, + anon_sym_SQUOTE, + ACTIONS(2908), 1, + aux_sym_string_token3, + ACTIONS(2910), 1, + anon_sym_DOLLAR_LBRACE_AT, ACTIONS(2912), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2605), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2906), 3, + anon_sym_DOLLARBB_ENV_PASSTHROUGH, + anon_sym_DOLLARBB_ENV_PASSTHROUGH_ADDITIONS, + aux_sym_string_token4, + STATE(1579), 3, + sym_inline_python, + sym_variable_expansion, + aux_sym_string_repeat2, + [100414] = 7, + ACTIONS(2917), 1, anon_sym_SQUOTE, - ACTIONS(2914), 1, + ACTIONS(2919), 1, aux_sym_string_token3, - ACTIONS(2917), 1, + ACTIONS(2922), 1, anon_sym_DOLLAR_LBRACE_AT, - ACTIONS(2920), 1, + ACTIONS(2925), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2592), 2, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(2909), 3, + ACTIONS(2914), 3, anon_sym_DOLLARBB_ENV_PASSTHROUGH, anon_sym_DOLLARBB_ENV_PASSTHROUGH_ADDITIONS, aux_sym_string_token4, @@ -116221,14 +116951,14 @@ static const uint16_t ts_small_parse_table[] = { sym_inline_python, sym_variable_expansion, aux_sym_string_repeat2, - [100430] = 3, + [100441] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2923), 2, + ACTIONS(2712), 2, anon_sym_EQ, anon_sym_COLON, - ACTIONS(2925), 8, + ACTIONS(2714), 8, anon_sym_QMARK_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_COLON_EQ, @@ -116237,413 +116967,462 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_EQ, anon_sym_EQ_DOT, anon_sym_LPAREN, - [100449] = 6, - ACTIONS(2901), 1, + [100460] = 6, + ACTIONS(2928), 1, anon_sym_as, - ACTIONS(2903), 1, + ACTIONS(2930), 1, anon_sym_if, - ACTIONS(2905), 1, + ACTIONS(2932), 1, anon_sym_and, - ACTIONS(2907), 1, + ACTIONS(2934), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2837), 6, + ACTIONS(2795), 6, anon_sym_EQ, anon_sym_COLON, anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_PIPE, - [100474] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2592), 1, + [100485] = 8, + ACTIONS(2936), 1, + anon_sym_fakeroot, + ACTIONS(2938), 1, + anon_sym_RBRACE, + ACTIONS(2940), 1, + anon_sym_DOLLAR_LBRACE_AT, + ACTIONS(2942), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2944), 1, + sym_identifier, + ACTIONS(2946), 1, + sym_shell_content, + ACTIONS(3), 2, sym_line_continuation, - ACTIONS(2927), 1, - anon_sym_LBRACE, - ACTIONS(2931), 1, - sym__not_escape_sequence, - ACTIONS(2933), 1, - sym_string_end, - STATE(1756), 1, - aux_sym_string_content_repeat1, - ACTIONS(2929), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1585), 3, - sym_string_content, - sym_interpolation, - aux_sym_python_string_repeat1, - [100503] = 8, - ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + STATE(1631), 4, + sym_function_definition, + sym_inline_python, + sym_variable_expansion, + aux_sym_function_definition_repeat1, + [100514] = 6, + ACTIONS(2928), 1, + anon_sym_as, + ACTIONS(2930), 1, + anon_sym_if, + ACTIONS(2932), 1, + anon_sym_and, + ACTIONS(2934), 1, + anon_sym_or, + ACTIONS(3), 2, sym_line_continuation, - ACTIONS(2927), 1, - anon_sym_LBRACE, - ACTIONS(2931), 1, - sym__not_escape_sequence, - ACTIONS(2935), 1, - sym_string_end, - STATE(1756), 1, - aux_sym_string_content_repeat1, - ACTIONS(2929), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1600), 3, - sym_string_content, - sym_interpolation, - aux_sym_python_string_repeat1, - [100532] = 8, + sym_comment, + ACTIONS(2855), 6, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_PIPE, + [100539] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(2605), 1, sym_line_continuation, - ACTIONS(2927), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2931), 1, + ACTIONS(2952), 1, sym__not_escape_sequence, - ACTIONS(2937), 1, + ACTIONS(2954), 1, sym_string_end, - STATE(1756), 1, + STATE(1762), 1, aux_sym_string_content_repeat1, - ACTIONS(2929), 3, + ACTIONS(2950), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1605), 3, + STATE(1591), 3, sym_string_content, sym_interpolation, aux_sym_python_string_repeat1, - [100561] = 8, + [100568] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(2605), 1, sym_line_continuation, - ACTIONS(2927), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2931), 1, + ACTIONS(2952), 1, sym__not_escape_sequence, - ACTIONS(2939), 1, + ACTIONS(2956), 1, sym_string_end, - STATE(1756), 1, + STATE(1762), 1, aux_sym_string_content_repeat1, - ACTIONS(2929), 3, + ACTIONS(2950), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1594), 3, + STATE(1598), 3, sym_string_content, sym_interpolation, aux_sym_python_string_repeat1, - [100590] = 6, - ACTIONS(2776), 1, + [100597] = 6, + ACTIONS(2928), 1, anon_sym_as, - ACTIONS(2778), 1, + ACTIONS(2930), 1, anon_sym_if, - ACTIONS(2780), 1, + ACTIONS(2932), 1, anon_sym_and, - ACTIONS(2782), 1, + ACTIONS(2934), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2770), 6, - sym__newline, + ACTIONS(2861), 6, anon_sym_EQ, anon_sym_COLON, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DOT, + anon_sym_COMMA, anon_sym_PIPE, - [100615] = 6, - ACTIONS(2901), 1, - anon_sym_as, - ACTIONS(2903), 1, - anon_sym_if, - ACTIONS(2905), 1, - anon_sym_and, - ACTIONS(2907), 1, - anon_sym_or, + [100622] = 8, + ACTIONS(2936), 1, + anon_sym_fakeroot, + ACTIONS(2940), 1, + anon_sym_DOLLAR_LBRACE_AT, + ACTIONS(2942), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2944), 1, + sym_identifier, + ACTIONS(2958), 1, + anon_sym_RBRACE, + ACTIONS(2960), 1, + sym_shell_content, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2863), 6, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - [100640] = 8, + STATE(1625), 4, + sym_function_definition, + sym_inline_python, + sym_variable_expansion, + aux_sym_function_definition_repeat1, + [100651] = 8, + ACTIONS(2936), 1, + anon_sym_fakeroot, + ACTIONS(2940), 1, + anon_sym_DOLLAR_LBRACE_AT, + ACTIONS(2942), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2944), 1, + sym_identifier, + ACTIONS(2958), 1, + anon_sym_RBRACE, + ACTIONS(2962), 1, + sym_shell_content, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(1608), 4, + sym_function_definition, + sym_inline_python, + sym_variable_expansion, + aux_sym_function_definition_repeat1, + [100680] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(2605), 1, sym_line_continuation, - ACTIONS(2927), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2931), 1, + ACTIONS(2952), 1, sym__not_escape_sequence, - ACTIONS(2941), 1, + ACTIONS(2964), 1, sym_string_end, - STATE(1756), 1, + STATE(1762), 1, aux_sym_string_content_repeat1, - ACTIONS(2929), 3, + ACTIONS(2950), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1596), 3, + STATE(1585), 3, sym_string_content, sym_interpolation, aux_sym_python_string_repeat1, - [100669] = 8, + [100709] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(2605), 1, sym_line_continuation, - ACTIONS(2927), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2931), 1, + ACTIONS(2952), 1, sym__not_escape_sequence, - ACTIONS(2943), 1, + ACTIONS(2966), 1, sym_string_end, - STATE(1756), 1, + STATE(1762), 1, aux_sym_string_content_repeat1, - ACTIONS(2929), 3, + ACTIONS(2950), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1595), 3, + STATE(1598), 3, sym_string_content, sym_interpolation, aux_sym_python_string_repeat1, - [100698] = 3, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2945), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2947), 8, - anon_sym_QMARK_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_COLON_EQ, - anon_sym_PLUS_EQ, - anon_sym_EQ_PLUS, - anon_sym_DOT_EQ, - anon_sym_EQ_DOT, - anon_sym_LPAREN, - [100717] = 8, + [100738] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(2605), 1, sym_line_continuation, - ACTIONS(2927), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2931), 1, + ACTIONS(2952), 1, sym__not_escape_sequence, - ACTIONS(2949), 1, + ACTIONS(2968), 1, sym_string_end, - STATE(1756), 1, + STATE(1762), 1, aux_sym_string_content_repeat1, - ACTIONS(2929), 3, + ACTIONS(2950), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1599), 3, + STATE(1598), 3, sym_string_content, sym_interpolation, aux_sym_python_string_repeat1, - [100746] = 8, + [100767] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(2605), 1, sym_line_continuation, - ACTIONS(2927), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2931), 1, + ACTIONS(2952), 1, sym__not_escape_sequence, - ACTIONS(2951), 1, + ACTIONS(2970), 1, sym_string_end, - STATE(1756), 1, + STATE(1762), 1, aux_sym_string_content_repeat1, - ACTIONS(2929), 3, + ACTIONS(2950), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1594), 3, + STATE(1590), 3, sym_string_content, sym_interpolation, aux_sym_python_string_repeat1, - [100775] = 2, + [100796] = 8, + ACTIONS(2936), 1, + anon_sym_fakeroot, + ACTIONS(2940), 1, + anon_sym_DOLLAR_LBRACE_AT, + ACTIONS(2942), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2944), 1, + sym_identifier, + ACTIONS(2972), 1, + anon_sym_RBRACE, + ACTIONS(2974), 1, + sym_shell_content, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2732), 10, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - [100792] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2592), 1, + STATE(1594), 4, + sym_function_definition, + sym_inline_python, + sym_variable_expansion, + aux_sym_function_definition_repeat1, + [100825] = 8, + ACTIONS(2936), 1, + anon_sym_fakeroot, + ACTIONS(2940), 1, + anon_sym_DOLLAR_LBRACE_AT, + ACTIONS(2942), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2944), 1, + sym_identifier, + ACTIONS(2960), 1, + sym_shell_content, + ACTIONS(2976), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_line_continuation, - ACTIONS(2953), 1, - anon_sym_LBRACE, - ACTIONS(2959), 1, - sym__not_escape_sequence, - ACTIONS(2962), 1, - sym_string_end, - STATE(1756), 1, - aux_sym_string_content_repeat1, - ACTIONS(2956), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1594), 3, - sym_string_content, - sym_interpolation, - aux_sym_python_string_repeat1, - [100821] = 8, + sym_comment, + STATE(1625), 4, + sym_function_definition, + sym_inline_python, + sym_variable_expansion, + aux_sym_function_definition_repeat1, + [100854] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(2605), 1, sym_line_continuation, - ACTIONS(2927), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2931), 1, + ACTIONS(2952), 1, sym__not_escape_sequence, - ACTIONS(2964), 1, + ACTIONS(2978), 1, sym_string_end, - STATE(1756), 1, + STATE(1762), 1, aux_sym_string_content_repeat1, - ACTIONS(2929), 3, + ACTIONS(2950), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1594), 3, + STATE(1597), 3, sym_string_content, sym_interpolation, aux_sym_python_string_repeat1, - [100850] = 8, + [100883] = 8, + ACTIONS(2936), 1, + anon_sym_fakeroot, + ACTIONS(2940), 1, + anon_sym_DOLLAR_LBRACE_AT, + ACTIONS(2942), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2944), 1, + sym_identifier, + ACTIONS(2976), 1, + anon_sym_RBRACE, + ACTIONS(2980), 1, + sym_shell_content, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(1601), 4, + sym_function_definition, + sym_inline_python, + sym_variable_expansion, + aux_sym_function_definition_repeat1, + [100912] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(2605), 1, sym_line_continuation, - ACTIONS(2927), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2931), 1, + ACTIONS(2952), 1, sym__not_escape_sequence, - ACTIONS(2966), 1, + ACTIONS(2982), 1, sym_string_end, - STATE(1756), 1, + STATE(1762), 1, aux_sym_string_content_repeat1, - ACTIONS(2929), 3, + ACTIONS(2950), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1594), 3, + STATE(1598), 3, sym_string_content, sym_interpolation, aux_sym_python_string_repeat1, - [100879] = 8, + [100941] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(2605), 1, sym_line_continuation, - ACTIONS(2927), 1, + ACTIONS(2984), 1, anon_sym_LBRACE, - ACTIONS(2931), 1, + ACTIONS(2990), 1, sym__not_escape_sequence, - ACTIONS(2968), 1, + ACTIONS(2993), 1, sym_string_end, - STATE(1756), 1, + STATE(1762), 1, aux_sym_string_content_repeat1, - ACTIONS(2929), 3, + ACTIONS(2987), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1592), 3, + STATE(1598), 3, sym_string_content, sym_interpolation, aux_sym_python_string_repeat1, - [100908] = 7, - ACTIONS(2891), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - aux_sym_string_token3, - ACTIONS(2974), 1, + [100970] = 8, + ACTIONS(2997), 1, + anon_sym_COMMA, + ACTIONS(2999), 1, + anon_sym_as, + ACTIONS(3001), 1, + anon_sym_if, + ACTIONS(3003), 1, + anon_sym_and, + ACTIONS(3005), 1, + anon_sym_or, + STATE(1838), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2995), 4, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_RBRACE, + sym_type_conversion, + [100999] = 8, + ACTIONS(2936), 1, + anon_sym_fakeroot, + ACTIONS(2940), 1, anon_sym_DOLLAR_LBRACE_AT, - ACTIONS(2976), 1, + ACTIONS(2942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2592), 2, + ACTIONS(2944), 1, + sym_identifier, + ACTIONS(3007), 1, + anon_sym_RBRACE, + ACTIONS(3009), 1, + sym_shell_content, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2970), 3, - anon_sym_DOLLARBB_ENV_PASSTHROUGH, - anon_sym_DOLLARBB_ENV_PASSTHROUGH_ADDITIONS, - aux_sym_string_token4, - STATE(1579), 3, + STATE(1587), 4, + sym_function_definition, sym_inline_python, sym_variable_expansion, - aux_sym_string_repeat2, - [100935] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2592), 1, + aux_sym_function_definition_repeat1, + [101028] = 8, + ACTIONS(2936), 1, + anon_sym_fakeroot, + ACTIONS(2940), 1, + anon_sym_DOLLAR_LBRACE_AT, + ACTIONS(2942), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2944), 1, + sym_identifier, + ACTIONS(2960), 1, + sym_shell_content, + ACTIONS(3011), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_line_continuation, - ACTIONS(2927), 1, - anon_sym_LBRACE, - ACTIONS(2931), 1, - sym__not_escape_sequence, - ACTIONS(2978), 1, - sym_string_end, - STATE(1756), 1, - aux_sym_string_content_repeat1, - ACTIONS(2929), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1594), 3, - sym_string_content, - sym_interpolation, - aux_sym_python_string_repeat1, - [100964] = 8, - ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + STATE(1625), 4, + sym_function_definition, + sym_inline_python, + sym_variable_expansion, + aux_sym_function_definition_repeat1, + [101057] = 3, + ACTIONS(3), 2, sym_line_continuation, - ACTIONS(2927), 1, - anon_sym_LBRACE, - ACTIONS(2931), 1, - sym__not_escape_sequence, - ACTIONS(2980), 1, - sym_string_end, - STATE(1756), 1, - aux_sym_string_content_repeat1, - ACTIONS(2929), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1594), 3, - sym_string_content, - sym_interpolation, - aux_sym_python_string_repeat1, - [100993] = 2, + sym_comment, + ACTIONS(3013), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(3015), 8, + anon_sym_QMARK_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_EQ_PLUS, + anon_sym_DOT_EQ, + anon_sym_EQ_DOT, + anon_sym_LPAREN, + [101076] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1958), 10, + ACTIONS(1956), 10, anon_sym_EQ, anon_sym_COLON, anon_sym_DOT, @@ -116654,97 +117433,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PIPE, - [101010] = 8, - ACTIONS(2984), 1, + [101093] = 8, + ACTIONS(2997), 1, anon_sym_COMMA, - ACTIONS(2986), 1, + ACTIONS(2999), 1, anon_sym_as, - ACTIONS(2988), 1, + ACTIONS(3001), 1, anon_sym_if, - ACTIONS(2990), 1, + ACTIONS(3003), 1, anon_sym_and, - ACTIONS(2992), 1, + ACTIONS(3005), 1, anon_sym_or, - STATE(1803), 1, + STATE(1838), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2982), 4, + ACTIONS(3017), 4, anon_sym_EQ, anon_sym_COLON, anon_sym_RBRACE, sym_type_conversion, - [101039] = 8, - ACTIONS(2984), 1, + [101122] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2757), 10, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DOT, anon_sym_COMMA, - ACTIONS(2986), 1, anon_sym_as, - ACTIONS(2988), 1, anon_sym_if, - ACTIONS(2990), 1, anon_sym_and, - ACTIONS(2992), 1, anon_sym_or, - STATE(1803), 1, - aux_sym_assert_statement_repeat1, + anon_sym_PIPE, + [101139] = 3, + ACTIONS(2932), 1, + anon_sym_and, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2994), 4, + ACTIONS(2755), 9, anon_sym_EQ, anon_sym_COLON, - anon_sym_RBRACE, - sym_type_conversion, - [101068] = 8, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_or, + anon_sym_PIPE, + [101158] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(2605), 1, sym_line_continuation, - ACTIONS(2927), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2931), 1, + ACTIONS(2952), 1, sym__not_escape_sequence, - ACTIONS(2996), 1, + ACTIONS(3019), 1, sym_string_end, - STATE(1756), 1, + STATE(1762), 1, aux_sym_string_content_repeat1, - ACTIONS(2929), 3, + ACTIONS(2950), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1616), 3, + STATE(1598), 3, sym_string_content, sym_interpolation, aux_sym_python_string_repeat1, - [101097] = 8, + [101187] = 8, + ACTIONS(2936), 1, + anon_sym_fakeroot, + ACTIONS(2940), 1, + anon_sym_DOLLAR_LBRACE_AT, + ACTIONS(2942), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2944), 1, + sym_identifier, + ACTIONS(2960), 1, + sym_shell_content, + ACTIONS(3021), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(1625), 4, + sym_function_definition, + sym_inline_python, + sym_variable_expansion, + aux_sym_function_definition_repeat1, + [101216] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(2605), 1, sym_line_continuation, - ACTIONS(2927), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2931), 1, + ACTIONS(2952), 1, sym__not_escape_sequence, - ACTIONS(2998), 1, + ACTIONS(3023), 1, sym_string_end, - STATE(1756), 1, + STATE(1762), 1, aux_sym_string_content_repeat1, - ACTIONS(2929), 3, + ACTIONS(2950), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1594), 3, + STATE(1630), 3, sym_string_content, sym_interpolation, aux_sym_python_string_repeat1, - [101126] = 3, - ACTIONS(2905), 1, - anon_sym_and, + [101245] = 8, + ACTIONS(2936), 1, + anon_sym_fakeroot, + ACTIONS(2940), 1, + anon_sym_DOLLAR_LBRACE_AT, + ACTIONS(2942), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2944), 1, + sym_identifier, + ACTIONS(3021), 1, + anon_sym_RBRACE, + ACTIONS(3025), 1, + sym_shell_content, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(1629), 4, + sym_function_definition, + sym_inline_python, + sym_variable_expansion, + aux_sym_function_definition_repeat1, + [101274] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2752), 9, + ACTIONS(2755), 10, anon_sym_EQ, anon_sym_COLON, anon_sym_RPAREN, @@ -116752,13 +117581,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_and, anon_sym_or, anon_sym_PIPE, - [101145] = 2, + [101291] = 4, + ACTIONS(2932), 1, + anon_sym_and, + ACTIONS(2934), 1, + anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2752), 10, + ACTIONS(2885), 8, anon_sym_EQ, anon_sym_COLON, anon_sym_RPAREN, @@ -116766,140 +117600,302 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, anon_sym_PIPE, - [101162] = 4, - ACTIONS(2905), 1, + [101312] = 5, + ACTIONS(2932), 1, anon_sym_and, - ACTIONS(2907), 1, + ACTIONS(2934), 1, anon_sym_or, + ACTIONS(3027), 1, + anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2814), 8, + ACTIONS(2850), 7, anon_sym_EQ, anon_sym_COLON, anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_PIPE, - [101183] = 8, + [101335] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(2605), 1, sym_line_continuation, - ACTIONS(2927), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2931), 1, + ACTIONS(2952), 1, sym__not_escape_sequence, - ACTIONS(3000), 1, + ACTIONS(3030), 1, sym_string_end, - STATE(1756), 1, + STATE(1762), 1, aux_sym_string_content_repeat1, - ACTIONS(2929), 3, + ACTIONS(2950), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1594), 3, + STATE(1623), 3, sym_string_content, sym_interpolation, aux_sym_python_string_repeat1, - [101212] = 5, - ACTIONS(2905), 1, - anon_sym_and, - ACTIONS(2907), 1, - anon_sym_or, - ACTIONS(3002), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2791), 7, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_if, - anon_sym_PIPE, - [101235] = 2, + [101364] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1958), 10, + ACTIONS(2757), 10, anon_sym_EQ, anon_sym_COLON, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_else, anon_sym_and, anon_sym_or, anon_sym_PIPE, - [101252] = 8, + [101381] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(2605), 1, sym_line_continuation, - ACTIONS(2927), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2931), 1, + ACTIONS(2952), 1, sym__not_escape_sequence, - ACTIONS(3005), 1, + ACTIONS(3032), 1, sym_string_end, - STATE(1756), 1, + STATE(1762), 1, aux_sym_string_content_repeat1, - ACTIONS(2929), 3, + ACTIONS(2950), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1609), 3, + STATE(1598), 3, sym_string_content, sym_interpolation, aux_sym_python_string_repeat1, - [101281] = 2, - ACTIONS(3), 2, + [101410] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 1, + sym_line_continuation, + ACTIONS(2948), 1, + anon_sym_LBRACE, + ACTIONS(2952), 1, + sym__not_escape_sequence, + ACTIONS(3034), 1, + sym_string_end, + STATE(1762), 1, + aux_sym_string_content_repeat1, + ACTIONS(2950), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1618), 3, + sym_string_content, + sym_interpolation, + aux_sym_python_string_repeat1, + [101439] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 1, sym_line_continuation, + ACTIONS(2948), 1, + anon_sym_LBRACE, + ACTIONS(2952), 1, + sym__not_escape_sequence, + ACTIONS(3036), 1, + sym_string_end, + STATE(1762), 1, + aux_sym_string_content_repeat1, + ACTIONS(2950), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1598), 3, + sym_string_content, + sym_interpolation, + aux_sym_python_string_repeat1, + [101468] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(2732), 10, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(2605), 1, + sym_line_continuation, + ACTIONS(2948), 1, + anon_sym_LBRACE, + ACTIONS(2952), 1, + sym__not_escape_sequence, + ACTIONS(3038), 1, + sym_string_end, + STATE(1762), 1, + aux_sym_string_content_repeat1, + ACTIONS(2950), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1616), 3, + sym_string_content, + sym_interpolation, + aux_sym_python_string_repeat1, + [101497] = 6, + ACTIONS(2801), 1, anon_sym_as, + ACTIONS(2803), 1, anon_sym_if, - anon_sym_else, + ACTIONS(2805), 1, anon_sym_and, + ACTIONS(2807), 1, anon_sym_or, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2795), 6, + sym__newline, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_PIPE, - [101298] = 6, - ACTIONS(2901), 1, + [101522] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3040), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(3042), 8, + anon_sym_QMARK_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_EQ_PLUS, + anon_sym_DOT_EQ, + anon_sym_EQ_DOT, + anon_sym_LPAREN, + [101541] = 6, + ACTIONS(2928), 1, anon_sym_as, - ACTIONS(2903), 1, + ACTIONS(2930), 1, anon_sym_if, - ACTIONS(2905), 1, + ACTIONS(2932), 1, anon_sym_and, - ACTIONS(2907), 1, + ACTIONS(2934), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2871), 6, + ACTIONS(2841), 6, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_PIPE, + [101566] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 1, + sym_line_continuation, + ACTIONS(2948), 1, + anon_sym_LBRACE, + ACTIONS(2952), 1, + sym__not_escape_sequence, + ACTIONS(3044), 1, + sym_string_end, + STATE(1762), 1, + aux_sym_string_content_repeat1, + ACTIONS(2950), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1598), 3, + sym_string_content, + sym_interpolation, + aux_sym_python_string_repeat1, + [101595] = 7, + ACTIONS(2865), 1, + anon_sym_SQUOTE, + ACTIONS(2910), 1, + anon_sym_DOLLAR_LBRACE_AT, + ACTIONS(2912), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3048), 1, + aux_sym_string_token3, + ACTIONS(2605), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3046), 3, + anon_sym_DOLLARBB_ENV_PASSTHROUGH, + anon_sym_DOLLARBB_ENV_PASSTHROUGH_ADDITIONS, + aux_sym_string_token4, + STATE(1578), 3, + sym_inline_python, + sym_variable_expansion, + aux_sym_string_repeat2, + [101622] = 8, + ACTIONS(3050), 1, + anon_sym_fakeroot, + ACTIONS(3053), 1, + anon_sym_RBRACE, + ACTIONS(3055), 1, + anon_sym_DOLLAR_LBRACE_AT, + ACTIONS(3058), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3061), 1, + sym_identifier, + ACTIONS(3064), 1, + sym_shell_content, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(1625), 4, + sym_function_definition, + sym_inline_python, + sym_variable_expansion, + aux_sym_function_definition_repeat1, + [101651] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 1, + sym_line_continuation, + ACTIONS(2948), 1, + anon_sym_LBRACE, + ACTIONS(2952), 1, + sym__not_escape_sequence, + ACTIONS(3067), 1, + sym_string_end, + STATE(1762), 1, + aux_sym_string_content_repeat1, + ACTIONS(2950), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1607), 3, + sym_string_content, + sym_interpolation, + aux_sym_python_string_repeat1, + [101680] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1956), 10, anon_sym_EQ, anon_sym_COLON, anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, anon_sym_PIPE, - [101323] = 2, + [101697] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2752), 10, + ACTIONS(2755), 10, anon_sym_EQ, anon_sym_COLON, anon_sym_DOT, @@ -116910,255 +117906,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PIPE, - [101340] = 8, + [101714] = 8, + ACTIONS(2936), 1, + anon_sym_fakeroot, + ACTIONS(2940), 1, + anon_sym_DOLLAR_LBRACE_AT, + ACTIONS(2942), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2944), 1, + sym_identifier, + ACTIONS(2960), 1, + sym_shell_content, + ACTIONS(3069), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(1625), 4, + sym_function_definition, + sym_inline_python, + sym_variable_expansion, + aux_sym_function_definition_repeat1, + [101743] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(2605), 1, sym_line_continuation, - ACTIONS(2927), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2931), 1, + ACTIONS(2952), 1, sym__not_escape_sequence, - ACTIONS(3007), 1, + ACTIONS(3071), 1, sym_string_end, - STATE(1756), 1, + STATE(1762), 1, aux_sym_string_content_repeat1, - ACTIONS(2929), 3, + ACTIONS(2950), 3, sym__string_content, sym_escape_interpolation, - sym_escape_sequence, - STATE(1594), 3, - sym_string_content, - sym_interpolation, - aux_sym_python_string_repeat1, - [101369] = 3, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2707), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2709), 8, - anon_sym_QMARK_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_COLON_EQ, - anon_sym_PLUS_EQ, - anon_sym_EQ_PLUS, - anon_sym_DOT_EQ, - anon_sym_EQ_DOT, - anon_sym_LPAREN, - [101388] = 7, - ACTIONS(2822), 1, - anon_sym_SQUOTE, - ACTIONS(2974), 1, + sym_escape_sequence, + STATE(1598), 3, + sym_string_content, + sym_interpolation, + aux_sym_python_string_repeat1, + [101772] = 8, + ACTIONS(2936), 1, + anon_sym_fakeroot, + ACTIONS(2940), 1, anon_sym_DOLLAR_LBRACE_AT, - ACTIONS(2976), 1, + ACTIONS(2942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3011), 1, - aux_sym_string_token3, - ACTIONS(2592), 2, + ACTIONS(2944), 1, + sym_identifier, + ACTIONS(2960), 1, + sym_shell_content, + ACTIONS(2972), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3009), 3, - anon_sym_DOLLARBB_ENV_PASSTHROUGH, - anon_sym_DOLLARBB_ENV_PASSTHROUGH_ADDITIONS, - aux_sym_string_token4, - STATE(1598), 3, + STATE(1625), 4, + sym_function_definition, sym_inline_python, sym_variable_expansion, - aux_sym_string_repeat2, - [101415] = 5, - ACTIONS(2748), 1, - anon_sym_and, - ACTIONS(2750), 1, - anon_sym_or, - ACTIONS(3013), 1, + aux_sym_function_definition_repeat1, + [101801] = 3, + ACTIONS(3073), 1, anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2814), 6, + ACTIONS(2755), 8, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [101437] = 3, - ACTIONS(3015), 1, - anon_sym_as, + anon_sym_and, + anon_sym_or, + [101819] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2752), 8, + ACTIONS(2755), 9, + anon_sym_EQ, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_and, anon_sym_or, - [101455] = 5, - ACTIONS(2990), 1, + sym_type_conversion, + [101835] = 5, + ACTIONS(3075), 1, + anon_sym_as, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(2992), 1, + ACTIONS(3080), 1, anon_sym_or, - ACTIONS(3017), 1, - anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2791), 6, + ACTIONS(2850), 6, anon_sym_EQ, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_if, - sym_type_conversion, - [101477] = 6, - ACTIONS(3020), 1, + anon_sym_PIPE, + [101857] = 6, + ACTIONS(3082), 1, anon_sym_as, - ACTIONS(3022), 1, + ACTIONS(3084), 1, anon_sym_if, - ACTIONS(3024), 1, + ACTIONS(3086), 1, anon_sym_and, - ACTIONS(3026), 1, + ACTIONS(3088), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2871), 5, + ACTIONS(2841), 5, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT, anon_sym_COMMA, anon_sym_PIPE, - [101501] = 4, - ACTIONS(2990), 1, + [101881] = 4, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(2992), 1, + ACTIONS(3080), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2814), 7, + ACTIONS(2885), 7, anon_sym_EQ, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, - sym_type_conversion, - [101521] = 2, + anon_sym_PIPE, + [101901] = 3, + ACTIONS(3078), 1, + anon_sym_and, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1958), 9, + ACTIONS(2755), 8, anon_sym_EQ, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_and, anon_sym_or, - sym_type_conversion, - [101537] = 6, - ACTIONS(3020), 1, + anon_sym_PIPE, + [101919] = 6, + ACTIONS(3082), 1, anon_sym_as, - ACTIONS(3022), 1, + ACTIONS(3084), 1, anon_sym_if, - ACTIONS(3024), 1, + ACTIONS(3086), 1, anon_sym_and, - ACTIONS(3026), 1, + ACTIONS(3088), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2837), 5, + ACTIONS(2855), 5, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT, anon_sym_COMMA, anon_sym_PIPE, - [101561] = 6, - ACTIONS(2986), 1, - anon_sym_as, - ACTIONS(2988), 1, - anon_sym_if, - ACTIONS(2990), 1, + [101943] = 6, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(2992), 1, + ACTIONS(3080), 1, anon_sym_or, + ACTIONS(3090), 1, + anon_sym_as, + ACTIONS(3092), 1, + anon_sym_if, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2871), 5, + ACTIONS(2795), 5, anon_sym_EQ, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, - sym_type_conversion, - [101585] = 6, - ACTIONS(2986), 1, - anon_sym_as, - ACTIONS(2988), 1, - anon_sym_if, - ACTIONS(2990), 1, + anon_sym_PIPE, + [101967] = 6, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(2992), 1, + ACTIONS(3080), 1, anon_sym_or, + ACTIONS(3090), 1, + anon_sym_as, + ACTIONS(3092), 1, + anon_sym_if, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2863), 5, + ACTIONS(2861), 5, anon_sym_EQ, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, - sym_type_conversion, - [101609] = 6, - ACTIONS(3020), 1, + anon_sym_PIPE, + [101991] = 6, + ACTIONS(3082), 1, anon_sym_as, - ACTIONS(3022), 1, + ACTIONS(3084), 1, anon_sym_if, - ACTIONS(3024), 1, + ACTIONS(3086), 1, anon_sym_and, - ACTIONS(3026), 1, + ACTIONS(3088), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2863), 5, + ACTIONS(2861), 5, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT, anon_sym_COMMA, anon_sym_PIPE, - [101633] = 4, - ACTIONS(3028), 1, - anon_sym_EQ, - ACTIONS(3032), 1, - anon_sym_LPAREN, + [102015] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3030), 7, - anon_sym_QMARK_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_COLON_EQ, - anon_sym_PLUS_EQ, - anon_sym_EQ_PLUS, - anon_sym_DOT_EQ, - anon_sym_EQ_DOT, - [101653] = 3, - ACTIONS(3024), 1, + ACTIONS(1956), 9, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [102031] = 3, + ACTIONS(3086), 1, anon_sym_and, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2752), 8, + ACTIONS(2755), 8, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT, @@ -117167,11 +118165,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_or, anon_sym_PIPE, - [101671] = 2, + [102049] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2752), 9, + ACTIONS(2755), 9, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT, @@ -117181,766 +118179,768 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PIPE, - [101687] = 4, - ACTIONS(3024), 1, - anon_sym_and, - ACTIONS(3026), 1, - anon_sym_or, + [102065] = 4, + ACTIONS(3094), 1, + anon_sym_EQ, + ACTIONS(3098), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2814), 7, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_PIPE, - [101707] = 5, - ACTIONS(3024), 1, + ACTIONS(3096), 7, + anon_sym_QMARK_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_EQ_PLUS, + anon_sym_DOT_EQ, + anon_sym_EQ_DOT, + [102085] = 4, + ACTIONS(3086), 1, anon_sym_and, - ACTIONS(3026), 1, + ACTIONS(3088), 1, anon_sym_or, - ACTIONS(3034), 1, - anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2791), 6, + ACTIONS(2885), 7, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, - anon_sym_PIPE, - [101729] = 6, - ACTIONS(2740), 1, anon_sym_as, - ACTIONS(2742), 1, anon_sym_if, - ACTIONS(2748), 1, - anon_sym_and, - ACTIONS(2750), 1, - anon_sym_or, + anon_sym_PIPE, + [102105] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2871), 5, + ACTIONS(2757), 9, + anon_sym_EQ, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [101753] = 2, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2732), 9, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - anon_sym_PIPE, - [101769] = 6, - ACTIONS(2986), 1, + sym_type_conversion, + [102121] = 6, + ACTIONS(2999), 1, anon_sym_as, - ACTIONS(2988), 1, + ACTIONS(3001), 1, anon_sym_if, - ACTIONS(2990), 1, + ACTIONS(3003), 1, anon_sym_and, - ACTIONS(2992), 1, + ACTIONS(3005), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3037), 5, + ACTIONS(3100), 5, anon_sym_EQ, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, sym_type_conversion, - [101793] = 2, + [102145] = 5, + ACTIONS(3086), 1, + anon_sym_and, + ACTIONS(3088), 1, + anon_sym_or, + ACTIONS(3102), 1, + anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1958), 9, + ACTIONS(2850), 6, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, anon_sym_PIPE, - [101809] = 2, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2752), 9, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + [102167] = 6, + ACTIONS(3078), 1, anon_sym_and, + ACTIONS(3080), 1, anon_sym_or, - sym_type_conversion, - [101825] = 6, - ACTIONS(3039), 1, + ACTIONS(3090), 1, anon_sym_as, - ACTIONS(3041), 1, + ACTIONS(3092), 1, anon_sym_if, - ACTIONS(3043), 1, - anon_sym_and, - ACTIONS(3045), 1, - anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2871), 5, + ACTIONS(2855), 5, anon_sym_EQ, anon_sym_COLON, anon_sym_DOT, anon_sym_COMMA, anon_sym_PIPE, - [101849] = 5, - ACTIONS(3043), 1, + [102191] = 6, + ACTIONS(2743), 1, + anon_sym_as, + ACTIONS(2745), 1, + anon_sym_if, + ACTIONS(2751), 1, anon_sym_and, - ACTIONS(3045), 1, + ACTIONS(2753), 1, anon_sym_or, - ACTIONS(3047), 1, - anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2791), 6, - anon_sym_EQ, + ACTIONS(2841), 5, anon_sym_COLON, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_if, - anon_sym_PIPE, - [101871] = 3, - ACTIONS(2990), 1, - anon_sym_and, + anon_sym_async, + anon_sym_for, + [102215] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2752), 8, - anon_sym_EQ, + ACTIONS(2757), 9, + anon_sym_RBRACK, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_and, anon_sym_or, - sym_type_conversion, - [101889] = 4, - ACTIONS(3043), 1, + anon_sym_PIPE, + [102231] = 6, + ACTIONS(2999), 1, + anon_sym_as, + ACTIONS(3001), 1, + anon_sym_if, + ACTIONS(3003), 1, anon_sym_and, - ACTIONS(3045), 1, + ACTIONS(3005), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2814), 7, + ACTIONS(2861), 5, anon_sym_EQ, anon_sym_COLON, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_PIPE, - [101909] = 3, - ACTIONS(3043), 1, - anon_sym_and, + sym_type_conversion, + [102255] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2752), 8, - anon_sym_EQ, + ACTIONS(1956), 9, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_and, anon_sym_or, anon_sym_PIPE, - [101927] = 6, - ACTIONS(3039), 1, - anon_sym_as, - ACTIONS(3041), 1, - anon_sym_if, - ACTIONS(3043), 1, + [102271] = 6, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3045), 1, + ACTIONS(3080), 1, anon_sym_or, + ACTIONS(3090), 1, + anon_sym_as, + ACTIONS(3092), 1, + anon_sym_if, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2863), 5, + ACTIONS(2841), 5, anon_sym_EQ, anon_sym_COLON, anon_sym_DOT, anon_sym_COMMA, anon_sym_PIPE, - [101951] = 9, - ACTIONS(3052), 1, + [102295] = 9, + ACTIONS(3107), 1, anon_sym_from, - ACTIONS(3054), 1, + ACTIONS(3109), 1, anon_sym_COMMA, - ACTIONS(3056), 1, + ACTIONS(3111), 1, anon_sym_as, - ACTIONS(3058), 1, + ACTIONS(3113), 1, anon_sym_if, - ACTIONS(3060), 1, + ACTIONS(3115), 1, anon_sym_and, - ACTIONS(3062), 1, + ACTIONS(3117), 1, anon_sym_or, - STATE(1931), 1, + STATE(1889), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3050), 2, + ACTIONS(3105), 2, sym__newline, anon_sym_SEMI, - [101981] = 6, - ACTIONS(3039), 1, + [102325] = 3, + ACTIONS(1952), 1, anon_sym_as, - ACTIONS(3041), 1, - anon_sym_if, - ACTIONS(3043), 1, - anon_sym_and, - ACTIONS(3045), 1, - anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2837), 5, - anon_sym_EQ, + ACTIONS(1956), 8, anon_sym_COLON, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_PIPE, - [102005] = 6, - ACTIONS(2986), 1, - anon_sym_as, - ACTIONS(2988), 1, anon_sym_if, - ACTIONS(2990), 1, + anon_sym_async, + anon_sym_for, anon_sym_and, - ACTIONS(2992), 1, anon_sym_or, + [102343] = 3, + ACTIONS(3119), 1, + anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3064), 5, - anon_sym_EQ, + ACTIONS(2757), 8, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, - sym_type_conversion, - [102029] = 6, - ACTIONS(2986), 1, - anon_sym_as, - ACTIONS(2988), 1, anon_sym_if, - ACTIONS(2990), 1, + anon_sym_async, + anon_sym_for, anon_sym_and, - ACTIONS(2992), 1, anon_sym_or, + [102361] = 4, + ACTIONS(2751), 1, + anon_sym_and, + ACTIONS(3073), 1, + anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2837), 5, - anon_sym_EQ, + ACTIONS(2755), 7, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, - sym_type_conversion, - [102053] = 6, - ACTIONS(2740), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_or, + [102381] = 6, + ACTIONS(2743), 1, anon_sym_as, - ACTIONS(2742), 1, + ACTIONS(2745), 1, anon_sym_if, - ACTIONS(2748), 1, + ACTIONS(2751), 1, anon_sym_and, - ACTIONS(2750), 1, + ACTIONS(2753), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2863), 5, + ACTIONS(2861), 5, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_async, anon_sym_for, - [102077] = 6, - ACTIONS(2740), 1, - anon_sym_as, - ACTIONS(2742), 1, - anon_sym_if, - ACTIONS(2748), 1, + [102405] = 3, + ACTIONS(3003), 1, anon_sym_and, - ACTIONS(2750), 1, - anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2837), 5, + ACTIONS(2755), 8, + anon_sym_EQ, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [102101] = 5, - ACTIONS(2748), 1, + anon_sym_as, + anon_sym_if, + anon_sym_or, + sym_type_conversion, + [102423] = 5, + ACTIONS(2751), 1, anon_sym_and, - ACTIONS(2750), 1, + ACTIONS(2753), 1, anon_sym_or, - ACTIONS(3066), 1, + ACTIONS(3121), 1, anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2791), 6, + ACTIONS(2850), 6, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [102123] = 2, + [102445] = 6, + ACTIONS(2743), 1, + anon_sym_as, + ACTIONS(2745), 1, + anon_sym_if, + ACTIONS(2751), 1, + anon_sym_and, + ACTIONS(2753), 1, + anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2732), 9, - anon_sym_EQ, + ACTIONS(2855), 5, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + anon_sym_async, + anon_sym_for, + [102469] = 5, + ACTIONS(2751), 1, anon_sym_and, + ACTIONS(2753), 1, anon_sym_or, - sym_type_conversion, - [102139] = 3, - ACTIONS(3069), 1, + ACTIONS(3124), 1, anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2732), 8, + ACTIONS(2885), 6, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_and, - anon_sym_or, - [102157] = 6, - ACTIONS(3039), 1, + [102491] = 6, + ACTIONS(2999), 1, anon_sym_as, - ACTIONS(3041), 1, + ACTIONS(3001), 1, anon_sym_if, - ACTIONS(3043), 1, + ACTIONS(3003), 1, anon_sym_and, - ACTIONS(3045), 1, + ACTIONS(3005), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2770), 5, + ACTIONS(3126), 5, anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - [102181] = 3, - ACTIONS(1964), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(1958), 8, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [102199] = 6, - ACTIONS(3020), 1, + sym_type_conversion, + [102515] = 6, + ACTIONS(3082), 1, anon_sym_as, - ACTIONS(3022), 1, + ACTIONS(3084), 1, anon_sym_if, - ACTIONS(3024), 1, + ACTIONS(3086), 1, anon_sym_and, - ACTIONS(3026), 1, + ACTIONS(3088), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2770), 5, + ACTIONS(2795), 5, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT, anon_sym_COMMA, anon_sym_PIPE, - [102223] = 4, - ACTIONS(2748), 1, + [102539] = 5, + ACTIONS(3003), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3005), 1, + anon_sym_or, + ACTIONS(3128), 1, anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2752), 7, + ACTIONS(2850), 6, + anon_sym_EQ, anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_or, - [102243] = 9, - ACTIONS(3020), 1, + sym_type_conversion, + [102561] = 6, + ACTIONS(2999), 1, anon_sym_as, - ACTIONS(3022), 1, + ACTIONS(3001), 1, anon_sym_if, - ACTIONS(3024), 1, + ACTIONS(3003), 1, anon_sym_and, - ACTIONS(3026), 1, + ACTIONS(3005), 1, anon_sym_or, - ACTIONS(3071), 1, - anon_sym_RBRACK, - ACTIONS(3073), 1, - anon_sym_COLON, - ACTIONS(3075), 1, - anon_sym_COMMA, - STATE(2024), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [102272] = 7, - ACTIONS(3077), 1, - anon_sym_fakeroot, - ACTIONS(3079), 1, + ACTIONS(2841), 5, + anon_sym_EQ, + anon_sym_COLON, anon_sym_RBRACE, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LBRACE_AT, - ACTIONS(3083), 1, - sym_identifier, - ACTIONS(3085), 1, - sym_shell_content, + anon_sym_COMMA, + sym_type_conversion, + [102585] = 4, + ACTIONS(3003), 1, + anon_sym_and, + ACTIONS(3005), 1, + anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1711), 3, - sym_function_definition, - sym_inline_python, - aux_sym_function_definition_repeat1, - [102297] = 6, - ACTIONS(3056), 1, + ACTIONS(2885), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3058), 1, anon_sym_if, - ACTIONS(3060), 1, + sym_type_conversion, + [102605] = 6, + ACTIONS(2999), 1, + anon_sym_as, + ACTIONS(3001), 1, + anon_sym_if, + ACTIONS(3003), 1, anon_sym_and, - ACTIONS(3062), 1, + ACTIONS(3005), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2871), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2855), 5, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_COMMA, - [102320] = 7, - ACTIONS(3077), 1, - anon_sym_fakeroot, - ACTIONS(3081), 1, + sym_type_conversion, + [102629] = 6, + ACTIONS(3133), 1, + sym_inherit_path, + ACTIONS(3135), 1, anon_sym_DOLLAR_LBRACE_AT, - ACTIONS(3083), 1, - sym_identifier, - ACTIONS(3087), 1, - anon_sym_RBRACE, - ACTIONS(3089), 1, - sym_shell_content, - ACTIONS(3), 2, + ACTIONS(3137), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - STATE(1708), 3, - sym_function_definition, + ACTIONS(3131), 2, + aux_sym_recipe_token1, + anon_sym_, + STATE(1731), 3, sym_inline_python, - aux_sym_function_definition_repeat1, - [102345] = 7, - ACTIONS(3093), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3095), 1, - sym_identifier, - ACTIONS(3097), 1, - aux_sym__dotted_identifier_token1, - STATE(1988), 1, sym_variable_expansion, - STATE(2257), 1, - sym_concatenation, + aux_sym_inherit_directive_repeat1, + [102652] = 3, + ACTIONS(3119), 1, + anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3091), 3, - anon_sym_append, - anon_sym_prepend, - anon_sym_remove, - [102370] = 5, - ACTIONS(3060), 1, + ACTIONS(2757), 7, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_and, - ACTIONS(3062), 1, anon_sym_or, - ACTIONS(3099), 1, + [102669] = 6, + ACTIONS(3111), 1, anon_sym_as, + ACTIONS(3113), 1, + anon_sym_if, + ACTIONS(3115), 1, + anon_sym_and, + ACTIONS(3117), 1, + anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2791), 5, + ACTIONS(2861), 4, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, + [102692] = 6, + ACTIONS(3111), 1, + anon_sym_as, + ACTIONS(3113), 1, anon_sym_if, - [102391] = 4, - ACTIONS(3060), 1, + ACTIONS(3115), 1, anon_sym_and, - ACTIONS(3062), 1, + ACTIONS(3117), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2814), 6, + ACTIONS(2855), 4, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - [102410] = 8, - ACTIONS(2776), 1, - anon_sym_as, - ACTIONS(2778), 1, - anon_sym_if, - ACTIONS(2780), 1, - anon_sym_and, - ACTIONS(2782), 1, - anon_sym_or, - ACTIONS(3104), 1, - anon_sym_COMMA, - STATE(1990), 1, - aux_sym_assert_statement_repeat1, + [102715] = 7, + ACTIONS(3141), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3143), 1, + sym_identifier, + ACTIONS(3145), 1, + aux_sym__dotted_identifier_token1, + STATE(1970), 1, + sym_variable_expansion, + STATE(2280), 1, + sym_concatenation, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3102), 2, - sym__newline, - anon_sym_SEMI, - [102437] = 9, - ACTIONS(3020), 1, + ACTIONS(3139), 3, + anon_sym_append, + anon_sym_prepend, + anon_sym_remove, + [102740] = 9, + ACTIONS(3082), 1, anon_sym_as, - ACTIONS(3022), 1, + ACTIONS(3084), 1, anon_sym_if, - ACTIONS(3024), 1, + ACTIONS(3086), 1, anon_sym_and, - ACTIONS(3026), 1, + ACTIONS(3088), 1, anon_sym_or, - ACTIONS(3073), 1, - anon_sym_COLON, - ACTIONS(3106), 1, + ACTIONS(3147), 1, anon_sym_RBRACK, - ACTIONS(3108), 1, + ACTIONS(3149), 1, + anon_sym_COLON, + ACTIONS(3151), 1, anon_sym_COMMA, - STATE(2043), 1, + STATE(2164), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [102466] = 3, - ACTIONS(3060), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2752), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_or, - [102483] = 6, - ACTIONS(3056), 1, + [102769] = 9, + ACTIONS(3082), 1, anon_sym_as, - ACTIONS(3058), 1, + ACTIONS(3084), 1, anon_sym_if, - ACTIONS(3060), 1, + ACTIONS(3086), 1, anon_sym_and, - ACTIONS(3062), 1, + ACTIONS(3088), 1, anon_sym_or, + ACTIONS(3149), 1, + anon_sym_COLON, + ACTIONS(3153), 1, + anon_sym_RBRACK, + ACTIONS(3155), 1, + anon_sym_COMMA, + STATE(2137), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2863), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - [102506] = 6, - ACTIONS(3056), 1, + [102798] = 9, + ACTIONS(3082), 1, anon_sym_as, - ACTIONS(3058), 1, + ACTIONS(3084), 1, anon_sym_if, - ACTIONS(3060), 1, + ACTIONS(3086), 1, anon_sym_and, - ACTIONS(3062), 1, + ACTIONS(3088), 1, anon_sym_or, + ACTIONS(3149), 1, + anon_sym_COLON, + ACTIONS(3157), 1, + anon_sym_RBRACK, + ACTIONS(3159), 1, + anon_sym_COMMA, + STATE(2120), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2837), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - [102529] = 6, - ACTIONS(3112), 1, + [102827] = 6, + ACTIONS(3133), 1, sym_inherit_path, - ACTIONS(3114), 1, + ACTIONS(3135), 1, anon_sym_DOLLAR_LBRACE_AT, - ACTIONS(3116), 1, + ACTIONS(3137), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2592), 2, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(3110), 2, + ACTIONS(3161), 2, aux_sym_recipe_token1, - anon_sym_NULL, - STATE(1735), 3, + anon_sym_, + STATE(1731), 3, sym_inline_python, sym_variable_expansion, aux_sym_inherit_directive_repeat1, - [102552] = 7, - ACTIONS(3077), 1, - anon_sym_fakeroot, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LBRACE_AT, - ACTIONS(3083), 1, - sym_identifier, - ACTIONS(3118), 1, - anon_sym_RBRACE, - ACTIONS(3120), 1, - sym_shell_content, + [102850] = 5, + ACTIONS(2763), 1, + anon_sym_as, + ACTIONS(2771), 1, + anon_sym_and, + ACTIONS(2773), 1, + anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1689), 3, - sym_function_definition, - sym_inline_python, - aux_sym_function_definition_repeat1, - [102577] = 7, - ACTIONS(3093), 1, + ACTIONS(3163), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [102871] = 7, + ACTIONS(1375), 1, + anon_sym_except, + ACTIONS(1379), 1, + anon_sym_except_STAR, + ACTIONS(3165), 1, + anon_sym_finally, + STATE(679), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(540), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(541), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [102896] = 7, + ACTIONS(3141), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3145), 1, aux_sym__dotted_identifier_token1, - ACTIONS(3124), 1, + ACTIONS(3169), 1, sym_identifier, - STATE(1874), 1, + STATE(1877), 1, sym_variable_expansion, - STATE(2131), 1, + STATE(2210), 1, sym_concatenation, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3122), 3, + ACTIONS(3167), 3, anon_sym_append, anon_sym_prepend, anon_sym_remove, - [102602] = 8, - ACTIONS(2776), 1, + [102921] = 5, + ACTIONS(2777), 1, + anon_sym_as, + ACTIONS(2785), 1, + anon_sym_and, + ACTIONS(2787), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3163), 5, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [102942] = 8, + ACTIONS(2801), 1, anon_sym_as, - ACTIONS(2778), 1, + ACTIONS(2803), 1, anon_sym_if, - ACTIONS(2780), 1, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(2782), 1, + ACTIONS(2807), 1, anon_sym_or, - ACTIONS(3126), 1, + ACTIONS(3171), 1, anon_sym_COMMA, - STATE(1983), 1, + STATE(1981), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2994), 2, + ACTIONS(3017), 2, sym__newline, anon_sym_SEMI, - [102629] = 7, - ACTIONS(1373), 1, - anon_sym_except_STAR, - ACTIONS(1377), 1, - anon_sym_except, - ACTIONS(3128), 1, - anon_sym_finally, - STATE(678), 1, - sym_finally_clause, + [102969] = 3, + ACTIONS(1952), 1, + anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(537), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - STATE(538), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - [102654] = 9, - ACTIONS(3020), 1, + ACTIONS(1956), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [102986] = 9, + ACTIONS(3082), 1, anon_sym_as, - ACTIONS(3022), 1, + ACTIONS(3084), 1, anon_sym_if, - ACTIONS(3024), 1, + ACTIONS(3086), 1, anon_sym_and, - ACTIONS(3026), 1, + ACTIONS(3088), 1, anon_sym_or, - ACTIONS(3073), 1, + ACTIONS(3149), 1, anon_sym_COLON, - ACTIONS(3130), 1, + ACTIONS(3173), 1, anon_sym_RBRACK, - ACTIONS(3132), 1, + ACTIONS(3175), 1, anon_sym_COMMA, - STATE(2087), 1, + STATE(2231), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [103015] = 9, + ACTIONS(3082), 1, + anon_sym_as, + ACTIONS(3084), 1, + anon_sym_if, + ACTIONS(3086), 1, + anon_sym_and, + ACTIONS(3088), 1, + anon_sym_or, + ACTIONS(3149), 1, + anon_sym_COLON, + ACTIONS(3177), 1, + anon_sym_RBRACK, + ACTIONS(3179), 1, + anon_sym_COMMA, + STATE(2078), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [102683] = 3, - ACTIONS(2728), 1, + [103044] = 5, + ACTIONS(2777), 1, + anon_sym_as, + ACTIONS(2785), 1, + anon_sym_and, + ACTIONS(2787), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3163), 5, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [103065] = 3, + ACTIONS(2729), 1, anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2730), 7, + ACTIONS(2731), 7, anon_sym_QMARK_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_COLON_EQ, @@ -117948,13 +118948,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_PLUS, anon_sym_DOT_EQ, anon_sym_EQ_DOT, - [102700] = 3, - ACTIONS(2724), 1, + [103082] = 8, + ACTIONS(2801), 1, + anon_sym_as, + ACTIONS(2803), 1, + anon_sym_if, + ACTIONS(2805), 1, + anon_sym_and, + ACTIONS(2807), 1, + anon_sym_or, + ACTIONS(3183), 1, + anon_sym_COMMA, + STATE(1991), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3181), 2, + sym__newline, + anon_sym_SEMI, + [103109] = 3, + ACTIONS(2733), 1, anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2726), 7, + ACTIONS(2735), 7, anon_sym_QMARK_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_COLON_EQ, @@ -117962,135 +118981,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_PLUS, anon_sym_DOT_EQ, anon_sym_EQ_DOT, - [102717] = 9, - ACTIONS(3020), 1, + [103126] = 5, + ACTIONS(2743), 1, + anon_sym_as, + ACTIONS(2751), 1, + anon_sym_and, + ACTIONS(2753), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3163), 5, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [103147] = 4, + ACTIONS(3115), 1, + anon_sym_and, + ACTIONS(3117), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2885), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + [103166] = 8, + ACTIONS(2801), 1, anon_sym_as, - ACTIONS(3022), 1, + ACTIONS(2803), 1, anon_sym_if, - ACTIONS(3024), 1, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(3026), 1, + ACTIONS(2807), 1, anon_sym_or, - ACTIONS(3073), 1, - anon_sym_COLON, - ACTIONS(3134), 1, - anon_sym_RBRACK, - ACTIONS(3136), 1, + ACTIONS(3171), 1, anon_sym_COMMA, - STATE(2116), 1, - aux_sym_subscript_repeat1, + STATE(1981), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [102746] = 5, - ACTIONS(2740), 1, + ACTIONS(3185), 2, + sym__newline, + anon_sym_SEMI, + [103193] = 5, + ACTIONS(2763), 1, anon_sym_as, - ACTIONS(2748), 1, + ACTIONS(2771), 1, anon_sym_and, - ACTIONS(2750), 1, + ACTIONS(2773), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3138), 5, - anon_sym_RBRACE, + ACTIONS(3163), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [102767] = 5, - ACTIONS(2802), 1, + [103214] = 9, + ACTIONS(3082), 1, + anon_sym_as, + ACTIONS(3084), 1, + anon_sym_if, + ACTIONS(3086), 1, + anon_sym_and, + ACTIONS(3088), 1, + anon_sym_or, + ACTIONS(3149), 1, + anon_sym_COLON, + ACTIONS(3187), 1, + anon_sym_RBRACK, + ACTIONS(3189), 1, + anon_sym_COMMA, + STATE(2199), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [103243] = 5, + ACTIONS(2743), 1, anon_sym_as, - ACTIONS(2810), 1, + ACTIONS(2751), 1, anon_sym_and, - ACTIONS(2812), 1, + ACTIONS(2753), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3138), 5, - anon_sym_RBRACK, + ACTIONS(3163), 5, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [102788] = 9, - ACTIONS(3020), 1, + [103264] = 8, + ACTIONS(2801), 1, anon_sym_as, - ACTIONS(3022), 1, + ACTIONS(2803), 1, anon_sym_if, - ACTIONS(3024), 1, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(3026), 1, + ACTIONS(2807), 1, anon_sym_or, - ACTIONS(3073), 1, - anon_sym_COLON, - ACTIONS(3140), 1, - anon_sym_RBRACK, - ACTIONS(3142), 1, + ACTIONS(3171), 1, anon_sym_COMMA, - STATE(2074), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [102817] = 7, - ACTIONS(3077), 1, - anon_sym_fakeroot, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LBRACE_AT, - ACTIONS(3083), 1, - sym_identifier, - ACTIONS(3120), 1, - sym_shell_content, - ACTIONS(3144), 1, - anon_sym_RBRACE, + STATE(1981), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1689), 3, - sym_function_definition, - sym_inline_python, - aux_sym_function_definition_repeat1, - [102842] = 5, - ACTIONS(2740), 1, + ACTIONS(3191), 2, + sym__newline, + anon_sym_SEMI, + [103291] = 5, + ACTIONS(2777), 1, anon_sym_as, - ACTIONS(2748), 1, + ACTIONS(2785), 1, anon_sym_and, - ACTIONS(2750), 1, + ACTIONS(2787), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3138), 5, - anon_sym_RBRACE, + ACTIONS(3163), 5, + anon_sym_RBRACK, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [102863] = 5, - ACTIONS(2802), 1, + [103312] = 8, + ACTIONS(2801), 1, anon_sym_as, - ACTIONS(2810), 1, + ACTIONS(2803), 1, + anon_sym_if, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(2812), 1, + ACTIONS(2807), 1, anon_sym_or, + ACTIONS(3183), 1, + anon_sym_COMMA, + STATE(1979), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3138), 5, - anon_sym_RBRACK, - anon_sym_COMMA, + ACTIONS(3193), 2, + sym__newline, + anon_sym_SEMI, + [103339] = 8, + ACTIONS(2801), 1, + anon_sym_as, + ACTIONS(2803), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - [102884] = 3, - ACTIONS(1964), 1, + ACTIONS(2805), 1, + anon_sym_and, + ACTIONS(2807), 1, + anon_sym_or, + ACTIONS(3197), 1, + anon_sym_COMMA, + STATE(1978), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3195), 2, + sym__newline, + anon_sym_SEMI, + [103366] = 3, + ACTIONS(1952), 1, anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1958), 7, + ACTIONS(1956), 7, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_if, @@ -118098,43 +119170,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [102901] = 3, - ACTIONS(3069), 1, + [103383] = 9, + ACTIONS(3082), 1, anon_sym_as, + ACTIONS(3084), 1, + anon_sym_if, + ACTIONS(3086), 1, + anon_sym_and, + ACTIONS(3088), 1, + anon_sym_or, + ACTIONS(3149), 1, + anon_sym_COLON, + ACTIONS(3199), 1, + anon_sym_RBRACK, + ACTIONS(3201), 1, + anon_sym_COMMA, + STATE(2037), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2732), 7, - anon_sym_RBRACK, + [103412] = 3, + ACTIONS(3115), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2755), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, anon_sym_or, - [102918] = 5, - ACTIONS(2758), 1, + [103429] = 5, + ACTIONS(2743), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2751), 1, anon_sym_and, - ACTIONS(2768), 1, + ACTIONS(2753), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3138), 5, - anon_sym_RPAREN, + ACTIONS(3163), 5, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [102939] = 3, - ACTIONS(3148), 1, + [103450] = 3, + ACTIONS(3205), 1, aux_sym_string_token1, - ACTIONS(2592), 2, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(3146), 7, + ACTIONS(3203), 7, anon_sym_DQUOTE, aux_sym_string_token2, anon_sym_DOLLARBB_ENV_PASSTHROUGH, @@ -118142,116 +119234,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOLLAR_LBRACE_AT, anon_sym_DOLLAR_LBRACE, - [102956] = 7, - ACTIONS(3150), 1, - anon_sym_fakeroot, - ACTIONS(3153), 1, - anon_sym_RBRACE, - ACTIONS(3155), 1, - anon_sym_DOLLAR_LBRACE_AT, - ACTIONS(3158), 1, - sym_identifier, - ACTIONS(3161), 1, - sym_shell_content, - ACTIONS(3), 2, + [103467] = 3, + ACTIONS(2735), 1, + aux_sym_string_token1, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - STATE(1689), 3, - sym_function_definition, - sym_inline_python, - aux_sym_function_definition_repeat1, - [102981] = 9, - ACTIONS(3020), 1, + ACTIONS(2733), 7, + anon_sym_DQUOTE, + aux_sym_string_token2, + anon_sym_DOLLARBB_ENV_PASSTHROUGH, + anon_sym_DOLLARBB_ENV_PASSTHROUGH_ADDITIONS, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACE_AT, + anon_sym_DOLLAR_LBRACE, + [103484] = 9, + ACTIONS(3082), 1, anon_sym_as, - ACTIONS(3022), 1, + ACTIONS(3084), 1, anon_sym_if, - ACTIONS(3024), 1, + ACTIONS(3086), 1, anon_sym_and, - ACTIONS(3026), 1, + ACTIONS(3088), 1, anon_sym_or, - ACTIONS(3073), 1, + ACTIONS(3149), 1, anon_sym_COLON, - ACTIONS(3164), 1, + ACTIONS(3207), 1, anon_sym_RBRACK, - ACTIONS(3166), 1, + ACTIONS(3209), 1, anon_sym_COMMA, - STATE(2130), 1, + STATE(2155), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [103010] = 6, - ACTIONS(2802), 1, + [103513] = 6, + ACTIONS(2777), 1, anon_sym_as, - ACTIONS(2804), 1, + ACTIONS(2779), 1, anon_sym_if, - ACTIONS(2810), 1, + ACTIONS(2785), 1, anon_sym_and, - ACTIONS(2812), 1, + ACTIONS(2787), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2871), 4, + ACTIONS(2841), 4, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_async, anon_sym_for, - [103033] = 5, - ACTIONS(2740), 1, + [103536] = 6, + ACTIONS(2763), 1, anon_sym_as, - ACTIONS(2748), 1, + ACTIONS(2765), 1, + anon_sym_if, + ACTIONS(2771), 1, anon_sym_and, - ACTIONS(2750), 1, + ACTIONS(2773), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3138), 5, - anon_sym_RBRACE, + ACTIONS(2855), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [103559] = 6, + ACTIONS(2743), 1, + anon_sym_as, + ACTIONS(2745), 1, anon_sym_if, + ACTIONS(2751), 1, + anon_sym_and, + ACTIONS(2753), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3211), 4, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_async, anon_sym_for, - [103054] = 5, - ACTIONS(2810), 1, + [103582] = 5, + ACTIONS(2785), 1, anon_sym_and, - ACTIONS(2812), 1, + ACTIONS(2787), 1, anon_sym_or, - ACTIONS(3168), 1, + ACTIONS(3213), 1, anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2791), 5, + ACTIONS(2850), 5, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [103075] = 5, - ACTIONS(2810), 1, + [103603] = 5, + ACTIONS(2785), 1, anon_sym_and, - ACTIONS(2812), 1, + ACTIONS(2787), 1, anon_sym_or, - ACTIONS(3013), 1, + ACTIONS(3124), 1, anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2814), 5, + ACTIONS(2885), 5, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [103096] = 3, - ACTIONS(3015), 1, + [103624] = 3, + ACTIONS(3073), 1, anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2752), 7, + ACTIONS(2755), 7, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_if, @@ -118259,455 +119365,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [103113] = 4, - ACTIONS(2810), 1, + [103641] = 4, + ACTIONS(2785), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3073), 1, anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2752), 6, + ACTIONS(2755), 6, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_or, - [103132] = 8, - ACTIONS(2774), 1, - anon_sym_COMMA, - ACTIONS(2776), 1, - anon_sym_as, - ACTIONS(2778), 1, - anon_sym_if, - ACTIONS(2780), 1, - anon_sym_and, - ACTIONS(2782), 1, - anon_sym_or, - STATE(1992), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2772), 2, - sym__newline, - anon_sym_SEMI, - [103159] = 6, - ACTIONS(3056), 1, - anon_sym_as, - ACTIONS(3058), 1, - anon_sym_if, - ACTIONS(3060), 1, - anon_sym_and, - ACTIONS(3062), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3064), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - [103182] = 6, - ACTIONS(2758), 1, + [103660] = 6, + ACTIONS(2763), 1, anon_sym_as, - ACTIONS(2760), 1, + ACTIONS(2765), 1, anon_sym_if, - ACTIONS(2766), 1, + ACTIONS(2771), 1, anon_sym_and, - ACTIONS(2768), 1, + ACTIONS(2773), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2837), 4, + ACTIONS(2861), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_async, anon_sym_for, - [103205] = 8, - ACTIONS(2776), 1, - anon_sym_as, - ACTIONS(2778), 1, - anon_sym_if, - ACTIONS(2780), 1, - anon_sym_and, - ACTIONS(2782), 1, - anon_sym_or, - ACTIONS(3126), 1, - anon_sym_COMMA, - STATE(1983), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3171), 2, - sym__newline, - anon_sym_SEMI, - [103232] = 8, - ACTIONS(2776), 1, - anon_sym_as, - ACTIONS(2778), 1, - anon_sym_if, - ACTIONS(2780), 1, - anon_sym_and, - ACTIONS(2782), 1, - anon_sym_or, - ACTIONS(3126), 1, - anon_sym_COMMA, - STATE(1983), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, + [103683] = 3, + ACTIONS(2731), 1, + aux_sym_string_token1, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(2653), 2, - sym__newline, - anon_sym_SEMI, - [103259] = 7, - ACTIONS(31), 1, + ACTIONS(2729), 7, + anon_sym_DQUOTE, + aux_sym_string_token2, + anon_sym_DOLLARBB_ENV_PASSTHROUGH, + anon_sym_DOLLARBB_ENV_PASSTHROUGH_ADDITIONS, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACE_AT, anon_sym_DOLLAR_LBRACE, - ACTIONS(37), 1, + [103700] = 7, + ACTIONS(33), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(39), 1, aux_sym__dotted_identifier_token1, - ACTIONS(3175), 1, + ACTIONS(3218), 1, sym_identifier, - STATE(1536), 1, + STATE(1525), 1, sym_variable_expansion, - STATE(1617), 1, + STATE(1555), 1, sym_concatenation, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3173), 3, + ACTIONS(3216), 3, anon_sym_append, anon_sym_prepend, anon_sym_remove, - [103284] = 7, - ACTIONS(3077), 1, - anon_sym_fakeroot, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LBRACE_AT, - ACTIONS(3083), 1, - sym_identifier, - ACTIONS(3177), 1, - anon_sym_RBRACE, - ACTIONS(3179), 1, - sym_shell_content, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - STATE(1712), 3, - sym_function_definition, - sym_inline_python, - aux_sym_function_definition_repeat1, - [103309] = 9, - ACTIONS(3020), 1, + [103725] = 9, + ACTIONS(3082), 1, anon_sym_as, - ACTIONS(3022), 1, + ACTIONS(3084), 1, anon_sym_if, - ACTIONS(3024), 1, + ACTIONS(3086), 1, anon_sym_and, - ACTIONS(3026), 1, + ACTIONS(3088), 1, anon_sym_or, - ACTIONS(3073), 1, + ACTIONS(3149), 1, anon_sym_COLON, - ACTIONS(3181), 1, + ACTIONS(3220), 1, anon_sym_RBRACK, - ACTIONS(3183), 1, + ACTIONS(3222), 1, anon_sym_COMMA, - STATE(2225), 1, + STATE(2042), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [103338] = 8, - ACTIONS(2776), 1, - anon_sym_as, - ACTIONS(2778), 1, - anon_sym_if, - ACTIONS(2780), 1, + [103754] = 3, + ACTIONS(3094), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3096), 7, + anon_sym_QMARK_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_EQ_PLUS, + anon_sym_DOT_EQ, + anon_sym_EQ_DOT, + [103771] = 5, + ACTIONS(3115), 1, anon_sym_and, - ACTIONS(2782), 1, + ACTIONS(3117), 1, anon_sym_or, - ACTIONS(3126), 1, - anon_sym_COMMA, - STATE(1983), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3224), 1, + anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3185), 2, + ACTIONS(2850), 5, sym__newline, anon_sym_SEMI, - [103365] = 8, - ACTIONS(2776), 1, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + [103792] = 6, + ACTIONS(3111), 1, anon_sym_as, - ACTIONS(2778), 1, + ACTIONS(3113), 1, anon_sym_if, - ACTIONS(2780), 1, + ACTIONS(3115), 1, anon_sym_and, - ACTIONS(2782), 1, + ACTIONS(3117), 1, anon_sym_or, - ACTIONS(3104), 1, - anon_sym_COMMA, - STATE(1961), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3187), 2, + ACTIONS(2841), 4, sym__newline, anon_sym_SEMI, - [103392] = 7, - ACTIONS(31), 1, + anon_sym_from, + anon_sym_COMMA, + [103815] = 7, + ACTIONS(33), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(37), 1, + ACTIONS(39), 1, aux_sym__dotted_identifier_token1, - ACTIONS(3191), 1, + ACTIONS(3229), 1, sym_identifier, - STATE(1524), 1, + STATE(1527), 1, sym_variable_expansion, - STATE(1540), 1, + STATE(1580), 1, sym_concatenation, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3189), 3, + ACTIONS(3227), 3, anon_sym_append, anon_sym_prepend, anon_sym_remove, - [103417] = 7, - ACTIONS(3077), 1, - anon_sym_fakeroot, - ACTIONS(3079), 1, - anon_sym_RBRACE, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LBRACE_AT, - ACTIONS(3083), 1, - sym_identifier, - ACTIONS(3120), 1, - sym_shell_content, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - STATE(1689), 3, - sym_function_definition, - sym_inline_python, - aux_sym_function_definition_repeat1, - [103442] = 6, - ACTIONS(2758), 1, + [103840] = 5, + ACTIONS(2763), 1, anon_sym_as, - ACTIONS(2760), 1, - anon_sym_if, - ACTIONS(2766), 1, + ACTIONS(2771), 1, anon_sym_and, - ACTIONS(2768), 1, + ACTIONS(2773), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2863), 4, + ACTIONS(3163), 5, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, - [103465] = 3, - ACTIONS(3028), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3030), 7, - anon_sym_QMARK_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_COLON_EQ, - anon_sym_PLUS_EQ, - anon_sym_EQ_PLUS, - anon_sym_DOT_EQ, - anon_sym_EQ_DOT, - [103482] = 7, - ACTIONS(3077), 1, - anon_sym_fakeroot, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LBRACE_AT, - ACTIONS(3083), 1, - sym_identifier, - ACTIONS(3120), 1, - sym_shell_content, - ACTIONS(3193), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - STATE(1689), 3, - sym_function_definition, - sym_inline_python, - aux_sym_function_definition_repeat1, - [103507] = 7, - ACTIONS(3077), 1, - anon_sym_fakeroot, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LBRACE_AT, - ACTIONS(3083), 1, - sym_identifier, - ACTIONS(3120), 1, - sym_shell_content, - ACTIONS(3195), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - STATE(1689), 3, - sym_function_definition, - sym_inline_python, - aux_sym_function_definition_repeat1, - [103532] = 7, - ACTIONS(3077), 1, - anon_sym_fakeroot, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LBRACE_AT, - ACTIONS(3083), 1, - sym_identifier, - ACTIONS(3193), 1, - anon_sym_RBRACE, - ACTIONS(3197), 1, - sym_shell_content, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - STATE(1682), 3, - sym_function_definition, - sym_inline_python, - aux_sym_function_definition_repeat1, - [103557] = 7, - ACTIONS(1373), 1, - anon_sym_except_STAR, - ACTIONS(1377), 1, - anon_sym_except, - ACTIONS(3128), 1, - anon_sym_finally, - STATE(651), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - STATE(539), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - STATE(540), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - [103582] = 3, - ACTIONS(2726), 1, - aux_sym_string_token1, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2724), 7, - anon_sym_DQUOTE, - aux_sym_string_token2, - anon_sym_DOLLARBB_ENV_PASSTHROUGH, - anon_sym_DOLLARBB_ENV_PASSTHROUGH_ADDITIONS, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LBRACE_AT, - anon_sym_DOLLAR_LBRACE, - [103599] = 6, - ACTIONS(2802), 1, + [103861] = 6, + ACTIONS(2777), 1, anon_sym_as, - ACTIONS(2804), 1, + ACTIONS(2779), 1, anon_sym_if, - ACTIONS(2810), 1, + ACTIONS(2785), 1, anon_sym_and, - ACTIONS(2812), 1, + ACTIONS(2787), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2863), 4, + ACTIONS(2861), 4, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_async, anon_sym_for, - [103622] = 9, - ACTIONS(3020), 1, - anon_sym_as, - ACTIONS(3022), 1, - anon_sym_if, - ACTIONS(3024), 1, + [103884] = 4, + ACTIONS(2771), 1, anon_sym_and, - ACTIONS(3026), 1, - anon_sym_or, ACTIONS(3073), 1, - anon_sym_COLON, - ACTIONS(3199), 1, - anon_sym_RBRACK, - ACTIONS(3201), 1, - anon_sym_COMMA, - STATE(2195), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [103651] = 8, - ACTIONS(2776), 1, - anon_sym_as, - ACTIONS(2778), 1, - anon_sym_if, - ACTIONS(2780), 1, - anon_sym_and, - ACTIONS(2782), 1, - anon_sym_or, - ACTIONS(3205), 1, - anon_sym_COMMA, - STATE(1959), 1, - aux_sym_print_statement_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3203), 2, - sym__newline, - anon_sym_SEMI, - [103678] = 7, - ACTIONS(3077), 1, - anon_sym_fakeroot, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LBRACE_AT, - ACTIONS(3083), 1, - sym_identifier, - ACTIONS(3207), 1, - anon_sym_RBRACE, - ACTIONS(3209), 1, - sym_shell_content, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - STATE(1671), 3, - sym_function_definition, - sym_inline_python, - aux_sym_function_definition_repeat1, - [103703] = 4, - ACTIONS(2766), 1, - anon_sym_and, - ACTIONS(3015), 1, anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2752), 6, + ACTIONS(2755), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_or, - [103722] = 3, - ACTIONS(3015), 1, + [103903] = 3, + ACTIONS(3073), 1, anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2752), 7, + ACTIONS(2755), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -118715,6730 +119576,6593 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [103739] = 5, - ACTIONS(2766), 1, + [103920] = 5, + ACTIONS(2771), 1, anon_sym_and, - ACTIONS(2768), 1, + ACTIONS(2773), 1, anon_sym_or, - ACTIONS(3013), 1, + ACTIONS(3124), 1, anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2814), 5, + ACTIONS(2885), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [103760] = 5, - ACTIONS(2766), 1, + [103941] = 5, + ACTIONS(2771), 1, anon_sym_and, - ACTIONS(2768), 1, + ACTIONS(2773), 1, anon_sym_or, - ACTIONS(3211), 1, + ACTIONS(3231), 1, anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2791), 5, + ACTIONS(2850), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [103781] = 6, - ACTIONS(2758), 1, + [103962] = 6, + ACTIONS(2763), 1, anon_sym_as, - ACTIONS(2760), 1, + ACTIONS(2765), 1, anon_sym_if, - ACTIONS(2766), 1, + ACTIONS(2771), 1, anon_sym_and, - ACTIONS(2768), 1, + ACTIONS(2773), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2871), 4, + ACTIONS(2841), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_async, anon_sym_for, - [103804] = 7, - ACTIONS(3077), 1, - anon_sym_fakeroot, - ACTIONS(3081), 1, + [103985] = 6, + ACTIONS(3236), 1, + sym_inherit_path, + ACTIONS(3239), 1, anon_sym_DOLLAR_LBRACE_AT, - ACTIONS(3083), 1, - sym_identifier, - ACTIONS(3120), 1, - sym_shell_content, - ACTIONS(3207), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, + ACTIONS(3242), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - STATE(1689), 3, - sym_function_definition, + ACTIONS(3234), 2, + aux_sym_recipe_token1, + anon_sym_, + STATE(1731), 3, sym_inline_python, - aux_sym_function_definition_repeat1, - [103829] = 9, - ACTIONS(3020), 1, + sym_variable_expansion, + aux_sym_inherit_directive_repeat1, + [104008] = 8, + ACTIONS(2801), 1, anon_sym_as, - ACTIONS(3022), 1, + ACTIONS(2803), 1, anon_sym_if, - ACTIONS(3024), 1, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(3026), 1, + ACTIONS(2807), 1, anon_sym_or, - ACTIONS(3073), 1, - anon_sym_COLON, - ACTIONS(3214), 1, - anon_sym_RBRACK, - ACTIONS(3216), 1, + ACTIONS(3171), 1, anon_sym_COMMA, - STATE(2190), 1, - aux_sym_subscript_repeat1, + STATE(1981), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [103858] = 6, - ACTIONS(2802), 1, + ACTIONS(2649), 2, + sym__newline, + anon_sym_SEMI, + [104035] = 8, + ACTIONS(2799), 1, + anon_sym_COMMA, + ACTIONS(2801), 1, anon_sym_as, - ACTIONS(2804), 1, + ACTIONS(2803), 1, anon_sym_if, - ACTIONS(2810), 1, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(2812), 1, + ACTIONS(2807), 1, anon_sym_or, + STATE(1990), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2837), 4, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [103881] = 3, - ACTIONS(2730), 1, - aux_sym_string_token1, - ACTIONS(2592), 2, + ACTIONS(2797), 2, + sym__newline, + anon_sym_SEMI, + [104062] = 7, + ACTIONS(1375), 1, + anon_sym_except, + ACTIONS(1379), 1, + anon_sym_except_STAR, + ACTIONS(3165), 1, + anon_sym_finally, + STATE(653), 1, + sym_finally_clause, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2728), 7, - anon_sym_DQUOTE, - aux_sym_string_token2, - anon_sym_DOLLARBB_ENV_PASSTHROUGH, - anon_sym_DOLLARBB_ENV_PASSTHROUGH_ADDITIONS, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LBRACE_AT, - anon_sym_DOLLAR_LBRACE, - [103898] = 5, - ACTIONS(2758), 1, + STATE(537), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(538), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [104087] = 3, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(2766), 1, - anon_sym_and, - ACTIONS(2768), 1, - anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3138), 5, + ACTIONS(2757), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [103919] = 5, - ACTIONS(2802), 1, + anon_sym_and, + anon_sym_or, + [104104] = 6, + ACTIONS(3111), 1, anon_sym_as, - ACTIONS(2810), 1, + ACTIONS(3113), 1, + anon_sym_if, + ACTIONS(3115), 1, anon_sym_and, - ACTIONS(2812), 1, + ACTIONS(3117), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3138), 5, - anon_sym_RBRACK, + ACTIONS(3126), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [103940] = 9, - ACTIONS(3020), 1, + [104127] = 9, + ACTIONS(3082), 1, anon_sym_as, - ACTIONS(3022), 1, + ACTIONS(3084), 1, anon_sym_if, - ACTIONS(3024), 1, + ACTIONS(3086), 1, anon_sym_and, - ACTIONS(3026), 1, + ACTIONS(3088), 1, anon_sym_or, - ACTIONS(3073), 1, + ACTIONS(3149), 1, anon_sym_COLON, - ACTIONS(3218), 1, + ACTIONS(3245), 1, anon_sym_RBRACK, - ACTIONS(3220), 1, + ACTIONS(3247), 1, anon_sym_COMMA, - STATE(2142), 1, + STATE(2197), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [103969] = 3, - ACTIONS(3069), 1, + [104156] = 6, + ACTIONS(2777), 1, anon_sym_as, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2732), 7, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2779), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(2785), 1, anon_sym_and, + ACTIONS(2787), 1, anon_sym_or, - [103986] = 7, - ACTIONS(3077), 1, - anon_sym_fakeroot, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LBRACE_AT, - ACTIONS(3083), 1, - sym_identifier, - ACTIONS(3195), 1, - anon_sym_RBRACE, - ACTIONS(3222), 1, - sym_shell_content, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1725), 3, - sym_function_definition, - sym_inline_python, - aux_sym_function_definition_repeat1, - [104011] = 6, - ACTIONS(2740), 1, + ACTIONS(2855), 4, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [104179] = 7, + ACTIONS(3082), 1, anon_sym_as, - ACTIONS(2742), 1, + ACTIONS(3084), 1, anon_sym_if, - ACTIONS(2748), 1, + ACTIONS(3086), 1, anon_sym_and, - ACTIONS(2750), 1, + ACTIONS(3088), 1, anon_sym_or, + ACTIONS(3249), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3224), 4, - anon_sym_RBRACE, + ACTIONS(1275), 2, + anon_sym_RBRACK, anon_sym_COMMA, + [104203] = 6, + ACTIONS(2747), 1, anon_sym_async, + ACTIONS(2749), 1, anon_sym_for, - [104034] = 6, - ACTIONS(3228), 1, - sym_inherit_path, - ACTIONS(3231), 1, - anon_sym_DOLLAR_LBRACE_AT, - ACTIONS(3234), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3226), 2, - aux_sym_recipe_token1, - anon_sym_NULL, - STATE(1735), 3, - sym_inline_python, - sym_variable_expansion, - aux_sym_inherit_directive_repeat1, - [104057] = 3, - ACTIONS(1964), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(1958), 7, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3251), 1, + anon_sym_RBRACE, + ACTIONS(3253), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [104074] = 5, - ACTIONS(2758), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_and, - ACTIONS(2768), 1, - anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3138), 5, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(1756), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [104225] = 6, + ACTIONS(3255), 1, + anon_sym_RBRACE, + ACTIONS(3257), 1, anon_sym_if, + ACTIONS(3260), 1, anon_sym_async, + ACTIONS(3263), 1, anon_sym_for, - [104095] = 8, - ACTIONS(2744), 1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(1741), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [104247] = 8, + ACTIONS(2747), 1, anon_sym_async, - ACTIONS(2746), 1, + ACTIONS(2749), 1, anon_sym_for, - ACTIONS(3237), 1, + ACTIONS(3266), 1, anon_sym_RBRACE, - ACTIONS(3239), 1, + ACTIONS(3268), 1, anon_sym_COMMA, - STATE(1768), 1, + STATE(1740), 1, sym_for_in_clause, - STATE(2097), 1, + STATE(2072), 1, aux_sym_dictionary_repeat1, - STATE(2344), 1, + STATE(2375), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [104121] = 6, - ACTIONS(2776), 1, + [104273] = 5, + ACTIONS(2743), 1, anon_sym_as, - ACTIONS(2778), 1, - anon_sym_if, - ACTIONS(2780), 1, + ACTIONS(2751), 1, anon_sym_and, - ACTIONS(2782), 1, + ACTIONS(2753), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3241), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [104143] = 3, - ACTIONS(2730), 1, - aux_sym_string_token3, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2728), 6, - anon_sym_DOLLARBB_ENV_PASSTHROUGH, - anon_sym_DOLLARBB_ENV_PASSTHROUGH_ADDITIONS, - anon_sym_SQUOTE, - aux_sym_string_token4, - anon_sym_DOLLAR_LBRACE_AT, - anon_sym_DOLLAR_LBRACE, - [104159] = 8, - ACTIONS(2695), 1, - anon_sym_LPAREN, - ACTIONS(3243), 1, - anon_sym_LBRACK, - ACTIONS(3245), 1, - anon_sym_COLON, - ACTIONS(3247), 1, - sym__concat, - STATE(2004), 1, - aux_sym_concatenation_repeat1, - STATE(2145), 1, - aux_sym_override_repeat1, - STATE(2147), 1, - sym_variable_flag, + ACTIONS(3270), 4, + anon_sym_RBRACE, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [104293] = 7, + ACTIONS(3272), 1, + anon_sym_DOT, + ACTIONS(3274), 1, + anon_sym___future__, + ACTIONS(3276), 1, + sym_python_identifier, + STATE(2007), 1, + aux_sym_import_prefix_repeat1, + STATE(2205), 1, + sym_import_prefix, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [104185] = 5, - ACTIONS(2802), 1, + STATE(2435), 2, + sym_relative_import, + sym_dotted_name, + [104317] = 8, + ACTIONS(2928), 1, anon_sym_as, - ACTIONS(2810), 1, + ACTIONS(2930), 1, + anon_sym_if, + ACTIONS(2932), 1, anon_sym_and, - ACTIONS(2812), 1, + ACTIONS(2934), 1, anon_sym_or, + ACTIONS(3017), 1, + anon_sym_RPAREN, + ACTIONS(3278), 1, + anon_sym_COMMA, + STATE(2088), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3249), 4, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [104205] = 3, - ACTIONS(2726), 1, + [104343] = 3, + ACTIONS(3205), 1, aux_sym_string_token3, - ACTIONS(2592), 2, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(2724), 6, + ACTIONS(3203), 6, anon_sym_DOLLARBB_ENV_PASSTHROUGH, anon_sym_DOLLARBB_ENV_PASSTHROUGH_ADDITIONS, anon_sym_SQUOTE, aux_sym_string_token4, anon_sym_DOLLAR_LBRACE_AT, anon_sym_DOLLAR_LBRACE, - [104221] = 6, - ACTIONS(3251), 1, - anon_sym_RBRACK, - ACTIONS(3253), 1, - anon_sym_if, - ACTIONS(3256), 1, + [104359] = 6, + ACTIONS(2767), 1, anon_sym_async, - ACTIONS(3259), 1, + ACTIONS(2769), 1, anon_sym_for, + ACTIONS(3280), 1, + anon_sym_RPAREN, + ACTIONS(3282), 1, + anon_sym_if, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1744), 3, + STATE(1775), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [104243] = 8, - ACTIONS(3039), 1, - anon_sym_as, - ACTIONS(3041), 1, - anon_sym_if, - ACTIONS(3043), 1, - anon_sym_and, - ACTIONS(3045), 1, - anon_sym_or, - ACTIONS(3262), 1, - anon_sym_COLON, - ACTIONS(3264), 1, - anon_sym_COMMA, - STATE(2013), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [104269] = 8, - ACTIONS(2744), 1, + [104381] = 6, + ACTIONS(2781), 1, anon_sym_async, - ACTIONS(2746), 1, + ACTIONS(2783), 1, anon_sym_for, - ACTIONS(3266), 1, - anon_sym_RBRACE, - ACTIONS(3268), 1, - anon_sym_COMMA, - STATE(1768), 1, - sym_for_in_clause, - STATE(2025), 1, - aux_sym_dictionary_repeat1, - STATE(2364), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [104295] = 8, - ACTIONS(2901), 1, - anon_sym_as, - ACTIONS(2903), 1, + ACTIONS(3280), 1, + anon_sym_RBRACK, + ACTIONS(3284), 1, anon_sym_if, - ACTIONS(2905), 1, - anon_sym_and, - ACTIONS(2907), 1, - anon_sym_or, - ACTIONS(2994), 1, - anon_sym_RPAREN, - ACTIONS(3270), 1, - anon_sym_COMMA, - STATE(2095), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [104321] = 6, - ACTIONS(2762), 1, + STATE(1760), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [104403] = 6, + ACTIONS(2767), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2769), 1, anon_sym_for, - ACTIONS(3272), 1, + ACTIONS(3251), 1, anon_sym_RPAREN, - ACTIONS(3274), 1, + ACTIONS(3282), 1, anon_sym_if, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1758), 3, + STATE(1747), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [104343] = 7, - ACTIONS(3020), 1, + [104425] = 7, + ACTIONS(1239), 1, + anon_sym_COLON, + ACTIONS(3082), 1, anon_sym_as, - ACTIONS(3022), 1, + ACTIONS(3084), 1, anon_sym_if, - ACTIONS(3024), 1, + ACTIONS(3086), 1, anon_sym_and, - ACTIONS(3026), 1, + ACTIONS(3088), 1, anon_sym_or, - ACTIONS(3073), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3276), 2, + ACTIONS(1237), 2, anon_sym_RBRACK, anon_sym_COMMA, - [104367] = 7, - ACTIONS(3020), 1, - anon_sym_as, - ACTIONS(3022), 1, - anon_sym_if, - ACTIONS(3024), 1, - anon_sym_and, - ACTIONS(3026), 1, - anon_sym_or, - ACTIONS(3278), 1, + [104449] = 8, + ACTIONS(2747), 1, + anon_sym_async, + ACTIONS(2749), 1, + anon_sym_for, + ACTIONS(3286), 1, + anon_sym_RBRACE, + ACTIONS(3288), 1, + anon_sym_COMMA, + STATE(1740), 1, + sym_for_in_clause, + STATE(2188), 1, + aux_sym_dictionary_repeat1, + STATE(2399), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [104475] = 3, + ACTIONS(2731), 1, + aux_sym_string_token3, + ACTIONS(2605), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2729), 6, + anon_sym_DOLLARBB_ENV_PASSTHROUGH, + anon_sym_DOLLARBB_ENV_PASSTHROUGH_ADDITIONS, + anon_sym_SQUOTE, + aux_sym_string_token4, + anon_sym_DOLLAR_LBRACE_AT, + anon_sym_DOLLAR_LBRACE, + [104491] = 8, + ACTIONS(2708), 1, + anon_sym_LPAREN, + ACTIONS(3290), 1, + anon_sym_LBRACK, + ACTIONS(3292), 1, anon_sym_COLON, + ACTIONS(3294), 1, + sym__concat, + STATE(2004), 1, + aux_sym_concatenation_repeat1, + STATE(2175), 1, + sym_variable_flag, + STATE(2179), 1, + aux_sym_override_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1279), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - [104391] = 6, - ACTIONS(2806), 1, + [104517] = 8, + ACTIONS(2747), 1, anon_sym_async, - ACTIONS(2808), 1, + ACTIONS(2749), 1, anon_sym_for, - ACTIONS(3280), 1, - anon_sym_RBRACK, - ACTIONS(3282), 1, - anon_sym_if, + ACTIONS(3296), 1, + anon_sym_RBRACE, + ACTIONS(3298), 1, + anon_sym_COMMA, + STATE(1740), 1, + sym_for_in_clause, + STATE(2016), 1, + aux_sym_dictionary_repeat1, + STATE(2368), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1744), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [104413] = 8, - ACTIONS(3039), 1, - anon_sym_as, - ACTIONS(3041), 1, - anon_sym_if, - ACTIONS(3043), 1, + [104543] = 8, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3045), 1, + ACTIONS(3080), 1, anon_sym_or, - ACTIONS(3264), 1, - anon_sym_COMMA, - ACTIONS(3284), 1, + ACTIONS(3090), 1, + anon_sym_as, + ACTIONS(3092), 1, + anon_sym_if, + ACTIONS(3300), 1, anon_sym_COLON, + ACTIONS(3302), 1, + anon_sym_COMMA, STATE(2013), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [104439] = 6, - ACTIONS(3251), 1, - anon_sym_RBRACE, - ACTIONS(3286), 1, - anon_sym_if, - ACTIONS(3289), 1, + [104569] = 6, + ACTIONS(2747), 1, anon_sym_async, - ACTIONS(3292), 1, + ACTIONS(2749), 1, anon_sym_for, + ACTIONS(3253), 1, + anon_sym_if, + ACTIONS(3280), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1753), 3, + STATE(1741), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [104461] = 8, - ACTIONS(2744), 1, + [104591] = 8, + ACTIONS(2747), 1, anon_sym_async, - ACTIONS(2746), 1, + ACTIONS(2749), 1, anon_sym_for, - ACTIONS(3295), 1, + ACTIONS(3304), 1, anon_sym_RBRACE, - ACTIONS(3297), 1, + ACTIONS(3306), 1, anon_sym_COMMA, - STATE(1768), 1, + STATE(1740), 1, sym_for_in_clause, - STATE(2174), 1, + STATE(2181), 1, aux_sym_dictionary_repeat1, - STATE(2391), 1, + STATE(2443), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [104487] = 5, - ACTIONS(2740), 1, + [104617] = 8, + ACTIONS(3078), 1, + anon_sym_and, + ACTIONS(3080), 1, + anon_sym_or, + ACTIONS(3090), 1, + anon_sym_as, + ACTIONS(3092), 1, + anon_sym_if, + ACTIONS(3302), 1, + anon_sym_COMMA, + ACTIONS(3308), 1, + anon_sym_COLON, + STATE(2013), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [104643] = 5, + ACTIONS(2777), 1, anon_sym_as, - ACTIONS(2748), 1, + ACTIONS(2785), 1, anon_sym_and, - ACTIONS(2750), 1, + ACTIONS(2787), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3249), 4, - anon_sym_RBRACE, + ACTIONS(3270), 4, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [104663] = 6, + ACTIONS(3255), 1, + anon_sym_RBRACK, + ACTIONS(3310), 1, anon_sym_if, + ACTIONS(3313), 1, anon_sym_async, + ACTIONS(3316), 1, anon_sym_for, - [104507] = 6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(1760), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [104685] = 7, + ACTIONS(3082), 1, + anon_sym_as, + ACTIONS(3084), 1, + anon_sym_if, + ACTIONS(3086), 1, + anon_sym_and, + ACTIONS(3088), 1, + anon_sym_or, + ACTIONS(3149), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3319), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + [104709] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(2605), 1, sym_line_continuation, - ACTIONS(3303), 1, + ACTIONS(3325), 1, sym__not_escape_sequence, - STATE(1763), 1, + STATE(1769), 1, aux_sym_string_content_repeat1, - ACTIONS(3299), 2, + ACTIONS(3321), 2, sym_string_end, anon_sym_LBRACE, - ACTIONS(3301), 3, + ACTIONS(3323), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - [104529] = 8, - ACTIONS(2744), 1, + [104731] = 8, + ACTIONS(2747), 1, anon_sym_async, - ACTIONS(2746), 1, + ACTIONS(2749), 1, anon_sym_for, - ACTIONS(3305), 1, + ACTIONS(3327), 1, anon_sym_RBRACE, - ACTIONS(3307), 1, + ACTIONS(3329), 1, anon_sym_COMMA, - STATE(1768), 1, + STATE(1740), 1, sym_for_in_clause, - STATE(2177), 1, + STATE(2182), 1, aux_sym_dictionary_repeat1, - STATE(2433), 1, + STATE(2396), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [104555] = 6, - ACTIONS(2762), 1, + [104757] = 8, + ACTIONS(2747), 1, anon_sym_async, - ACTIONS(2764), 1, + ACTIONS(2749), 1, anon_sym_for, - ACTIONS(3274), 1, - anon_sym_if, - ACTIONS(3280), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - STATE(1769), 3, + ACTIONS(3331), 1, + anon_sym_RBRACE, + ACTIONS(3333), 1, + anon_sym_COMMA, + STATE(1740), 1, sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [104577] = 7, - ACTIONS(3309), 1, - anon_sym_DOT, - ACTIONS(3311), 1, - anon_sym___future__, - ACTIONS(3313), 1, - sym_python_identifier, - STATE(1957), 1, - aux_sym_import_prefix_repeat1, - STATE(2196), 1, - sym_import_prefix, + STATE(2065), 1, + aux_sym_dictionary_repeat1, + STATE(2552), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(2499), 2, - sym_relative_import, - sym_dotted_name, - [104601] = 3, - ACTIONS(3148), 1, - aux_sym_string_token3, - ACTIONS(2592), 2, + [104783] = 6, + ACTIONS(2801), 1, + anon_sym_as, + ACTIONS(2803), 1, + anon_sym_if, + ACTIONS(2805), 1, + anon_sym_and, + ACTIONS(2807), 1, + anon_sym_or, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3146), 6, - anon_sym_DOLLARBB_ENV_PASSTHROUGH, - anon_sym_DOLLARBB_ENV_PASSTHROUGH_ADDITIONS, - anon_sym_SQUOTE, - aux_sym_string_token4, - anon_sym_DOLLAR_LBRACE_AT, - anon_sym_DOLLAR_LBRACE, - [104617] = 8, - ACTIONS(2744), 1, + ACTIONS(3126), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [104805] = 8, + ACTIONS(2747), 1, anon_sym_async, - ACTIONS(2746), 1, + ACTIONS(2749), 1, anon_sym_for, - ACTIONS(3315), 1, + ACTIONS(3335), 1, anon_sym_RBRACE, - ACTIONS(3317), 1, + ACTIONS(3337), 1, anon_sym_COMMA, - STATE(1768), 1, + STATE(1740), 1, sym_for_in_clause, - STATE(2068), 1, + STATE(2101), 1, aux_sym_dictionary_repeat1, - STATE(2369), 1, + STATE(2520), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [104643] = 6, - ACTIONS(2744), 1, - anon_sym_async, - ACTIONS(2746), 1, - anon_sym_for, - ACTIONS(3280), 1, - anon_sym_RBRACE, - ACTIONS(3319), 1, + [104831] = 8, + ACTIONS(3339), 1, + anon_sym_LPAREN, + ACTIONS(3341), 1, + anon_sym_STAR, + ACTIONS(3343), 1, + sym_python_identifier, + STATE(1879), 1, + sym_dotted_name, + STATE(1969), 1, + sym_aliased_import, + STATE(2318), 1, + sym_wildcard_import, + STATE(2319), 1, + sym__import_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [104857] = 6, + ACTIONS(2801), 1, + anon_sym_as, + ACTIONS(2803), 1, anon_sym_if, + ACTIONS(2805), 1, + anon_sym_and, + ACTIONS(2807), 1, + anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1753), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [104665] = 6, + ACTIONS(3345), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [104879] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(2605), 1, sym_line_continuation, - ACTIONS(3326), 1, + ACTIONS(3352), 1, sym__not_escape_sequence, - STATE(1763), 1, + STATE(1769), 1, aux_sym_string_content_repeat1, - ACTIONS(3321), 2, + ACTIONS(3347), 2, sym_string_end, anon_sym_LBRACE, - ACTIONS(3323), 3, + ACTIONS(3349), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - [104687] = 7, - ACTIONS(1225), 1, - anon_sym_COLON, - ACTIONS(3020), 1, + [104901] = 6, + ACTIONS(2801), 1, anon_sym_as, - ACTIONS(3022), 1, + ACTIONS(2803), 1, anon_sym_if, - ACTIONS(3024), 1, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(3026), 1, + ACTIONS(2807), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1223), 2, + ACTIONS(3355), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [104923] = 8, + ACTIONS(3017), 1, anon_sym_RBRACK, + ACTIONS(3082), 1, + anon_sym_as, + ACTIONS(3084), 1, + anon_sym_if, + ACTIONS(3086), 1, + anon_sym_and, + ACTIONS(3088), 1, + anon_sym_or, + ACTIONS(3357), 1, anon_sym_COMMA, - [104711] = 8, - ACTIONS(2744), 1, + STATE(2103), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [104949] = 8, + ACTIONS(2747), 1, anon_sym_async, - ACTIONS(2746), 1, + ACTIONS(2749), 1, anon_sym_for, - ACTIONS(3329), 1, + ACTIONS(3359), 1, anon_sym_RBRACE, - ACTIONS(3331), 1, + ACTIONS(3361), 1, anon_sym_COMMA, - STATE(1768), 1, + STATE(1740), 1, sym_for_in_clause, - STATE(2044), 1, + STATE(2227), 1, aux_sym_dictionary_repeat1, - STATE(2540), 1, + STATE(2423), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [104737] = 6, - ACTIONS(2776), 1, - anon_sym_as, - ACTIONS(2778), 1, - anon_sym_if, - ACTIONS(2780), 1, - anon_sym_and, - ACTIONS(2782), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3333), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [104759] = 6, - ACTIONS(2806), 1, + [104975] = 6, + ACTIONS(2781), 1, anon_sym_async, - ACTIONS(2808), 1, + ACTIONS(2783), 1, anon_sym_for, - ACTIONS(3272), 1, + ACTIONS(3251), 1, anon_sym_RBRACK, - ACTIONS(3282), 1, + ACTIONS(3284), 1, anon_sym_if, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1751), 3, + STATE(1748), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [104781] = 6, - ACTIONS(2744), 1, - anon_sym_async, - ACTIONS(2746), 1, - anon_sym_for, - ACTIONS(3272), 1, - anon_sym_RBRACE, - ACTIONS(3319), 1, - anon_sym_if, - ACTIONS(3), 2, + [104997] = 3, + ACTIONS(2735), 1, + aux_sym_string_token3, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - STATE(1762), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [104803] = 6, - ACTIONS(3251), 1, + ACTIONS(2733), 6, + anon_sym_DOLLARBB_ENV_PASSTHROUGH, + anon_sym_DOLLARBB_ENV_PASSTHROUGH_ADDITIONS, + anon_sym_SQUOTE, + aux_sym_string_token4, + anon_sym_DOLLAR_LBRACE_AT, + anon_sym_DOLLAR_LBRACE, + [105013] = 6, + ACTIONS(3255), 1, anon_sym_RPAREN, - ACTIONS(3335), 1, + ACTIONS(3363), 1, anon_sym_if, - ACTIONS(3338), 1, + ACTIONS(3366), 1, anon_sym_async, - ACTIONS(3341), 1, + ACTIONS(3369), 1, anon_sym_for, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(1769), 3, + STATE(1775), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [104825] = 5, - ACTIONS(2758), 1, + [105035] = 5, + ACTIONS(2763), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(2771), 1, anon_sym_and, - ACTIONS(2768), 1, + ACTIONS(2773), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3249), 4, + ACTIONS(3270), 4, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - [104845] = 8, - ACTIONS(3344), 1, - anon_sym_LPAREN, - ACTIONS(3346), 1, - anon_sym_STAR, - ACTIONS(3348), 1, - sym_python_identifier, - STATE(1940), 1, - sym_dotted_name, - STATE(1973), 1, - sym_aliased_import, - STATE(2318), 1, - sym_wildcard_import, - STATE(2320), 1, - sym__import_list, + [105055] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3372), 3, + anon_sym_fakeroot, + anon_sym_DOLLAR_LBRACE, + sym_identifier, + ACTIONS(3374), 3, + sym_shell_content, + anon_sym_RBRACE, + anon_sym_DOLLAR_LBRACE_AT, + [105070] = 4, + ACTIONS(3378), 1, + anon_sym_COMMA, + STATE(1855), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [104871] = 8, - ACTIONS(2744), 1, + ACTIONS(3376), 4, + anon_sym_RBRACE, + anon_sym_if, anon_sym_async, - ACTIONS(2746), 1, anon_sym_for, - ACTIONS(3350), 1, - anon_sym_RBRACE, - ACTIONS(3352), 1, + [105087] = 5, + ACTIONS(3135), 1, + anon_sym_DOLLAR_LBRACE_AT, + ACTIONS(3137), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3380), 1, + sym_inherit_path, + ACTIONS(2605), 2, + sym_line_continuation, + sym_comment, + STATE(1679), 3, + sym_inline_python, + sym_variable_expansion, + aux_sym_inherit_directive_repeat1, + [105106] = 4, + ACTIONS(3384), 1, anon_sym_COMMA, - STATE(1768), 1, - sym_for_in_clause, - STATE(2222), 1, - aux_sym_dictionary_repeat1, - STATE(2417), 1, - sym__comprehension_clauses, + STATE(1832), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [104897] = 8, - ACTIONS(2744), 1, + ACTIONS(3382), 4, + anon_sym_RPAREN, + anon_sym_if, anon_sym_async, - ACTIONS(2746), 1, anon_sym_for, - ACTIONS(3354), 1, - anon_sym_RBRACE, - ACTIONS(3356), 1, + [105123] = 6, + ACTIONS(3078), 1, + anon_sym_and, + ACTIONS(3080), 1, + anon_sym_or, + ACTIONS(3090), 1, + anon_sym_as, + ACTIONS(3092), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3386), 2, + anon_sym_COLON, anon_sym_COMMA, - STATE(1768), 1, - sym_for_in_clause, - STATE(2175), 1, - aux_sym_dictionary_repeat1, - STATE(2393), 1, - sym__comprehension_clauses, + [105144] = 6, + ACTIONS(3078), 1, + anon_sym_and, + ACTIONS(3080), 1, + anon_sym_or, + ACTIONS(3090), 1, + anon_sym_as, + ACTIONS(3092), 1, + anon_sym_if, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [104923] = 8, - ACTIONS(2994), 1, + ACTIONS(3126), 2, + anon_sym_COLON, + anon_sym_COMMA, + [105165] = 4, + ACTIONS(3390), 1, + anon_sym_COMMA, + STATE(1805), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3388), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [105182] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3392), 6, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_PIPE, + [105195] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3394), 6, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_PIPE, + [105208] = 5, + ACTIONS(3398), 1, + anon_sym_COLON, + ACTIONS(3400), 1, + anon_sym_DOT, + ACTIONS(3402), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3396), 3, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + [105227] = 6, + ACTIONS(3082), 1, + anon_sym_as, + ACTIONS(3084), 1, + anon_sym_if, + ACTIONS(3086), 1, + anon_sym_and, + ACTIONS(3088), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1297), 2, anon_sym_RBRACK, - ACTIONS(3020), 1, + anon_sym_COMMA, + [105248] = 6, + ACTIONS(3082), 1, anon_sym_as, - ACTIONS(3022), 1, + ACTIONS(3084), 1, anon_sym_if, - ACTIONS(3024), 1, + ACTIONS(3086), 1, anon_sym_and, - ACTIONS(3026), 1, + ACTIONS(3088), 1, anon_sym_or, - ACTIONS(3358), 1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3404), 2, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(2167), 1, - aux_sym_assert_statement_repeat1, + [105269] = 4, + ACTIONS(3406), 1, + anon_sym_COMMA, + STATE(1833), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3382), 4, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [105286] = 4, + ACTIONS(3410), 1, + anon_sym_DOT, + STATE(1790), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [104949] = 6, - ACTIONS(2776), 1, - anon_sym_as, - ACTIONS(2778), 1, - anon_sym_if, - ACTIONS(2780), 1, - anon_sym_and, - ACTIONS(2782), 1, - anon_sym_or, - ACTIONS(3), 2, + ACTIONS(3408), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + [105303] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 1, + sym_line_continuation, + ACTIONS(3415), 1, + sym__not_escape_sequence, + ACTIONS(3413), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [105320] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 1, sym_line_continuation, - sym_comment, - ACTIONS(3064), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [104971] = 6, - ACTIONS(3039), 1, + ACTIONS(3419), 1, + sym__not_escape_sequence, + ACTIONS(3417), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [105337] = 6, + ACTIONS(2999), 1, anon_sym_as, - ACTIONS(3041), 1, + ACTIONS(3001), 1, anon_sym_if, - ACTIONS(3043), 1, + ACTIONS(3003), 1, anon_sym_and, - ACTIONS(3045), 1, + ACTIONS(3005), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3360), 2, - anon_sym_COLON, + ACTIONS(3421), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [104992] = 6, - ACTIONS(2901), 1, + [105358] = 6, + ACTIONS(2928), 1, anon_sym_as, - ACTIONS(2903), 1, + ACTIONS(2930), 1, anon_sym_if, - ACTIONS(2905), 1, + ACTIONS(2932), 1, anon_sym_and, - ACTIONS(2907), 1, + ACTIONS(2934), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3064), 2, + ACTIONS(3423), 2, anon_sym_RPAREN, anon_sym_COMMA, - [105013] = 4, - ACTIONS(3364), 1, - anon_sym_COMMA, - STATE(1842), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3362), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [105030] = 6, - ACTIONS(2986), 1, - anon_sym_as, - ACTIONS(2988), 1, - anon_sym_if, - ACTIONS(2990), 1, - anon_sym_and, - ACTIONS(2992), 1, - anon_sym_or, + [105379] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3366), 2, + ACTIONS(3425), 3, + anon_sym_fakeroot, + anon_sym_DOLLAR_LBRACE, + sym_identifier, + ACTIONS(3427), 3, + sym_shell_content, anon_sym_RBRACE, - anon_sym_COMMA, - [105051] = 7, - ACTIONS(3368), 1, + anon_sym_DOLLAR_LBRACE_AT, + [105394] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 1, + sym_line_continuation, + ACTIONS(3431), 1, + sym__not_escape_sequence, + ACTIONS(3429), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [105411] = 7, + ACTIONS(3433), 1, anon_sym_RBRACK, - ACTIONS(3370), 1, + ACTIONS(3435), 1, anon_sym_COLON, - ACTIONS(3372), 1, + ACTIONS(3437), 1, anon_sym_DOT, - ACTIONS(3374), 1, + ACTIONS(3439), 1, anon_sym_COMMA, - ACTIONS(3376), 1, + ACTIONS(3441), 1, anon_sym_PIPE, - STATE(2066), 1, + STATE(2068), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [105074] = 2, + [105434] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3378), 6, + ACTIONS(3443), 6, anon_sym_EQ, anon_sym_COLON, anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_PIPE, - [105087] = 2, + [105447] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3380), 6, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - [105100] = 5, - ACTIONS(3384), 1, - anon_sym_COLON, - ACTIONS(3386), 1, - anon_sym_DOT, - ACTIONS(3388), 1, - anon_sym_PIPE, + ACTIONS(3445), 3, + anon_sym_fakeroot, + anon_sym_DOLLAR_LBRACE, + sym_identifier, + ACTIONS(3447), 3, + sym_shell_content, + anon_sym_RBRACE, + anon_sym_DOLLAR_LBRACE_AT, + [105462] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3382), 3, + ACTIONS(3443), 6, + sym__newline, anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - [105119] = 6, - ACTIONS(3390), 1, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE, + [105475] = 6, + ACTIONS(3449), 1, anon_sym_EQ, - ACTIONS(3392), 1, + ACTIONS(3451), 1, anon_sym_COLON, - ACTIONS(3396), 1, + ACTIONS(3455), 1, anon_sym_DOT, - ACTIONS(3398), 1, + ACTIONS(3457), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3394), 2, - sym__newline, - anon_sym_SEMI, - [105140] = 6, - ACTIONS(2776), 1, - anon_sym_as, - ACTIONS(2778), 1, - anon_sym_if, - ACTIONS(2780), 1, - anon_sym_and, - ACTIONS(2782), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3400), 2, + ACTIONS(3453), 2, sym__newline, anon_sym_SEMI, - [105161] = 6, - ACTIONS(2901), 1, - anon_sym_as, - ACTIONS(2903), 1, - anon_sym_if, - ACTIONS(2905), 1, - anon_sym_and, - ACTIONS(2907), 1, - anon_sym_or, - ACTIONS(3), 2, + [105496] = 5, + ACTIONS(3135), 1, + anon_sym_DOLLAR_LBRACE_AT, + ACTIONS(3137), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3459), 1, + sym_inherit_path, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(3360), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [105182] = 6, - ACTIONS(2986), 1, + STATE(1671), 3, + sym_inline_python, + sym_variable_expansion, + aux_sym_inherit_directive_repeat1, + [105515] = 6, + ACTIONS(3082), 1, anon_sym_as, - ACTIONS(2988), 1, + ACTIONS(3084), 1, anon_sym_if, - ACTIONS(2990), 1, + ACTIONS(3086), 1, anon_sym_and, - ACTIONS(2992), 1, + ACTIONS(3088), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3402), 2, - anon_sym_RBRACE, + ACTIONS(3126), 2, + anon_sym_RBRACK, anon_sym_COMMA, - [105203] = 6, - ACTIONS(2776), 1, - anon_sym_as, - ACTIONS(2778), 1, - anon_sym_if, - ACTIONS(2780), 1, - anon_sym_and, - ACTIONS(2782), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3404), 2, - sym__newline, - anon_sym_SEMI, - [105224] = 6, - ACTIONS(3020), 1, - anon_sym_as, - ACTIONS(3022), 1, - anon_sym_if, - ACTIONS(3024), 1, - anon_sym_and, - ACTIONS(3026), 1, - anon_sym_or, + [105536] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3064), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - [105245] = 7, - ACTIONS(3370), 1, + ACTIONS(3461), 6, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(3372), 1, + anon_sym_RPAREN, anon_sym_DOT, - ACTIONS(3374), 1, anon_sym_COMMA, - ACTIONS(3376), 1, anon_sym_PIPE, - ACTIONS(3406), 1, - anon_sym_RBRACK, - STATE(2212), 1, - aux_sym_type_parameter_repeat1, + [105549] = 4, + ACTIONS(3463), 1, + anon_sym_COMMA, + STATE(1811), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [105268] = 6, - ACTIONS(3020), 1, + ACTIONS(3376), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [105566] = 6, + ACTIONS(2801), 1, anon_sym_as, - ACTIONS(3022), 1, + ACTIONS(2803), 1, anon_sym_if, - ACTIONS(3024), 1, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(3026), 1, + ACTIONS(2807), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3402), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - [105289] = 4, - ACTIONS(3410), 1, - anon_sym_DOT, - STATE(1793), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3408), 4, + ACTIONS(3465), 2, sym__newline, anon_sym_SEMI, - anon_sym_COMMA, + [105587] = 6, + ACTIONS(2801), 1, anon_sym_as, - [105306] = 4, - ACTIONS(3410), 1, - anon_sym_DOT, - STATE(1812), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(2803), 1, + anon_sym_if, + ACTIONS(2805), 1, + anon_sym_and, + ACTIONS(2807), 1, + anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3412), 4, + ACTIONS(3467), 2, sym__newline, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - [105323] = 2, + [105608] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3414), 6, + ACTIONS(3469), 6, anon_sym_EQ, anon_sym_COLON, anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_PIPE, - [105336] = 2, + [105621] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1460), 6, + ACTIONS(1470), 6, anon_sym_EQ, anon_sym_COLON, anon_sym_RPAREN, anon_sym_DOT, anon_sym_COMMA, anon_sym_PIPE, - [105349] = 6, - ACTIONS(2776), 1, - anon_sym_as, - ACTIONS(2778), 1, - anon_sym_if, - ACTIONS(2780), 1, - anon_sym_and, - ACTIONS(2782), 1, - anon_sym_or, + [105634] = 4, + ACTIONS(3473), 1, + anon_sym_DOT, + STATE(1790), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3037), 2, + ACTIONS(3471), 4, sym__newline, anon_sym_SEMI, - [105370] = 7, - ACTIONS(3416), 1, - aux_sym_recipe_token1, - ACTIONS(3418), 1, - anon_sym_NULL, - ACTIONS(3420), 1, - aux_sym_include_directive_token1, - ACTIONS(3422), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1826), 1, - aux_sym_include_directive_repeat1, - STATE(1985), 1, - sym_variable_expansion, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - [105393] = 7, - ACTIONS(3420), 1, - aux_sym_include_directive_token1, - ACTIONS(3422), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3424), 1, - aux_sym_recipe_token1, - ACTIONS(3426), 1, - anon_sym_NULL, - STATE(1826), 1, - aux_sym_include_directive_repeat1, - STATE(1985), 1, - sym_variable_expansion, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - [105416] = 2, + anon_sym_COMMA, + anon_sym_as, + [105651] = 4, + ACTIONS(3477), 1, + anon_sym_COMMA, + STATE(1811), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2770), 6, - sym__newline, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE, - [105429] = 2, + ACTIONS(3475), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [105668] = 6, + ACTIONS(3078), 1, + anon_sym_and, + ACTIONS(3080), 1, + anon_sym_or, + ACTIONS(3090), 1, + anon_sym_as, + ACTIONS(3092), 1, + anon_sym_if, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3428), 6, - sym__newline, - anon_sym_EQ, + ACTIONS(3423), 2, anon_sym_COLON, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE, - [105442] = 4, + anon_sym_COMMA, + [105689] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(2605), 1, sym_line_continuation, - ACTIONS(3432), 1, + ACTIONS(3482), 1, sym__not_escape_sequence, - ACTIONS(3430), 5, + ACTIONS(3480), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [105459] = 6, - ACTIONS(3020), 1, + [105706] = 4, + ACTIONS(3484), 1, + anon_sym_COMMA, + STATE(1852), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3388), 4, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [105723] = 7, + ACTIONS(33), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(39), 1, + aux_sym__dotted_identifier_token1, + ACTIONS(3486), 1, + sym_identifier, + STATE(1518), 1, + sym_concatenation, + STATE(2292), 1, + sym_variable_assignment, + STATE(2332), 1, + sym_variable_expansion, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [105746] = 6, + ACTIONS(3082), 1, anon_sym_as, - ACTIONS(3022), 1, + ACTIONS(3084), 1, anon_sym_if, - ACTIONS(3024), 1, + ACTIONS(3086), 1, anon_sym_and, - ACTIONS(3026), 1, + ACTIONS(3088), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1291), 2, + ACTIONS(3488), 2, anon_sym_RBRACK, anon_sym_COMMA, - [105480] = 4, - ACTIONS(3434), 1, - anon_sym_COMMA, - STATE(1854), 1, - aux_sym_assert_statement_repeat1, + [105767] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1129), 4, + ACTIONS(2795), 6, anon_sym_EQ, anon_sym_COLON, - anon_sym_RBRACE, - sym_type_conversion, - [105497] = 4, - ACTIONS(3436), 1, + anon_sym_RPAREN, + anon_sym_DOT, anon_sym_COMMA, - STATE(1852), 1, - aux_sym_pattern_list_repeat1, + anon_sym_PIPE, + [105780] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(817), 4, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(2733), 3, + anon_sym_fakeroot, + anon_sym_DOLLAR_LBRACE, + sym_identifier, + ACTIONS(2735), 3, + sym_shell_content, anon_sym_RBRACE, - sym_type_conversion, - [105514] = 6, - ACTIONS(3384), 1, + anon_sym_DOLLAR_LBRACE_AT, + [105795] = 6, + ACTIONS(2928), 1, + anon_sym_as, + ACTIONS(2930), 1, + anon_sym_if, + ACTIONS(2932), 1, + anon_sym_and, + ACTIONS(2934), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3490), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [105816] = 7, + ACTIONS(3435), 1, anon_sym_COLON, - ACTIONS(3386), 1, + ACTIONS(3437), 1, anon_sym_DOT, - ACTIONS(3388), 1, + ACTIONS(3439), 1, + anon_sym_COMMA, + ACTIONS(3441), 1, anon_sym_PIPE, - ACTIONS(3438), 1, - anon_sym_EQ, + ACTIONS(3492), 1, + anon_sym_RBRACK, + STATE(2021), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3440), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [105535] = 6, - ACTIONS(2901), 1, + [105839] = 6, + ACTIONS(2928), 1, anon_sym_as, - ACTIONS(2903), 1, + ACTIONS(2930), 1, anon_sym_if, - ACTIONS(2905), 1, + ACTIONS(2932), 1, anon_sym_and, - ACTIONS(2907), 1, + ACTIONS(2934), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3442), 2, + ACTIONS(3494), 2, anon_sym_RPAREN, anon_sym_COMMA, - [105556] = 4, - ACTIONS(3446), 1, - anon_sym_COMMA, - STATE(1839), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, + [105860] = 7, + ACTIONS(3496), 1, + aux_sym_recipe_token1, + ACTIONS(3498), 1, + anon_sym_, + ACTIONS(3500), 1, + aux_sym_include_directive_token1, + ACTIONS(3503), 1, + anon_sym_DOLLAR_LBRACE, + STATE(1822), 1, + aux_sym_include_directive_repeat1, + STATE(1997), 1, + sym_variable_expansion, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(3444), 4, - anon_sym_RBRACK, + [105883] = 6, + ACTIONS(2999), 1, + anon_sym_as, + ACTIONS(3001), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - [105573] = 4, - ACTIONS(3450), 1, - anon_sym_COMMA, - STATE(1843), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(3003), 1, + anon_sym_and, + ACTIONS(3005), 1, + anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3448), 4, - anon_sym_RBRACK, + ACTIONS(3404), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [105904] = 6, + ACTIONS(2928), 1, + anon_sym_as, + ACTIONS(2930), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - [105590] = 2, + ACTIONS(2932), 1, + anon_sym_and, + ACTIONS(2934), 1, + anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2770), 6, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(3506), 2, anon_sym_RPAREN, - anon_sym_DOT, anon_sym_COMMA, + [105925] = 6, + ACTIONS(3398), 1, + anon_sym_COLON, + ACTIONS(3400), 1, + anon_sym_DOT, + ACTIONS(3402), 1, anon_sym_PIPE, - [105603] = 6, - ACTIONS(2986), 1, + ACTIONS(3508), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3510), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [105946] = 6, + ACTIONS(2928), 1, anon_sym_as, - ACTIONS(2988), 1, + ACTIONS(2930), 1, anon_sym_if, - ACTIONS(2990), 1, + ACTIONS(2932), 1, anon_sym_and, - ACTIONS(2992), 1, + ACTIONS(2934), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3452), 2, - anon_sym_RBRACE, + ACTIONS(3512), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [105624] = 6, - ACTIONS(2901), 1, + [105967] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2795), 6, + sym__newline, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE, + [105980] = 6, + ACTIONS(3082), 1, anon_sym_as, - ACTIONS(2903), 1, + ACTIONS(3084), 1, anon_sym_if, - ACTIONS(2905), 1, + ACTIONS(3086), 1, anon_sym_and, - ACTIONS(2907), 1, + ACTIONS(3088), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3454), 2, - anon_sym_RPAREN, + ACTIONS(1275), 2, + anon_sym_RBRACK, anon_sym_COMMA, - [105645] = 4, - ACTIONS(3458), 1, - anon_sym_DOT, - STATE(1812), 1, - aux_sym_dotted_name_repeat1, + [106001] = 6, + ACTIONS(2801), 1, + anon_sym_as, + ACTIONS(2803), 1, + anon_sym_if, + ACTIONS(2805), 1, + anon_sym_and, + ACTIONS(2807), 1, + anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3456), 4, + ACTIONS(3100), 2, sym__newline, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - [105662] = 6, - ACTIONS(3020), 1, + [106022] = 6, + ACTIONS(2999), 1, anon_sym_as, - ACTIONS(3022), 1, + ACTIONS(3001), 1, anon_sym_if, - ACTIONS(3024), 1, + ACTIONS(3003), 1, anon_sym_and, - ACTIONS(3026), 1, + ACTIONS(3005), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3461), 2, - anon_sym_RBRACK, + ACTIONS(3211), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [105683] = 6, - ACTIONS(2986), 1, + [106043] = 6, + ACTIONS(2999), 1, anon_sym_as, - ACTIONS(2988), 1, + ACTIONS(3001), 1, anon_sym_if, - ACTIONS(2990), 1, + ACTIONS(3003), 1, anon_sym_and, - ACTIONS(2992), 1, + ACTIONS(3005), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3224), 2, + ACTIONS(3514), 2, anon_sym_RBRACE, anon_sym_COMMA, - [105704] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2592), 1, + [106064] = 4, + ACTIONS(3518), 1, + anon_sym_COMMA, + STATE(1811), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, sym_line_continuation, - ACTIONS(3465), 1, - sym__not_escape_sequence, - ACTIONS(3463), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [105721] = 4, - ACTIONS(3469), 1, + sym_comment, + ACTIONS(3516), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [106081] = 4, + ACTIONS(3520), 1, anon_sym_COMMA, - STATE(1816), 1, + STATE(1853), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3467), 4, - anon_sym_RBRACE, + ACTIONS(3516), 4, + anon_sym_RBRACK, anon_sym_if, anon_sym_async, anon_sym_for, - [105738] = 6, - ACTIONS(2901), 1, + [106098] = 6, + ACTIONS(2928), 1, anon_sym_as, - ACTIONS(2903), 1, + ACTIONS(2930), 1, anon_sym_if, - ACTIONS(2905), 1, + ACTIONS(2932), 1, anon_sym_and, - ACTIONS(2907), 1, + ACTIONS(2934), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3452), 2, + ACTIONS(3514), 2, anon_sym_RPAREN, anon_sym_COMMA, - [105759] = 2, - ACTIONS(3), 2, - sym_line_continuation, + [106119] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(1460), 6, - sym__newline, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE, - [105772] = 6, - ACTIONS(2901), 1, + ACTIONS(2605), 1, + sym_line_continuation, + ACTIONS(3524), 1, + sym__not_escape_sequence, + ACTIONS(3522), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [106136] = 6, + ACTIONS(2928), 1, anon_sym_as, - ACTIONS(2903), 1, + ACTIONS(2930), 1, anon_sym_if, - ACTIONS(2905), 1, + ACTIONS(2932), 1, anon_sym_and, - ACTIONS(2907), 1, + ACTIONS(2934), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3037), 2, + ACTIONS(3100), 2, anon_sym_RPAREN, anon_sym_COMMA, - [105793] = 2, + [106157] = 4, + ACTIONS(3526), 1, + anon_sym_COMMA, + STATE(1848), 1, + aux_sym_pattern_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3414), 6, - sym__newline, + ACTIONS(819), 4, anon_sym_EQ, anon_sym_COLON, - anon_sym_SEMI, + anon_sym_RBRACE, + sym_type_conversion, + [106174] = 4, + ACTIONS(3528), 1, + anon_sym_COMMA, + STATE(1847), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(1105), 4, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_RBRACE, + sym_type_conversion, + [106191] = 7, + ACTIONS(3435), 1, + anon_sym_COLON, + ACTIONS(3437), 1, anon_sym_DOT, + ACTIONS(3439), 1, + anon_sym_COMMA, + ACTIONS(3441), 1, anon_sym_PIPE, - [105806] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2592), 1, + ACTIONS(3530), 1, + anon_sym_RBRACK, + STATE(2140), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, sym_line_continuation, - ACTIONS(3474), 1, - sym__not_escape_sequence, - ACTIONS(3472), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [105823] = 4, + sym_comment, + [106214] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(2605), 1, sym_line_continuation, - ACTIONS(3478), 1, + ACTIONS(3534), 1, sym__not_escape_sequence, - ACTIONS(3476), 5, + ACTIONS(3532), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [105840] = 4, + [106231] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3536), 3, + anon_sym_fakeroot, + anon_sym_DOLLAR_LBRACE, + sym_identifier, + ACTIONS(3538), 3, + sym_shell_content, + anon_sym_RBRACE, + anon_sym_DOLLAR_LBRACE_AT, + [106246] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(2605), 1, sym_line_continuation, - ACTIONS(3482), 1, + ACTIONS(3542), 1, sym__not_escape_sequence, - ACTIONS(3480), 5, + ACTIONS(3540), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [105857] = 6, - ACTIONS(3039), 1, + [106263] = 6, + ACTIONS(3082), 1, anon_sym_as, - ACTIONS(3041), 1, + ACTIONS(3084), 1, anon_sym_if, - ACTIONS(3043), 1, + ACTIONS(3086), 1, anon_sym_and, - ACTIONS(3045), 1, + ACTIONS(3088), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3442), 2, - anon_sym_COLON, - anon_sym_COMMA, - [105878] = 4, - ACTIONS(3484), 1, - anon_sym_COMMA, - STATE(1808), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3362), 4, + ACTIONS(3100), 2, anon_sym_RBRACK, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [105895] = 7, - ACTIONS(3486), 1, - aux_sym_recipe_token1, - ACTIONS(3488), 1, - anon_sym_NULL, - ACTIONS(3490), 1, - aux_sym_include_directive_token1, - ACTIONS(3493), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1826), 1, - aux_sym_include_directive_repeat1, - STATE(1985), 1, - sym_variable_expansion, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - [105918] = 6, - ACTIONS(3039), 1, - anon_sym_as, - ACTIONS(3041), 1, - anon_sym_if, - ACTIONS(3043), 1, - anon_sym_and, - ACTIONS(3045), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3064), 2, - anon_sym_COLON, anon_sym_COMMA, - [105939] = 6, - ACTIONS(3039), 1, - anon_sym_as, - ACTIONS(3041), 1, - anon_sym_if, - ACTIONS(3043), 1, - anon_sym_and, - ACTIONS(3045), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_line_continuation, + [106284] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3454), 2, - anon_sym_COLON, - anon_sym_COMMA, - [105960] = 6, - ACTIONS(2901), 1, - anon_sym_as, - ACTIONS(2903), 1, - anon_sym_if, - ACTIONS(2905), 1, - anon_sym_and, - ACTIONS(2907), 1, - anon_sym_or, - ACTIONS(3), 2, + ACTIONS(2605), 1, sym_line_continuation, - sym_comment, - ACTIONS(3496), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [105981] = 6, - ACTIONS(3243), 1, + ACTIONS(3546), 1, + sym__not_escape_sequence, + ACTIONS(3544), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [106301] = 6, + ACTIONS(3290), 1, anon_sym_LBRACK, - ACTIONS(3247), 1, + ACTIONS(3294), 1, sym__concat, STATE(2004), 1, aux_sym_concatenation_repeat1, - STATE(2238), 1, + STATE(2308), 1, sym_variable_flag, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2709), 2, + ACTIONS(2714), 2, anon_sym_COLON, anon_sym_LPAREN, - [106002] = 6, - ACTIONS(2901), 1, + [106322] = 6, + ACTIONS(3082), 1, anon_sym_as, - ACTIONS(2903), 1, + ACTIONS(3084), 1, anon_sym_if, - ACTIONS(2905), 1, + ACTIONS(3086), 1, anon_sym_and, - ACTIONS(2907), 1, + ACTIONS(3088), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3498), 2, - anon_sym_RPAREN, + ACTIONS(3514), 2, + anon_sym_RBRACK, anon_sym_COMMA, - [106023] = 6, - ACTIONS(2901), 1, - anon_sym_as, - ACTIONS(2903), 1, - anon_sym_if, - ACTIONS(2905), 1, - anon_sym_and, - ACTIONS(2907), 1, - anon_sym_or, + [106343] = 4, + ACTIONS(3548), 1, + anon_sym_COMMA, + STATE(1847), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3500), 2, - anon_sym_RPAREN, + ACTIONS(3126), 4, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_RBRACE, + sym_type_conversion, + [106360] = 4, + ACTIONS(3551), 1, anon_sym_COMMA, - [106044] = 2, + STATE(1848), 1, + aux_sym_pattern_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3502), 6, + ACTIONS(2538), 4, anon_sym_EQ, anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - [106057] = 5, - ACTIONS(3392), 1, - anon_sym_COLON, - ACTIONS(3396), 1, - anon_sym_DOT, - ACTIONS(3398), 1, - anon_sym_PIPE, + anon_sym_RBRACE, + sym_type_conversion, + [106377] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3382), 3, - sym__newline, - anon_sym_EQ, - anon_sym_SEMI, - [106076] = 2, + ACTIONS(3203), 3, + anon_sym_fakeroot, + anon_sym_DOLLAR_LBRACE, + sym_identifier, + ACTIONS(3205), 3, + sym_shell_content, + anon_sym_RBRACE, + anon_sym_DOLLAR_LBRACE_AT, + [106392] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3380), 6, + ACTIONS(1470), 6, sym__newline, anon_sym_EQ, anon_sym_COLON, anon_sym_SEMI, anon_sym_DOT, anon_sym_PIPE, - [106089] = 2, + [106405] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3378), 6, + ACTIONS(3469), 6, sym__newline, anon_sym_EQ, anon_sym_COLON, anon_sym_SEMI, anon_sym_DOT, anon_sym_PIPE, - [106102] = 4, - ACTIONS(3504), 1, + [106418] = 4, + ACTIONS(3554), 1, + anon_sym_COMMA, + STATE(1853), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3376), 4, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [106435] = 4, + ACTIONS(3556), 1, anon_sym_COMMA, - STATE(1850), 1, + STATE(1853), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3444), 4, - anon_sym_RPAREN, + ACTIONS(3475), 4, + anon_sym_RBRACK, anon_sym_if, anon_sym_async, anon_sym_for, - [106119] = 6, - ACTIONS(3020), 1, + [106452] = 6, + ACTIONS(2928), 1, anon_sym_as, - ACTIONS(3022), 1, + ACTIONS(2930), 1, anon_sym_if, - ACTIONS(3024), 1, + ACTIONS(2932), 1, anon_sym_and, - ACTIONS(3026), 1, + ACTIONS(2934), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1279), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - [106140] = 4, - ACTIONS(3508), 1, + ACTIONS(3126), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1843), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3506), 4, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [106157] = 4, - ACTIONS(3510), 1, + [106473] = 4, + ACTIONS(3559), 1, anon_sym_COMMA, - STATE(1858), 1, + STATE(1855), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3362), 4, + ACTIONS(3475), 4, anon_sym_RBRACE, anon_sym_if, anon_sym_async, anon_sym_for, - [106174] = 6, - ACTIONS(2901), 1, + [106490] = 6, + ACTIONS(2928), 1, anon_sym_as, - ACTIONS(2903), 1, + ACTIONS(2930), 1, anon_sym_if, - ACTIONS(2905), 1, + ACTIONS(2932), 1, anon_sym_and, - ACTIONS(2907), 1, + ACTIONS(2934), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3366), 2, + ACTIONS(3421), 2, anon_sym_RPAREN, anon_sym_COMMA, - [106195] = 4, - ACTIONS(3512), 1, - anon_sym_COMMA, - STATE(1863), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, + [106511] = 7, + ACTIONS(3562), 1, + aux_sym_recipe_token1, + ACTIONS(3564), 1, + anon_sym_, + ACTIONS(3566), 1, + aux_sym_include_directive_token1, + ACTIONS(3568), 1, + anon_sym_DOLLAR_LBRACE, + STATE(1822), 1, + aux_sym_include_directive_repeat1, + STATE(1997), 1, + sym_variable_expansion, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(3448), 4, - anon_sym_RPAREN, + [106534] = 6, + ACTIONS(3078), 1, + anon_sym_and, + ACTIONS(3080), 1, + anon_sym_or, + ACTIONS(3090), 1, + anon_sym_as, + ACTIONS(3092), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - [106212] = 4, - ACTIONS(3514), 1, - anon_sym_COMMA, - STATE(1843), 1, - aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3467), 4, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [106229] = 6, - ACTIONS(3020), 1, - anon_sym_as, - ACTIONS(3022), 1, - anon_sym_if, - ACTIONS(3024), 1, + ACTIONS(3512), 2, + anon_sym_COLON, + anon_sym_COMMA, + [106555] = 7, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3026), 1, + ACTIONS(3080), 1, anon_sym_or, + ACTIONS(3092), 1, + anon_sym_if, + ACTIONS(3570), 1, + anon_sym_COLON, + ACTIONS(3572), 1, + anon_sym_COMMA, + ACTIONS(3574), 1, + anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3452), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - [106250] = 6, - ACTIONS(3020), 1, + [106578] = 6, + ACTIONS(2928), 1, anon_sym_as, - ACTIONS(3022), 1, + ACTIONS(2930), 1, anon_sym_if, - ACTIONS(3024), 1, + ACTIONS(2932), 1, anon_sym_and, - ACTIONS(3026), 1, + ACTIONS(2934), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3037), 2, - anon_sym_RBRACK, + ACTIONS(3386), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [106271] = 6, - ACTIONS(2901), 1, + [106599] = 6, + ACTIONS(2928), 1, anon_sym_as, - ACTIONS(2903), 1, + ACTIONS(2930), 1, anon_sym_if, - ACTIONS(2905), 1, + ACTIONS(2932), 1, anon_sym_and, - ACTIONS(2907), 1, + ACTIONS(2934), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3402), 2, + ACTIONS(3404), 2, anon_sym_RPAREN, anon_sym_COMMA, - [106292] = 7, - ACTIONS(31), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(37), 1, - aux_sym__dotted_identifier_token1, - ACTIONS(3517), 1, - sym_identifier, - STATE(1521), 1, - sym_concatenation, - STATE(2296), 1, - sym_variable_expansion, - STATE(2313), 1, - sym_variable_assignment, + [106620] = 5, + ACTIONS(3451), 1, + anon_sym_COLON, + ACTIONS(3455), 1, + anon_sym_DOT, + ACTIONS(3457), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [106315] = 2, + ACTIONS(3396), 3, + sym__newline, + anon_sym_EQ, + anon_sym_SEMI, + [106639] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3428), 6, + ACTIONS(3461), 6, + sym__newline, anon_sym_EQ, anon_sym_COLON, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_COMMA, anon_sym_PIPE, - [106328] = 7, - ACTIONS(3041), 1, - anon_sym_if, - ACTIONS(3043), 1, - anon_sym_and, - ACTIONS(3045), 1, - anon_sym_or, - ACTIONS(3519), 1, - anon_sym_COLON, - ACTIONS(3521), 1, - anon_sym_COMMA, - ACTIONS(3523), 1, - anon_sym_as, + [106652] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [106351] = 4, - ACTIONS(3525), 1, + ACTIONS(3394), 6, + sym__newline, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE, + [106665] = 4, + ACTIONS(3576), 1, anon_sym_COMMA, - STATE(1863), 1, + STATE(1855), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3506), 4, - anon_sym_RPAREN, + ACTIONS(3516), 4, + anon_sym_RBRACE, anon_sym_if, anon_sym_async, anon_sym_for, - [106368] = 2, + [106682] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3502), 6, + ACTIONS(3392), 6, sym__newline, anon_sym_EQ, anon_sym_COLON, anon_sym_SEMI, anon_sym_DOT, anon_sym_PIPE, - [106381] = 4, - ACTIONS(3527), 1, - anon_sym_COMMA, - STATE(1852), 1, - aux_sym_pattern_list_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2547), 4, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_RBRACE, - sym_type_conversion, - [106398] = 4, - ACTIONS(3530), 1, + [106695] = 4, + ACTIONS(3578), 1, anon_sym_COMMA, - STATE(1859), 1, + STATE(1865), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3444), 4, + ACTIONS(3382), 4, anon_sym_RBRACE, anon_sym_if, anon_sym_async, anon_sym_for, - [106415] = 4, - ACTIONS(3532), 1, - anon_sym_COMMA, - STATE(1854), 1, - aux_sym_assert_statement_repeat1, + [106712] = 4, + ACTIONS(3078), 1, + anon_sym_and, + ACTIONS(3080), 1, + anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3064), 4, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_RBRACE, - sym_type_conversion, - [106432] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2592), 1, - sym_line_continuation, - ACTIONS(3537), 1, - sym__not_escape_sequence, - ACTIONS(3535), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [106449] = 7, - ACTIONS(3370), 1, + ACTIONS(2885), 4, anon_sym_COLON, - ACTIONS(3372), 1, - anon_sym_DOT, - ACTIONS(3374), 1, anon_sym_COMMA, - ACTIONS(3376), 1, - anon_sym_PIPE, - ACTIONS(3539), 1, - anon_sym_RBRACK, - STATE(2014), 1, - aux_sym_type_parameter_repeat1, + anon_sym_as, + anon_sym_if, + [106729] = 4, + ACTIONS(3580), 1, + anon_sym_COMMA, + STATE(1778), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [106472] = 7, - ACTIONS(3370), 1, + ACTIONS(3388), 4, + anon_sym_RBRACE, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [106746] = 7, + ACTIONS(3435), 1, anon_sym_COLON, - ACTIONS(3372), 1, + ACTIONS(3437), 1, anon_sym_DOT, - ACTIONS(3374), 1, + ACTIONS(3439), 1, anon_sym_COMMA, - ACTIONS(3376), 1, + ACTIONS(3441), 1, anon_sym_PIPE, - ACTIONS(3541), 1, + ACTIONS(3582), 1, anon_sym_RBRACK, - STATE(2136), 1, + STATE(2216), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [106495] = 4, - ACTIONS(3543), 1, - anon_sym_COMMA, - STATE(1816), 1, - aux_sym_for_in_clause_repeat1, + [106769] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3448), 4, + ACTIONS(2729), 3, + anon_sym_fakeroot, + anon_sym_DOLLAR_LBRACE, + sym_identifier, + ACTIONS(2731), 3, + sym_shell_content, anon_sym_RBRACE, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [106512] = 4, - ACTIONS(3545), 1, - anon_sym_COMMA, - STATE(1816), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_DOLLAR_LBRACE_AT, + [106784] = 4, + ACTIONS(3473), 1, + anon_sym_DOT, + STATE(1810), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3506), 4, - anon_sym_RBRACE, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [106529] = 5, - ACTIONS(3114), 1, - anon_sym_DOLLAR_LBRACE_AT, - ACTIONS(3116), 1, + ACTIONS(3584), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + [106801] = 7, + ACTIONS(3566), 1, + aux_sym_include_directive_token1, + ACTIONS(3568), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3547), 1, - sym_inherit_path, - ACTIONS(2592), 2, + ACTIONS(3586), 1, + aux_sym_recipe_token1, + ACTIONS(3588), 1, + anon_sym_, + STATE(1822), 1, + aux_sym_include_directive_repeat1, + STATE(1997), 1, + sym_variable_expansion, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - STATE(1670), 3, - sym_inline_python, - sym_variable_expansion, - aux_sym_inherit_directive_repeat1, - [106548] = 5, - ACTIONS(3093), 1, + [106824] = 5, + ACTIONS(3141), 1, anon_sym_DOLLAR_LBRACE, - STATE(2129), 1, + STATE(2209), 1, sym_variable_expansion, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2701), 2, + ACTIONS(2700), 2, anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(3549), 2, + ACTIONS(3590), 2, sym_identifier, aux_sym__dotted_identifier_token1, - [106567] = 4, - ACTIONS(3043), 1, + [106843] = 5, + ACTIONS(3592), 1, + anon_sym_as, + ACTIONS(3595), 1, anon_sym_and, - ACTIONS(3045), 1, + ACTIONS(3597), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2814), 4, + ACTIONS(2850), 2, + anon_sym_if, + anon_sym_else, + [106861] = 2, + ACTIONS(2605), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3203), 5, + aux_sym_recipe_token1, + anon_sym_, + sym_inherit_path, + anon_sym_DOLLAR_LBRACE_AT, + anon_sym_DOLLAR_LBRACE, + [106873] = 6, + ACTIONS(2708), 1, + anon_sym_LPAREN, + ACTIONS(3292), 1, anon_sym_COLON, + ACTIONS(3294), 1, + sym__concat, + STATE(2004), 1, + aux_sym_concatenation_repeat1, + STATE(2179), 1, + aux_sym_override_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [106893] = 4, + ACTIONS(3599), 1, + anon_sym_DOT, + STATE(1878), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3408), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - [106584] = 4, - ACTIONS(3551), 1, + [106909] = 5, + ACTIONS(3604), 1, anon_sym_COMMA, - STATE(1863), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(3606), 1, + anon_sym_as, + STATE(1971), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3467), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [106601] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2592), 1, + ACTIONS(3602), 2, + sym__newline, + anon_sym_SEMI, + [106927] = 6, + ACTIONS(3608), 1, + anon_sym_EQ, + ACTIONS(3610), 1, + anon_sym_COLON, + ACTIONS(3612), 1, + anon_sym_RBRACE, + ACTIONS(3614), 1, + sym_type_conversion, + STATE(2389), 1, + sym_format_specifier, + ACTIONS(3), 2, sym_line_continuation, - ACTIONS(3556), 1, - sym__not_escape_sequence, - ACTIONS(3554), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [106618] = 4, - ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, - sym_line_continuation, - ACTIONS(3560), 1, - sym__not_escape_sequence, - ACTIONS(3558), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [106635] = 2, - ACTIONS(2592), 2, + [106947] = 2, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(3146), 5, + ACTIONS(2729), 5, aux_sym_recipe_token1, - anon_sym_NULL, + anon_sym_, sym_inherit_path, anon_sym_DOLLAR_LBRACE_AT, anon_sym_DOLLAR_LBRACE, - [106647] = 5, - ACTIONS(3348), 1, - sym_python_identifier, - STATE(1980), 1, - sym_dotted_name, - STATE(2027), 1, - sym_aliased_import, - ACTIONS(3), 2, + [106959] = 5, + ACTIONS(3616), 1, + aux_sym_recipe_token1, + ACTIONS(3620), 1, + sym_identifier, + STATE(1882), 1, + aux_sym_export_functions_statement_repeat1, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(3562), 2, - sym__newline, - anon_sym_SEMI, - [106665] = 6, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3566), 1, - anon_sym_RBRACE, - ACTIONS(3568), 1, - aux_sym_format_specifier_token1, - STATE(1891), 1, - aux_sym_format_specifier_repeat1, - STATE(2132), 1, - sym_interpolation, - ACTIONS(2592), 2, + ACTIONS(3618), 2, + anon_sym_, + anon_sym_before, + [106977] = 6, + ACTIONS(3595), 1, + anon_sym_and, + ACTIONS(3597), 1, + anon_sym_or, + ACTIONS(3623), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_if, + ACTIONS(3627), 1, + anon_sym_else, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [106685] = 2, + [106997] = 6, + ACTIONS(3595), 1, + anon_sym_and, + ACTIONS(3597), 1, + anon_sym_or, + ACTIONS(3623), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_if, + ACTIONS(3629), 1, + anon_sym_else, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3570), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [106697] = 5, - ACTIONS(3572), 1, - aux_sym_recipe_token1, - ACTIONS(3576), 1, - sym_identifier, - STATE(1870), 1, - aux_sym_export_functions_statement_repeat1, - ACTIONS(2592), 2, + [107017] = 2, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3574), 2, - anon_sym_NULL, - anon_sym_after, - [106715] = 4, - ACTIONS(3043), 1, + ACTIONS(3408), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + [107029] = 4, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3045), 1, + ACTIONS(3080), 1, anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2814), 3, + ACTIONS(2885), 3, anon_sym_COLON, anon_sym_as, anon_sym_if, - [106731] = 2, - ACTIONS(2592), 2, + [107045] = 6, + ACTIONS(3631), 1, + anon_sym_LBRACE, + ACTIONS(3634), 1, + anon_sym_RBRACE, + ACTIONS(3636), 1, + aux_sym_format_specifier_token1, + STATE(1887), 1, + aux_sym_format_specifier_repeat1, + STATE(2142), 1, + sym_interpolation, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(2728), 5, - aux_sym_recipe_token1, - anon_sym_NULL, - sym_inherit_path, - anon_sym_DOLLAR_LBRACE_AT, - anon_sym_DOLLAR_LBRACE, - [106743] = 6, - ACTIONS(3039), 1, - anon_sym_as, - ACTIONS(3041), 1, - anon_sym_if, - ACTIONS(3043), 1, + [107065] = 6, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3045), 1, + ACTIONS(3080), 1, anon_sym_or, - ACTIONS(3579), 1, + ACTIONS(3090), 1, + anon_sym_as, + ACTIONS(3092), 1, + anon_sym_if, + ACTIONS(3639), 1, anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [106763] = 6, - ACTIONS(2695), 1, - anon_sym_LPAREN, - ACTIONS(3245), 1, - anon_sym_COLON, - ACTIONS(3247), 1, - sym__concat, - STATE(2004), 1, - aux_sym_concatenation_repeat1, - STATE(2145), 1, - aux_sym_override_repeat1, + [107085] = 4, + ACTIONS(3641), 1, + anon_sym_COMMA, + STATE(1899), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [106783] = 6, - ACTIONS(3039), 1, - anon_sym_as, - ACTIONS(3041), 1, - anon_sym_if, - ACTIONS(3043), 1, + ACTIONS(1105), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [107101] = 6, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3045), 1, + ACTIONS(3080), 1, anon_sym_or, - ACTIONS(3581), 1, + ACTIONS(3090), 1, + anon_sym_as, + ACTIONS(3092), 1, + anon_sym_if, + ACTIONS(3643), 1, anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [106803] = 2, + [107121] = 6, + ACTIONS(3595), 1, + anon_sym_and, + ACTIONS(3597), 1, + anon_sym_or, + ACTIONS(3623), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_if, + ACTIONS(3645), 1, + anon_sym_else, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3467), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [106815] = 2, + [107141] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3570), 5, + ACTIONS(3647), 5, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [106827] = 2, + [107153] = 6, + ACTIONS(3510), 1, + anon_sym_COMMA, + ACTIONS(3649), 1, + anon_sym_EQ, + ACTIONS(3651), 1, + anon_sym_COLON, + ACTIONS(3653), 1, + anon_sym_DOT, + ACTIONS(3655), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3583), 5, - anon_sym_RPAREN, + [107173] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3657), 5, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [106839] = 6, - ACTIONS(3039), 1, - anon_sym_as, - ACTIONS(3041), 1, - anon_sym_if, - ACTIONS(3043), 1, + [107185] = 6, + ACTIONS(3595), 1, anon_sym_and, - ACTIONS(3045), 1, + ACTIONS(3597), 1, anon_sym_or, - ACTIONS(3585), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [106859] = 6, - ACTIONS(2986), 1, + ACTIONS(3623), 1, anon_sym_as, - ACTIONS(2988), 1, + ACTIONS(3625), 1, anon_sym_if, - ACTIONS(2990), 1, - anon_sym_and, - ACTIONS(2992), 1, - anon_sym_or, - ACTIONS(3587), 1, - anon_sym_RBRACE, + ACTIONS(3659), 1, + anon_sym_else, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [106879] = 6, - ACTIONS(3041), 1, - anon_sym_if, - ACTIONS(3043), 1, + [107205] = 6, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3045), 1, + ACTIONS(3080), 1, anon_sym_or, - ACTIONS(3589), 1, + ACTIONS(3092), 1, + anon_sym_if, + ACTIONS(3661), 1, anon_sym_COLON, - ACTIONS(3591), 1, + ACTIONS(3663), 1, anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [106899] = 2, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2547), 5, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_COMMA, - sym_type_conversion, - [106911] = 4, - ACTIONS(3593), 1, + [107225] = 4, + ACTIONS(3665), 1, anon_sym_DOT, - STATE(1883), 1, + STATE(1878), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3456), 3, + ACTIONS(3471), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - [106927] = 2, + [107241] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3583), 5, + ACTIONS(3475), 5, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [106939] = 2, + [107253] = 4, + ACTIONS(3667), 1, + anon_sym_COMMA, + STATE(1899), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3414), 5, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - [106951] = 2, + ACTIONS(3126), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [107269] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3428), 5, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT, + ACTIONS(3647), 5, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_PIPE, - [106963] = 2, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [107281] = 6, + ACTIONS(3595), 1, + anon_sym_and, + ACTIONS(3597), 1, + anon_sym_or, + ACTIONS(3623), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_if, + ACTIONS(3670), 1, + anon_sym_else, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1460), 5, - anon_sym_EQ, + [107301] = 6, + ACTIONS(3078), 1, + anon_sym_and, + ACTIONS(3080), 1, + anon_sym_or, + ACTIONS(3090), 1, + anon_sym_as, + ACTIONS(3092), 1, + anon_sym_if, + ACTIONS(3672), 1, anon_sym_COLON, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - [106975] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3467), 5, + [107321] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3475), 5, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [106987] = 2, + [107333] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3467), 5, + ACTIONS(1385), 5, + anon_sym_EQ, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [106999] = 2, + sym_type_conversion, + [107345] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3583), 5, + ACTIONS(3657), 5, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [107011] = 6, - ACTIONS(3596), 1, - anon_sym_LBRACE, - ACTIONS(3599), 1, - anon_sym_RBRACE, - ACTIONS(3601), 1, - aux_sym_format_specifier_token1, - STATE(1891), 1, - aux_sym_format_specifier_repeat1, - STATE(2132), 1, - sym_interpolation, - ACTIONS(2592), 2, + [107357] = 6, + ACTIONS(3674), 1, + aux_sym_recipe_token1, + ACTIONS(3676), 1, + anon_sym_, + ACTIONS(3678), 1, + anon_sym_before, + ACTIONS(3680), 1, + sym_identifier, + STATE(1882), 1, + aux_sym_export_functions_statement_repeat1, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [107031] = 2, + [107377] = 5, + ACTIONS(3343), 1, + sym_python_identifier, + STATE(1995), 1, + sym_dotted_name, + STATE(2031), 1, + sym_aliased_import, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3502), 5, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - [107043] = 2, + ACTIONS(3682), 2, + sym__newline, + anon_sym_SEMI, + [107395] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3428), 5, + ACTIONS(3461), 5, anon_sym_EQ, anon_sym_COLON, anon_sym_DOT, anon_sym_COMMA, anon_sym_PIPE, - [107055] = 5, - ACTIONS(3370), 1, + [107407] = 5, + ACTIONS(3435), 1, anon_sym_COLON, - ACTIONS(3372), 1, + ACTIONS(3437), 1, anon_sym_DOT, - ACTIONS(3376), 1, + ACTIONS(3441), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3604), 2, + ACTIONS(3684), 2, anon_sym_RBRACK, anon_sym_COMMA, - [107073] = 6, - ACTIONS(3606), 1, - anon_sym_as, - ACTIONS(3608), 1, - anon_sym_if, - ACTIONS(3610), 1, - anon_sym_else, - ACTIONS(3612), 1, - anon_sym_and, - ACTIONS(3614), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [107093] = 6, - ACTIONS(3606), 1, - anon_sym_as, - ACTIONS(3608), 1, - anon_sym_if, - ACTIONS(3612), 1, - anon_sym_and, - ACTIONS(3614), 1, - anon_sym_or, - ACTIONS(3616), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [107113] = 6, - ACTIONS(2986), 1, - anon_sym_as, - ACTIONS(2988), 1, - anon_sym_if, - ACTIONS(2990), 1, - anon_sym_and, - ACTIONS(2992), 1, - anon_sym_or, - ACTIONS(3618), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [107133] = 4, - ACTIONS(3620), 1, - anon_sym_DOT, - STATE(1883), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3412), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [107149] = 2, + [107425] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3570), 5, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [107161] = 6, - ACTIONS(3606), 1, - anon_sym_as, - ACTIONS(3608), 1, - anon_sym_if, - ACTIONS(3612), 1, - anon_sym_and, - ACTIONS(3614), 1, - anon_sym_or, - ACTIONS(3622), 1, - anon_sym_else, + ACTIONS(3392), 5, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_PIPE, + [107437] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [107181] = 6, - ACTIONS(3606), 1, + ACTIONS(3394), 5, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_PIPE, + [107449] = 6, + ACTIONS(2999), 1, anon_sym_as, - ACTIONS(3608), 1, + ACTIONS(3001), 1, anon_sym_if, - ACTIONS(3612), 1, + ACTIONS(3003), 1, anon_sym_and, - ACTIONS(3614), 1, + ACTIONS(3005), 1, anon_sym_or, - ACTIONS(3624), 1, - anon_sym_else, + ACTIONS(3686), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [107201] = 2, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2724), 5, - aux_sym_recipe_token1, - anon_sym_NULL, - sym_inherit_path, - anon_sym_DOLLAR_LBRACE_AT, - anon_sym_DOLLAR_LBRACE, - [107213] = 6, - ACTIONS(2837), 1, - anon_sym_else, - ACTIONS(3606), 1, - anon_sym_as, - ACTIONS(3608), 1, - anon_sym_if, - ACTIONS(3612), 1, - anon_sym_and, - ACTIONS(3614), 1, - anon_sym_or, + [107469] = 5, + ACTIONS(3343), 1, + sym_python_identifier, + STATE(1995), 1, + sym_dotted_name, + STATE(2031), 1, + sym_aliased_import, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [107233] = 3, + ACTIONS(3682), 2, + sym__newline, + anon_sym_SEMI, + [107487] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3146), 2, - anon_sym_fakeroot, - sym_identifier, - ACTIONS(3148), 3, - sym_shell_content, - anon_sym_RBRACE, - anon_sym_DOLLAR_LBRACE_AT, - [107247] = 6, - ACTIONS(3440), 1, - anon_sym_COMMA, - ACTIONS(3626), 1, + ACTIONS(1470), 5, anon_sym_EQ, - ACTIONS(3628), 1, anon_sym_COLON, - ACTIONS(3630), 1, anon_sym_DOT, - ACTIONS(3632), 1, + anon_sym_COMMA, anon_sym_PIPE, + [107499] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [107267] = 2, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3378), 5, - anon_sym_RBRACK, + ACTIONS(3469), 5, + anon_sym_EQ, anon_sym_COLON, anon_sym_DOT, anon_sym_COMMA, anon_sym_PIPE, - [107279] = 2, + [107511] = 5, + ACTIONS(3651), 1, + anon_sym_COLON, + ACTIONS(3653), 1, + anon_sym_DOT, + ACTIONS(3655), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1387), 5, + ACTIONS(3396), 2, anon_sym_EQ, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_COMMA, - sym_type_conversion, - [107291] = 2, + [107529] = 4, + ACTIONS(3665), 1, + anon_sym_DOT, + STATE(1897), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3584), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [107545] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2770), 5, + ACTIONS(2538), 5, anon_sym_EQ, anon_sym_COLON, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_PIPE, - [107303] = 6, - ACTIONS(3634), 1, + sym_type_conversion, + [107557] = 6, + ACTIONS(3674), 1, aux_sym_recipe_token1, - ACTIONS(3636), 1, - anon_sym_NULL, - ACTIONS(3638), 1, - anon_sym_before, - ACTIONS(3640), 1, + ACTIONS(3676), 1, + anon_sym_, + ACTIONS(3678), 1, + anon_sym_after, + ACTIONS(3688), 1, sym_identifier, - STATE(1949), 1, + STATE(1945), 1, aux_sym_export_functions_statement_repeat1, - ACTIONS(2592), 2, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [107323] = 3, + [107577] = 6, + ACTIONS(2855), 1, + anon_sym_else, + ACTIONS(3595), 1, + anon_sym_and, + ACTIONS(3597), 1, + anon_sym_or, + ACTIONS(3623), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_if, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3642), 2, - anon_sym_fakeroot, - sym_identifier, - ACTIONS(3644), 3, - sym_shell_content, - anon_sym_RBRACE, + [107597] = 2, + ACTIONS(2605), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2733), 5, + aux_sym_recipe_token1, + anon_sym_, + sym_inherit_path, anon_sym_DOLLAR_LBRACE_AT, - [107337] = 6, - ACTIONS(3646), 1, + anon_sym_DOLLAR_LBRACE, + [107609] = 6, + ACTIONS(3690), 1, anon_sym_DQUOTE, - ACTIONS(3648), 1, + ACTIONS(3692), 1, anon_sym_SQUOTE, - ACTIONS(3650), 1, + ACTIONS(3694), 1, sym_identifier, - STATE(2247), 1, + STATE(2251), 1, sym_literal, - STATE(2308), 1, + STATE(2283), 1, sym_string, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [107357] = 3, + [107629] = 6, + ACTIONS(3696), 1, + anon_sym_LBRACE, + ACTIONS(3698), 1, + anon_sym_RBRACE, + ACTIONS(3700), 1, + aux_sym_format_specifier_token1, + STATE(1887), 1, + aux_sym_format_specifier_repeat1, + STATE(2142), 1, + sym_interpolation, + ACTIONS(2605), 2, + sym_line_continuation, + sym_comment, + [107649] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3652), 2, - anon_sym_fakeroot, - sym_identifier, - ACTIONS(3654), 3, - sym_shell_content, + ACTIONS(2795), 5, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_PIPE, + [107661] = 6, + ACTIONS(3696), 1, + anon_sym_LBRACE, + ACTIONS(3702), 1, anon_sym_RBRACE, - anon_sym_DOLLAR_LBRACE_AT, - [107371] = 6, - ACTIONS(3606), 1, + ACTIONS(3704), 1, + aux_sym_format_specifier_token1, + STATE(1923), 1, + aux_sym_format_specifier_repeat1, + STATE(2142), 1, + sym_interpolation, + ACTIONS(2605), 2, + sym_line_continuation, + sym_comment, + [107681] = 6, + ACTIONS(2999), 1, anon_sym_as, - ACTIONS(3608), 1, + ACTIONS(3001), 1, anon_sym_if, - ACTIONS(3612), 1, + ACTIONS(3003), 1, anon_sym_and, - ACTIONS(3614), 1, + ACTIONS(3005), 1, anon_sym_or, - ACTIONS(3656), 1, - anon_sym_else, + ACTIONS(3706), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [107391] = 6, - ACTIONS(2986), 1, - anon_sym_as, - ACTIONS(2988), 1, - anon_sym_if, - ACTIONS(2990), 1, + [107701] = 6, + ACTIONS(3595), 1, anon_sym_and, - ACTIONS(2992), 1, + ACTIONS(3597), 1, anon_sym_or, - ACTIONS(3658), 1, - anon_sym_RBRACE, + ACTIONS(3623), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_if, + ACTIONS(3708), 1, + anon_sym_else, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [107411] = 6, - ACTIONS(3634), 1, - aux_sym_recipe_token1, - ACTIONS(3636), 1, - anon_sym_NULL, - ACTIONS(3638), 1, - anon_sym_after, - ACTIONS(3660), 1, + [107721] = 6, + ACTIONS(3690), 1, + anon_sym_DQUOTE, + ACTIONS(3692), 1, + anon_sym_SQUOTE, + ACTIONS(3694), 1, sym_identifier, - STATE(1870), 1, - aux_sym_export_functions_statement_repeat1, - ACTIONS(2592), 2, + STATE(2273), 1, + sym_literal, + STATE(2283), 1, + sym_string, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [107431] = 4, - ACTIONS(3620), 1, - anon_sym_DOT, - STATE(1898), 1, - aux_sym_dotted_name_repeat1, + [107741] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3408), 3, + ACTIONS(3657), 5, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - [107447] = 6, - ACTIONS(3662), 1, - anon_sym_EQ, - ACTIONS(3664), 1, - anon_sym_COLON, - ACTIONS(3666), 1, - anon_sym_RBRACE, - ACTIONS(3668), 1, - sym_type_conversion, - STATE(2384), 1, - sym_format_specifier, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [107753] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [107467] = 6, - ACTIONS(3039), 1, - anon_sym_as, - ACTIONS(3041), 1, - anon_sym_if, - ACTIONS(3043), 1, + ACTIONS(2795), 5, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_PIPE, + [107765] = 6, + ACTIONS(3595), 1, anon_sym_and, - ACTIONS(3045), 1, + ACTIONS(3597), 1, anon_sym_or, - ACTIONS(3670), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [107487] = 6, - ACTIONS(3606), 1, + ACTIONS(3623), 1, anon_sym_as, - ACTIONS(3608), 1, + ACTIONS(3625), 1, anon_sym_if, - ACTIONS(3612), 1, - anon_sym_and, - ACTIONS(3614), 1, - anon_sym_or, - ACTIONS(3672), 1, + ACTIONS(3710), 1, anon_sym_else, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [107507] = 6, - ACTIONS(3606), 1, - anon_sym_as, - ACTIONS(3608), 1, - anon_sym_if, - ACTIONS(3612), 1, - anon_sym_and, - ACTIONS(3614), 1, - anon_sym_or, - ACTIONS(3674), 1, - anon_sym_else, + [107785] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [107527] = 2, + ACTIONS(2587), 5, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_COMMA, + sym_type_conversion, + [107797] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3378), 5, - anon_sym_EQ, + ACTIONS(1470), 5, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT, anon_sym_COMMA, anon_sym_PIPE, - [107539] = 6, - ACTIONS(2986), 1, + [107809] = 6, + ACTIONS(2999), 1, anon_sym_as, - ACTIONS(2988), 1, + ACTIONS(3001), 1, anon_sym_if, - ACTIONS(2990), 1, + ACTIONS(3003), 1, anon_sym_and, - ACTIONS(2992), 1, + ACTIONS(3005), 1, anon_sym_or, - ACTIONS(3676), 1, + ACTIONS(3712), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [107559] = 6, - ACTIONS(2863), 1, + [107829] = 6, + ACTIONS(2861), 1, anon_sym_else, - ACTIONS(3606), 1, - anon_sym_as, - ACTIONS(3608), 1, - anon_sym_if, - ACTIONS(3612), 1, + ACTIONS(3595), 1, anon_sym_and, - ACTIONS(3614), 1, + ACTIONS(3597), 1, anon_sym_or, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [107579] = 6, - ACTIONS(3039), 1, + ACTIONS(3623), 1, anon_sym_as, - ACTIONS(3041), 1, + ACTIONS(3625), 1, anon_sym_if, - ACTIONS(3043), 1, - anon_sym_and, - ACTIONS(3045), 1, - anon_sym_or, - ACTIONS(3678), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [107599] = 2, + [107849] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2770), 5, + ACTIONS(3469), 5, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT, anon_sym_COMMA, anon_sym_PIPE, - [107611] = 2, + [107861] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3502), 5, + ACTIONS(3017), 5, anon_sym_EQ, anon_sym_COLON, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_PIPE, - [107623] = 2, + sym_type_conversion, + [107873] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3380), 5, + ACTIONS(2569), 5, anon_sym_EQ, anon_sym_COLON, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - [107635] = 5, - ACTIONS(3384), 1, - anon_sym_COLON, - ACTIONS(3386), 1, - anon_sym_DOT, - ACTIONS(3388), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3440), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [107653] = 3, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3680), 2, - anon_sym_fakeroot, - sym_identifier, - ACTIONS(3682), 3, - sym_shell_content, anon_sym_RBRACE, - anon_sym_DOLLAR_LBRACE_AT, - [107667] = 2, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3456), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_COMMA, + sym_type_conversion, + [107885] = 6, + ACTIONS(2841), 1, + anon_sym_else, + ACTIONS(3595), 1, + anon_sym_and, + ACTIONS(3597), 1, + anon_sym_or, + ACTIONS(3623), 1, anon_sym_as, - [107679] = 4, - ACTIONS(3684), 1, - anon_sym_COMMA, - STATE(1932), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3625), 1, + anon_sym_if, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1129), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [107695] = 4, - ACTIONS(3686), 1, - anon_sym_COMMA, - STATE(1932), 1, - aux_sym_assert_statement_repeat1, + [107905] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3064), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [107711] = 6, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3689), 1, - anon_sym_RBRACE, - ACTIONS(3691), 1, - aux_sym_format_specifier_token1, - STATE(1868), 1, - aux_sym_format_specifier_repeat1, - STATE(2132), 1, - sym_interpolation, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - [107731] = 5, - ACTIONS(3628), 1, + ACTIONS(3475), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [107917] = 5, + ACTIONS(3398), 1, anon_sym_COLON, - ACTIONS(3630), 1, + ACTIONS(3400), 1, anon_sym_DOT, - ACTIONS(3632), 1, + ACTIONS(3402), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3382), 2, - anon_sym_EQ, + ACTIONS(3510), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [107749] = 2, + [107935] = 4, + ACTIONS(3595), 1, + anon_sym_and, + ACTIONS(3597), 1, + anon_sym_or, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2596), 5, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_COMMA, - sym_type_conversion, - [107761] = 6, - ACTIONS(2871), 1, + ACTIONS(2885), 3, + anon_sym_as, + anon_sym_if, anon_sym_else, - ACTIONS(3606), 1, + [107951] = 3, + ACTIONS(3595), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2755), 4, anon_sym_as, - ACTIONS(3608), 1, anon_sym_if, - ACTIONS(3612), 1, + anon_sym_else, + anon_sym_or, + [107965] = 6, + ACTIONS(3595), 1, anon_sym_and, - ACTIONS(3614), 1, + ACTIONS(3597), 1, anon_sym_or, + ACTIONS(3623), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_if, + ACTIONS(3714), 1, + anon_sym_else, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [107781] = 5, - ACTIONS(3348), 1, + [107985] = 5, + ACTIONS(3616), 1, + aux_sym_recipe_token1, + ACTIONS(3716), 1, + sym_identifier, + STATE(1945), 1, + aux_sym_export_functions_statement_repeat1, + ACTIONS(2605), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3618), 2, + anon_sym_, + anon_sym_after, + [108003] = 6, + ACTIONS(3343), 1, sym_python_identifier, - STATE(1980), 1, + ACTIONS(3719), 1, + anon_sym_LPAREN, + STATE(1879), 1, sym_dotted_name, - STATE(2027), 1, + STATE(1969), 1, sym_aliased_import, + STATE(2322), 1, + sym__import_list, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3562), 2, - sym__newline, - anon_sym_SEMI, - [107799] = 2, + [108023] = 6, + ACTIONS(3078), 1, + anon_sym_and, + ACTIONS(3080), 1, + anon_sym_or, + ACTIONS(3090), 1, + anon_sym_as, + ACTIONS(3092), 1, + anon_sym_if, + ACTIONS(3721), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1460), 5, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - [107811] = 2, + [108043] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3414), 5, + ACTIONS(3461), 5, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT, anon_sym_COMMA, anon_sym_PIPE, - [107823] = 5, - ACTIONS(3695), 1, - anon_sym_COMMA, - ACTIONS(3697), 1, - anon_sym_as, - STATE(1968), 1, - aux_sym__import_list_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3693), 2, - sym__newline, - anon_sym_SEMI, - [107841] = 2, + [108055] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3380), 5, + ACTIONS(3443), 5, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT, anon_sym_COMMA, anon_sym_PIPE, - [107853] = 2, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2598), 5, - anon_sym_EQ, + [108067] = 6, + ACTIONS(3610), 1, anon_sym_COLON, + ACTIONS(3723), 1, + anon_sym_EQ, + ACTIONS(3725), 1, anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(3727), 1, sym_type_conversion, - [107865] = 6, - ACTIONS(3606), 1, - anon_sym_as, - ACTIONS(3608), 1, - anon_sym_if, - ACTIONS(3612), 1, + STATE(2561), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [108087] = 6, + ACTIONS(3595), 1, anon_sym_and, - ACTIONS(3614), 1, + ACTIONS(3597), 1, anon_sym_or, - ACTIONS(3699), 1, + ACTIONS(3623), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_if, + ACTIONS(3729), 1, anon_sym_else, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [107885] = 5, - ACTIONS(3612), 1, + [108107] = 6, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3614), 1, + ACTIONS(3080), 1, anon_sym_or, - ACTIONS(3701), 1, + ACTIONS(3090), 1, anon_sym_as, + ACTIONS(3092), 1, + anon_sym_if, + ACTIONS(3731), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2791), 2, + [108127] = 6, + ACTIONS(2999), 1, + anon_sym_as, + ACTIONS(3001), 1, anon_sym_if, - anon_sym_else, - [107903] = 4, - ACTIONS(3612), 1, + ACTIONS(3003), 1, anon_sym_and, - ACTIONS(3614), 1, + ACTIONS(3005), 1, anon_sym_or, + ACTIONS(3733), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [108147] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2814), 3, + ACTIONS(3647), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [108159] = 6, + ACTIONS(3595), 1, + anon_sym_and, + ACTIONS(3597), 1, + anon_sym_or, + ACTIONS(3623), 1, anon_sym_as, + ACTIONS(3625), 1, anon_sym_if, + ACTIONS(3735), 1, anon_sym_else, - [107919] = 6, - ACTIONS(3664), 1, - anon_sym_COLON, - ACTIONS(3704), 1, - anon_sym_EQ, - ACTIONS(3706), 1, - anon_sym_RBRACE, - ACTIONS(3708), 1, - sym_type_conversion, - STATE(2533), 1, - sym_format_specifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [107939] = 2, + [108179] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2994), 5, - anon_sym_EQ, + ACTIONS(3392), 5, + anon_sym_RBRACK, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, - sym_type_conversion, - [107951] = 5, - ACTIONS(3348), 1, + anon_sym_PIPE, + [108191] = 5, + ACTIONS(3343), 1, sym_python_identifier, - STATE(1980), 1, + STATE(1995), 1, sym_dotted_name, - STATE(2027), 1, + STATE(2031), 1, sym_aliased_import, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3710), 2, + ACTIONS(3737), 2, sym__newline, anon_sym_SEMI, - [107969] = 5, - ACTIONS(3572), 1, - aux_sym_recipe_token1, - ACTIONS(3712), 1, - sym_identifier, - STATE(1949), 1, - aux_sym_export_functions_statement_repeat1, - ACTIONS(2592), 2, + [108209] = 2, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3574), 2, - anon_sym_NULL, - anon_sym_before, - [107987] = 5, - ACTIONS(3370), 1, + ACTIONS(3394), 5, + anon_sym_RBRACK, anon_sym_COLON, - ACTIONS(3372), 1, anon_sym_DOT, - ACTIONS(3376), 1, + anon_sym_COMMA, + anon_sym_PIPE, + [108221] = 5, + ACTIONS(3435), 1, + anon_sym_COLON, + ACTIONS(3437), 1, + anon_sym_DOT, + ACTIONS(3441), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3382), 2, + ACTIONS(3396), 2, anon_sym_RBRACK, anon_sym_COMMA, - [108005] = 6, - ACTIONS(3348), 1, - sym_python_identifier, - ACTIONS(3715), 1, - anon_sym_LPAREN, - STATE(1940), 1, - sym_dotted_name, - STATE(1973), 1, - sym_aliased_import, - STATE(2323), 1, - sym__import_list, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [108025] = 3, - ACTIONS(3612), 1, - anon_sym_and, + [108239] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2752), 4, - anon_sym_as, - anon_sym_if, - anon_sym_else, - anon_sym_or, - [108039] = 3, + ACTIONS(3443), 5, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_PIPE, + [108251] = 5, + ACTIONS(3682), 1, + anon_sym_RPAREN, + ACTIONS(3739), 1, + sym_python_identifier, + STATE(2174), 1, + sym_dotted_name, + STATE(2330), 1, + sym_aliased_import, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3717), 2, - anon_sym_fakeroot, - sym_identifier, - ACTIONS(3719), 3, - sym_shell_content, - anon_sym_RBRACE, - anon_sym_DOLLAR_LBRACE_AT, - [108053] = 6, - ACTIONS(3606), 1, - anon_sym_as, - ACTIONS(3608), 1, - anon_sym_if, - ACTIONS(3612), 1, - anon_sym_and, - ACTIONS(3614), 1, - anon_sym_or, - ACTIONS(3721), 1, - anon_sym_else, - ACTIONS(3), 2, + [108268] = 3, + ACTIONS(2731), 1, + aux_sym_recipe_token1, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [108073] = 6, - ACTIONS(3606), 1, - anon_sym_as, - ACTIONS(3608), 1, - anon_sym_if, - ACTIONS(3612), 1, - anon_sym_and, - ACTIONS(3614), 1, - anon_sym_or, - ACTIONS(3723), 1, - anon_sym_else, + ACTIONS(2729), 3, + anon_sym_, + aux_sym_include_directive_token1, + anon_sym_DOLLAR_LBRACE, + [108281] = 5, + ACTIONS(3566), 1, + aux_sym_include_directive_token1, + ACTIONS(3741), 1, + anon_sym_DOLLAR_LBRACE, + STATE(1857), 1, + aux_sym_include_directive_repeat1, + STATE(1997), 1, + sym_variable_expansion, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [108093] = 6, - ACTIONS(3646), 1, - anon_sym_DQUOTE, - ACTIONS(3648), 1, - anon_sym_SQUOTE, - ACTIONS(3650), 1, - sym_identifier, - STATE(2307), 1, - sym_literal, - STATE(2308), 1, - sym_string, + [108298] = 4, + ACTIONS(3745), 1, + anon_sym_COMMA, + STATE(1977), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [108113] = 4, - ACTIONS(3727), 1, - anon_sym_DOT, - STATE(1963), 1, - aux_sym_import_prefix_repeat1, + ACTIONS(3743), 2, + sym__newline, + anon_sym_SEMI, + [108313] = 5, + ACTIONS(3566), 1, + aux_sym_include_directive_token1, + ACTIONS(3741), 1, + anon_sym_DOLLAR_LBRACE, + STATE(1873), 1, + aux_sym_include_directive_repeat1, + STATE(1997), 1, + sym_variable_expansion, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3725), 2, - anon_sym_import, - sym_python_identifier, - [108128] = 5, - ACTIONS(3729), 1, - aux_sym_recipe_token1, - ACTIONS(3731), 1, - anon_sym_NULL, - ACTIONS(3733), 1, - sym_identifier, - STATE(2003), 1, - aux_sym_export_functions_statement_repeat1, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - [108145] = 4, - ACTIONS(3737), 1, + [108330] = 5, + ACTIONS(3602), 1, + anon_sym_RPAREN, + ACTIONS(3747), 1, anon_sym_COMMA, - STATE(1972), 1, - aux_sym_print_statement_repeat1, + ACTIONS(3749), 1, + anon_sym_as, + STATE(2230), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3735), 2, - sym__newline, - anon_sym_SEMI, - [108160] = 4, - ACTIONS(31), 1, + [108347] = 3, + ACTIONS(2735), 1, + aux_sym_recipe_token1, + ACTIONS(2605), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2733), 3, + anon_sym_, + aux_sym_include_directive_token1, anon_sym_DOLLAR_LBRACE, - STATE(1522), 1, - sym_variable_expansion, + [108360] = 4, + ACTIONS(3751), 1, + anon_sym_COMMA, + STATE(1968), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2703), 2, - sym_identifier, - aux_sym__dotted_identifier_token1, - [108175] = 4, - ACTIONS(3104), 1, + ACTIONS(3126), 2, + sym__newline, + anon_sym_SEMI, + [108375] = 4, + ACTIONS(3604), 1, anon_sym_COMMA, - STATE(1962), 1, - aux_sym_assert_statement_repeat1, + STATE(1983), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3739), 2, + ACTIONS(3602), 2, sym__newline, anon_sym_SEMI, - [108190] = 4, - ACTIONS(3741), 1, + [108390] = 4, + ACTIONS(3294), 1, + sym__concat, + STATE(2004), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2714), 2, + anon_sym_COLON, + anon_sym_LPAREN, + [108405] = 4, + ACTIONS(3756), 1, anon_sym_COMMA, - STATE(1962), 1, - aux_sym_assert_statement_repeat1, + STATE(1993), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3064), 2, + ACTIONS(3754), 2, sym__newline, anon_sym_SEMI, - [108205] = 4, - ACTIONS(3746), 1, + [108420] = 4, + ACTIONS(3760), 1, anon_sym_DOT, - STATE(1963), 1, + STATE(1972), 1, aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3744), 2, + ACTIONS(3758), 2, anon_sym_import, sym_python_identifier, - [108220] = 4, - ACTIONS(3751), 1, + [108435] = 5, + ACTIONS(3616), 1, + aux_sym_recipe_token1, + ACTIONS(3618), 1, + anon_sym_, + ACTIONS(3763), 1, + sym_identifier, + STATE(1973), 1, + aux_sym_export_functions_statement_repeat1, + ACTIONS(2605), 2, + sym_line_continuation, + sym_comment, + [108452] = 4, + ACTIONS(3768), 1, anon_sym_COMMA, - STATE(1975), 1, - aux_sym_global_statement_repeat1, + STATE(1974), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3749), 2, + ACTIONS(3766), 2, sym__newline, anon_sym_SEMI, - [108235] = 4, - ACTIONS(3751), 1, - anon_sym_COMMA, + [108467] = 4, + ACTIONS(3771), 1, + sym__concat, STATE(1975), 1, - aux_sym_global_statement_repeat1, + aux_sym_concatenation_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3753), 2, - sym__newline, - anon_sym_SEMI, - [108250] = 4, - ACTIONS(3757), 1, - anon_sym_COMMA, - STATE(1972), 1, - aux_sym_print_statement_repeat1, + ACTIONS(2724), 2, + anon_sym_COLON, + anon_sym_LPAREN, + [108482] = 5, + ACTIONS(3343), 1, + sym_python_identifier, + STATE(1879), 1, + sym_dotted_name, + STATE(1969), 1, + sym_aliased_import, + STATE(2242), 1, + sym__import_list, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3755), 2, - sym__newline, - anon_sym_SEMI, - [108265] = 5, - ACTIONS(3693), 1, - anon_sym_RPAREN, - ACTIONS(3759), 1, + [108499] = 4, + ACTIONS(3776), 1, anon_sym_COMMA, - ACTIONS(3761), 1, - anon_sym_as, - STATE(2207), 1, - aux_sym__import_list_repeat1, + STATE(1974), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [108282] = 4, - ACTIONS(3765), 1, + ACTIONS(3774), 2, + sym__newline, + anon_sym_SEMI, + [108514] = 4, + ACTIONS(3780), 1, anon_sym_COMMA, - STATE(1971), 1, - aux_sym__import_list_repeat1, + STATE(1974), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3763), 2, + ACTIONS(3778), 2, sym__newline, anon_sym_SEMI, - [108297] = 4, - ACTIONS(3767), 1, + [108529] = 4, + ACTIONS(3183), 1, anon_sym_COMMA, - STATE(1971), 1, - aux_sym__import_list_repeat1, + STATE(1968), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3763), 2, + ACTIONS(3782), 2, sym__newline, anon_sym_SEMI, - [108312] = 5, - ACTIONS(3664), 1, + [108544] = 5, + ACTIONS(3610), 1, anon_sym_COLON, - ACTIONS(3769), 1, + ACTIONS(3784), 1, anon_sym_RBRACE, - ACTIONS(3771), 1, + ACTIONS(3786), 1, sym_type_conversion, - STATE(2459), 1, + STATE(2568), 1, sym_format_specifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [108329] = 4, - ACTIONS(3775), 1, + [108561] = 4, + ACTIONS(3788), 1, anon_sym_COMMA, - STATE(1971), 1, - aux_sym__import_list_repeat1, + STATE(1968), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3773), 2, + ACTIONS(1105), 2, sym__newline, anon_sym_SEMI, - [108344] = 4, - ACTIONS(3780), 1, + [108576] = 4, + ACTIONS(3792), 1, anon_sym_COMMA, - STATE(1972), 1, - aux_sym_print_statement_repeat1, + STATE(1985), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3778), 2, + ACTIONS(3790), 2, sym__newline, anon_sym_SEMI, - [108359] = 4, - ACTIONS(3695), 1, + [108591] = 4, + ACTIONS(3794), 1, anon_sym_COMMA, - STATE(1969), 1, + STATE(1993), 1, aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3693), 2, + ACTIONS(3754), 2, sym__newline, anon_sym_SEMI, - [108374] = 5, - ACTIONS(3783), 1, - aux_sym_recipe_token1, - ACTIONS(3785), 1, - anon_sym_NULL, - ACTIONS(3787), 1, - anon_sym_after, - ACTIONS(3789), 1, - anon_sym_before, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - [108391] = 4, - ACTIONS(3793), 1, + [108606] = 4, + ACTIONS(3792), 1, anon_sym_COMMA, - STATE(1975), 1, + STATE(1985), 1, aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3791), 2, + ACTIONS(3796), 2, sym__newline, anon_sym_SEMI, - [108406] = 5, - ACTIONS(3664), 1, - anon_sym_COLON, - ACTIONS(3796), 1, - anon_sym_RBRACE, - ACTIONS(3798), 1, - sym_type_conversion, - STATE(2529), 1, - sym_format_specifier, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [108423] = 5, - ACTIONS(3440), 1, - anon_sym_COMMA, - ACTIONS(3628), 1, - anon_sym_COLON, - ACTIONS(3630), 1, - anon_sym_DOT, - ACTIONS(3632), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [108440] = 5, - ACTIONS(3710), 1, - anon_sym_RPAREN, + [108621] = 4, ACTIONS(3800), 1, - sym_python_identifier, - STATE(2162), 1, - sym_dotted_name, - STATE(2252), 1, - sym_aliased_import, + anon_sym_COMMA, + STATE(1985), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [108457] = 5, - ACTIONS(3800), 1, + ACTIONS(3798), 2, + sym__newline, + anon_sym_SEMI, + [108636] = 5, + ACTIONS(3739), 1, sym_python_identifier, - STATE(1967), 1, + STATE(1966), 1, sym_dotted_name, - STATE(2200), 1, + STATE(2136), 1, sym_aliased_import, - STATE(2573), 1, + STATE(2467), 1, sym__import_list, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [108474] = 3, - ACTIONS(3697), 1, - anon_sym_as, + [108653] = 4, + ACTIONS(33), 1, + anon_sym_DOLLAR_LBRACE, + STATE(1524), 1, + sym_variable_expansion, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3802), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [108487] = 5, - ACTIONS(3800), 1, + ACTIONS(2702), 2, + sym_identifier, + aux_sym__dotted_identifier_token1, + [108668] = 5, + ACTIONS(3739), 1, sym_python_identifier, - STATE(1967), 1, + STATE(1966), 1, sym_dotted_name, - STATE(2200), 1, + STATE(2136), 1, sym_aliased_import, - STATE(2568), 1, + STATE(2349), 1, sym__import_list, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [108504] = 5, - ACTIONS(3733), 1, - sym_identifier, - ACTIONS(3804), 1, - aux_sym_recipe_token1, - ACTIONS(3806), 1, - anon_sym_NULL, - STATE(2003), 1, - aux_sym_export_functions_statement_repeat1, - ACTIONS(2592), 2, + [108685] = 4, + ACTIONS(3141), 1, + anon_sym_DOLLAR_LBRACE, + STATE(2209), 1, + sym_variable_expansion, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [108521] = 4, - ACTIONS(3808), 1, + ACTIONS(3590), 2, + sym_identifier, + aux_sym__dotted_identifier_token1, + [108700] = 4, + ACTIONS(3803), 1, anon_sym_COMMA, - STATE(1962), 1, + STATE(1968), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1129), 2, + ACTIONS(1295), 2, sym__newline, anon_sym_SEMI, - [108536] = 4, - ACTIONS(3812), 1, + [108715] = 4, + ACTIONS(3183), 1, anon_sym_COMMA, - STATE(1966), 1, - aux_sym_print_statement_repeat1, + STATE(1968), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3810), 2, + ACTIONS(3805), 2, sym__newline, anon_sym_SEMI, - [108551] = 3, - ACTIONS(3814), 1, - aux_sym_recipe_token1, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3816), 3, - anon_sym_NULL, - aux_sym_include_directive_token1, - anon_sym_DOLLAR_LBRACE, - [108564] = 5, - ACTIONS(3818), 1, - aux_sym_recipe_token1, - ACTIONS(3820), 1, - anon_sym_NULL, - ACTIONS(3822), 1, - anon_sym_LBRACK, - STATE(2336), 1, - sym_variable_flag, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - [108581] = 4, - ACTIONS(3093), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2129), 1, - sym_variable_expansion, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3549), 2, - sym_identifier, - aux_sym__dotted_identifier_token1, - [108596] = 4, - ACTIONS(3247), 1, - sym__concat, - STATE(2004), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2709), 2, - anon_sym_COLON, - anon_sym_LPAREN, - [108611] = 4, - ACTIONS(3751), 1, + [108730] = 4, + ACTIONS(3792), 1, anon_sym_COMMA, - STATE(1964), 1, + STATE(1984), 1, aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3824), 2, + ACTIONS(3807), 2, sym__newline, anon_sym_SEMI, - [108626] = 4, - ACTIONS(3104), 1, + [108745] = 4, + ACTIONS(3811), 1, anon_sym_COMMA, - STATE(1962), 1, - aux_sym_assert_statement_repeat1, + STATE(1993), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3826), 2, + ACTIONS(3809), 2, sym__newline, anon_sym_SEMI, - [108641] = 4, - ACTIONS(3751), 1, + [108760] = 4, + ACTIONS(3792), 1, anon_sym_COMMA, - STATE(1965), 1, + STATE(1982), 1, aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3828), 2, + ACTIONS(3814), 2, sym__newline, anon_sym_SEMI, - [108656] = 4, - ACTIONS(3830), 1, - anon_sym_COMMA, - STATE(1962), 1, - aux_sym_assert_statement_repeat1, + [108775] = 3, + ACTIONS(3606), 1, + anon_sym_as, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1283), 2, + ACTIONS(3816), 3, sym__newline, anon_sym_SEMI, - [108671] = 2, - ACTIONS(3), 2, + anon_sym_COMMA, + [108788] = 5, + ACTIONS(3818), 1, + aux_sym_recipe_token1, + ACTIONS(3820), 1, + anon_sym_, + ACTIONS(3822), 1, + anon_sym_after, + ACTIONS(3824), 1, + anon_sym_before, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(3456), 4, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - [108682] = 3, - ACTIONS(2730), 1, + [108805] = 3, + ACTIONS(3826), 1, aux_sym_recipe_token1, - ACTIONS(2592), 2, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(2728), 3, - anon_sym_NULL, + ACTIONS(3828), 3, + anon_sym_, aux_sym_include_directive_token1, anon_sym_DOLLAR_LBRACE, - [108695] = 5, - ACTIONS(3562), 1, - anon_sym_RPAREN, - ACTIONS(3800), 1, - sym_python_identifier, - STATE(2162), 1, - sym_dotted_name, - STATE(2252), 1, - sym_aliased_import, + [108818] = 5, + ACTIONS(3830), 1, + aux_sym_recipe_token1, + ACTIONS(3832), 1, + anon_sym_, + ACTIONS(3834), 1, + sym_identifier, + STATE(1973), 1, + aux_sym_export_functions_statement_repeat1, + ACTIONS(2605), 2, + sym_line_continuation, + sym_comment, + [108835] = 5, + ACTIONS(3510), 1, + anon_sym_COMMA, + ACTIONS(3651), 1, + anon_sym_COLON, + ACTIONS(3653), 1, + anon_sym_DOT, + ACTIONS(3655), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [108712] = 5, - ACTIONS(3348), 1, - sym_python_identifier, - STATE(1940), 1, - sym_dotted_name, - STATE(1973), 1, - sym_aliased_import, - STATE(2239), 1, - sym__import_list, + [108852] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [108729] = 5, - ACTIONS(3420), 1, - aux_sym_include_directive_token1, - ACTIONS(3832), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1797), 1, - aux_sym_include_directive_repeat1, - STATE(1985), 1, - sym_variable_expansion, + ACTIONS(3408), 4, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + [108863] = 5, + ACTIONS(3610), 1, + anon_sym_COLON, + ACTIONS(3836), 1, + anon_sym_RBRACE, + ACTIONS(3838), 1, + sym_type_conversion, + STATE(2481), 1, + sym_format_specifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [108746] = 5, - ACTIONS(3562), 1, + [108880] = 5, + ACTIONS(3737), 1, anon_sym_RPAREN, - ACTIONS(3800), 1, + ACTIONS(3739), 1, sym_python_identifier, - STATE(2162), 1, + STATE(2174), 1, sym_dotted_name, - STATE(2252), 1, + STATE(2330), 1, sym_aliased_import, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [108763] = 5, - ACTIONS(3420), 1, - aux_sym_include_directive_token1, - ACTIONS(3832), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1798), 1, - aux_sym_include_directive_repeat1, - STATE(1985), 1, - sym_variable_expansion, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [108780] = 4, + [108897] = 5, ACTIONS(3834), 1, - anon_sym_EQ, - ACTIONS(3836), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3838), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [108795] = 3, - ACTIONS(2726), 1, - aux_sym_recipe_token1, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2724), 3, - anon_sym_NULL, - aux_sym_include_directive_token1, - anon_sym_DOLLAR_LBRACE, - [108808] = 4, + sym_identifier, ACTIONS(3840), 1, - sym__concat, - STATE(2002), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2719), 2, - anon_sym_COLON, - anon_sym_LPAREN, - [108823] = 5, - ACTIONS(3572), 1, aux_sym_recipe_token1, - ACTIONS(3574), 1, - anon_sym_NULL, - ACTIONS(3843), 1, - sym_identifier, - STATE(2003), 1, + ACTIONS(3842), 1, + anon_sym_, + STATE(1973), 1, aux_sym_export_functions_statement_repeat1, - ACTIONS(2592), 2, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [108840] = 4, - ACTIONS(3846), 1, + [108914] = 4, + ACTIONS(3844), 1, sym__concat, - STATE(2002), 1, + STATE(1975), 1, aux_sym_concatenation_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2713), 2, + ACTIONS(2718), 2, anon_sym_COLON, anon_sym_LPAREN, - [108855] = 4, + [108929] = 4, + ACTIONS(3846), 1, + anon_sym_EQ, ACTIONS(3848), 1, - anon_sym_RBRACK, - ACTIONS(3850), 1, - anon_sym_COMMA, - STATE(2112), 1, - aux_sym_subscript_repeat1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [108869] = 4, - ACTIONS(1643), 1, + ACTIONS(3850), 2, anon_sym_RPAREN, - ACTIONS(3852), 1, anon_sym_COMMA, - STATE(2211), 1, - aux_sym_pattern_list_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [108883] = 4, - ACTIONS(2867), 1, + [108944] = 5, + ACTIONS(3682), 1, anon_sym_RPAREN, - ACTIONS(2869), 1, - anon_sym_COMMA, - STATE(2193), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3739), 1, + sym_python_identifier, + STATE(2174), 1, + sym_dotted_name, + STATE(2330), 1, + sym_aliased_import, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [108897] = 4, + [108961] = 4, ACTIONS(3854), 1, - anon_sym_COLON, - ACTIONS(3856), 1, - anon_sym_DQUOTE, - STATE(2220), 1, - aux_sym_overrides_statement_repeat1, + anon_sym_DOT, + STATE(1972), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [108911] = 4, - ACTIONS(3064), 1, - anon_sym_COLON, + ACTIONS(3852), 2, + anon_sym_import, + sym_python_identifier, + [108976] = 5, + ACTIONS(3856), 1, + aux_sym_recipe_token1, ACTIONS(3858), 1, + anon_sym_, + ACTIONS(3860), 1, + anon_sym_LBRACK, + STATE(2297), 1, + sym_variable_flag, + ACTIONS(2605), 2, + sym_line_continuation, + sym_comment, + [108993] = 4, + ACTIONS(2881), 1, + anon_sym_RPAREN, + ACTIONS(2883), 1, anon_sym_COMMA, - STATE(2009), 1, - aux_sym_assert_statement_repeat1, + STATE(2124), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [108925] = 4, - ACTIONS(3266), 1, - anon_sym_RBRACE, - ACTIONS(3268), 1, - anon_sym_COMMA, - STATE(2025), 1, - aux_sym_dictionary_repeat1, + [109007] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [108939] = 4, - ACTIONS(3861), 1, + ACTIONS(1413), 3, + anon_sym_EQ, + anon_sym_COLON, anon_sym_COMMA, - ACTIONS(3863), 1, - anon_sym_in, - STATE(2022), 1, - aux_sym_pattern_list_repeat1, + [109017] = 4, + ACTIONS(3862), 1, + anon_sym_COLON, + ACTIONS(3864), 1, + anon_sym_LPAREN, + STATE(2585), 1, + sym_override, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [108953] = 4, - ACTIONS(2798), 1, + [109031] = 4, + ACTIONS(3866), 1, anon_sym_COMMA, - ACTIONS(2873), 1, - anon_sym_RPAREN, - STATE(2154), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(3868), 1, + anon_sym_in, + STATE(2026), 1, + aux_sym_pattern_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [108967] = 4, - ACTIONS(1129), 1, + [109045] = 4, + ACTIONS(1105), 1, anon_sym_COLON, - ACTIONS(3865), 1, + ACTIONS(3870), 1, anon_sym_COMMA, - STATE(2009), 1, + STATE(2143), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [108981] = 4, - ACTIONS(3374), 1, - anon_sym_COMMA, - ACTIONS(3867), 1, - anon_sym_RBRACK, - STATE(2119), 1, - aux_sym_type_parameter_repeat1, + [109059] = 3, + ACTIONS(1555), 1, + anon_sym_except, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [108995] = 4, - ACTIONS(3664), 1, - anon_sym_COLON, - ACTIONS(3869), 1, - anon_sym_RBRACE, - STATE(2519), 1, - sym_format_specifier, + ACTIONS(1553), 2, + anon_sym_except_STAR, + anon_sym_finally, + [109071] = 3, + ACTIONS(1585), 1, + anon_sym_except, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109009] = 4, - ACTIONS(3861), 1, + ACTIONS(1583), 2, + anon_sym_except_STAR, + anon_sym_finally, + [109083] = 4, + ACTIONS(1159), 1, + anon_sym_RBRACE, + ACTIONS(3872), 1, anon_sym_COMMA, - ACTIONS(3871), 1, - anon_sym_in, - STATE(2022), 1, - aux_sym_pattern_list_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [109023] = 4, - ACTIONS(443), 1, - sym__newline, - ACTIONS(3873), 1, - anon_sym_SEMI, - STATE(2032), 1, - aux_sym__simple_statements_repeat1, + STATE(2150), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109037] = 3, - ACTIONS(1541), 1, - anon_sym_except, + [109097] = 4, + ACTIONS(2538), 1, + anon_sym_RBRACK, + ACTIONS(3874), 1, + anon_sym_COMMA, + STATE(2017), 1, + aux_sym_pattern_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1539), 2, - anon_sym_except_STAR, - anon_sym_finally, - [109049] = 4, - ACTIONS(3875), 1, - anon_sym_RPAREN, + [109111] = 4, ACTIONS(3877), 1, + anon_sym_RPAREN, + ACTIONS(3879), 1, anon_sym_COMMA, - STATE(2100), 1, - aux_sym_with_clause_repeat1, + STATE(2200), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109063] = 4, - ACTIONS(1041), 1, + [109125] = 4, + ACTIONS(2871), 1, anon_sym_RPAREN, - ACTIONS(3879), 1, + ACTIONS(2873), 1, anon_sym_COMMA, - STATE(2086), 1, + STATE(2228), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109077] = 4, - ACTIONS(1289), 1, - anon_sym_COLON, + [109139] = 4, + ACTIONS(3584), 1, + anon_sym_import, ACTIONS(3881), 1, - anon_sym_COMMA, - STATE(2103), 1, - aux_sym_with_clause_repeat1, + anon_sym_DOT, + STATE(2202), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109091] = 4, - ACTIONS(817), 1, - anon_sym_in, - ACTIONS(3883), 1, + [109153] = 4, + ACTIONS(3439), 1, anon_sym_COMMA, - STATE(2037), 1, - aux_sym_pattern_list_repeat1, + ACTIONS(3883), 1, + anon_sym_RBRACK, + STATE(2171), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109105] = 4, - ACTIONS(1025), 1, - anon_sym_RPAREN, - ACTIONS(3885), 1, + [109167] = 4, + ACTIONS(3296), 1, + anon_sym_RBRACE, + ACTIONS(3298), 1, anon_sym_COMMA, - STATE(2086), 1, - aux_sym_argument_list_repeat1, + STATE(2016), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109119] = 4, + [109181] = 4, + ACTIONS(3885), 1, + anon_sym_COLON, ACTIONS(3887), 1, - anon_sym_RBRACK, - ACTIONS(3889), 1, - anon_sym_COMMA, - STATE(2112), 1, - aux_sym_subscript_repeat1, + anon_sym_DQUOTE, + STATE(2225), 1, + aux_sym_overrides_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109133] = 4, - ACTIONS(1145), 1, - anon_sym_RBRACE, - ACTIONS(3891), 1, + [109195] = 4, + ACTIONS(1299), 1, + anon_sym_COLON, + ACTIONS(3889), 1, anon_sym_COMMA, STATE(2148), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [109147] = 3, - ACTIONS(1533), 1, - anon_sym_except, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1531), 2, - anon_sym_except_STAR, - anon_sym_finally, - [109159] = 2, + [109209] = 4, + ACTIONS(2791), 1, + anon_sym_COMMA, + ACTIONS(2793), 1, + anon_sym_RPAREN, + STATE(2157), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3802), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [109169] = 4, - ACTIONS(3861), 1, - anon_sym_COMMA, - ACTIONS(3893), 1, + [109223] = 4, + ACTIONS(819), 1, anon_sym_in, - STATE(2022), 1, + ACTIONS(3891), 1, + anon_sym_COMMA, + STATE(2102), 1, aux_sym_pattern_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109183] = 4, + [109237] = 4, + ACTIONS(3893), 1, + anon_sym_RPAREN, ACTIONS(3895), 1, - anon_sym_SEMI, - ACTIONS(3897), 1, - sym__newline, - STATE(2151), 1, - aux_sym__simple_statements_repeat1, + anon_sym_COMMA, + STATE(2027), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109197] = 4, - ACTIONS(3664), 1, + [109251] = 4, + ACTIONS(3610), 1, anon_sym_COLON, - ACTIONS(3899), 1, + ACTIONS(3898), 1, anon_sym_RBRACE, - STATE(2527), 1, + STATE(2578), 1, sym_format_specifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109211] = 4, - ACTIONS(425), 1, - sym__newline, - ACTIONS(3901), 1, + [109265] = 4, + ACTIONS(3900), 1, anon_sym_SEMI, - STATE(2032), 1, + ACTIONS(3902), 1, + sym__newline, + STATE(2158), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109225] = 4, - ACTIONS(3903), 1, - anon_sym_SEMI, - ACTIONS(3906), 1, + [109279] = 4, + ACTIONS(427), 1, sym__newline, - STATE(2032), 1, + ACTIONS(3904), 1, + anon_sym_SEMI, + STATE(2041), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109239] = 4, - ACTIONS(2547), 1, - anon_sym_RBRACK, - ACTIONS(3908), 1, + [109293] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3816), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - STATE(2033), 1, - aux_sym_pattern_list_repeat1, + [109303] = 4, + ACTIONS(449), 1, + sym__newline, + ACTIONS(3906), 1, + anon_sym_SEMI, + STATE(2041), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109253] = 2, + [109317] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3911), 3, + ACTIONS(3908), 3, sym__newline, anon_sym_SEMI, anon_sym_COMMA, - [109263] = 4, - ACTIONS(3913), 1, - anon_sym_SEMI, - ACTIONS(3915), 1, - sym__newline, - STATE(2017), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [109277] = 4, - ACTIONS(2818), 1, + [109327] = 4, + ACTIONS(1059), 1, anon_sym_RPAREN, - ACTIONS(2820), 1, + ACTIONS(3910), 1, anon_sym_COMMA, - STATE(2020), 1, + STATE(2100), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109291] = 4, - ACTIONS(2547), 1, - anon_sym_in, - ACTIONS(3917), 1, + [109341] = 4, + ACTIONS(1041), 1, + anon_sym_RPAREN, + ACTIONS(3912), 1, anon_sym_COMMA, - STATE(2037), 1, - aux_sym_pattern_list_repeat1, + STATE(2100), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109305] = 4, - ACTIONS(3920), 1, + [109355] = 4, + ACTIONS(1049), 1, anon_sym_RPAREN, - ACTIONS(3922), 1, + ACTIONS(3914), 1, anon_sym_COMMA, - STATE(2023), 1, + STATE(2100), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109319] = 4, - ACTIONS(1053), 1, - anon_sym_RPAREN, - ACTIONS(3924), 1, + [109369] = 4, + ACTIONS(3916), 1, + anon_sym_RBRACK, + ACTIONS(3918), 1, anon_sym_COMMA, - STATE(2086), 1, - aux_sym_argument_list_repeat1, + STATE(2123), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109333] = 4, - ACTIONS(3071), 1, + [109383] = 4, + ACTIONS(3177), 1, anon_sym_RBRACK, - ACTIONS(3075), 1, + ACTIONS(3179), 1, anon_sym_COMMA, - STATE(2005), 1, + STATE(2077), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109347] = 4, - ACTIONS(1051), 1, - anon_sym_RPAREN, - ACTIONS(3926), 1, + [109397] = 4, + ACTIONS(3920), 1, + anon_sym_RBRACK, + ACTIONS(3922), 1, anon_sym_COMMA, - STATE(2086), 1, - aux_sym_argument_list_repeat1, + STATE(2123), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109361] = 4, - ACTIONS(3928), 1, + [109411] = 4, + ACTIONS(1055), 1, anon_sym_RPAREN, - ACTIONS(3930), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - STATE(2224), 1, + STATE(2100), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109375] = 4, - ACTIONS(3932), 1, + [109425] = 4, + ACTIONS(3926), 1, + anon_sym_SEMI, + ACTIONS(3929), 1, + sym__newline, + STATE(2041), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [109439] = 4, + ACTIONS(3931), 1, anon_sym_RBRACK, - ACTIONS(3934), 1, + ACTIONS(3933), 1, anon_sym_COMMA, - STATE(2112), 1, + STATE(2123), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109389] = 4, - ACTIONS(1163), 1, - anon_sym_RBRACE, - ACTIONS(3936), 1, + [109453] = 4, + ACTIONS(3935), 1, + anon_sym_RBRACK, + ACTIONS(3937), 1, anon_sym_COMMA, - STATE(2148), 1, - aux_sym_dictionary_repeat1, + STATE(2123), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109403] = 4, - ACTIONS(3938), 1, - anon_sym_COLON, - ACTIONS(3940), 1, - anon_sym_LPAREN, - STATE(2444), 1, - sym_override, + [109467] = 4, + ACTIONS(1637), 1, + anon_sym_RBRACK, + ACTIONS(3939), 1, + anon_sym_COMMA, + STATE(2017), 1, + aux_sym_pattern_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109417] = 4, - ACTIONS(3942), 1, - anon_sym_RBRACK, - ACTIONS(3944), 1, - anon_sym_COMMA, - STATE(2112), 1, - aux_sym_subscript_repeat1, + [109481] = 4, + ACTIONS(3941), 1, + anon_sym_SEMI, + ACTIONS(3943), 1, + sym__newline, + STATE(2030), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109431] = 4, - ACTIONS(3938), 1, - anon_sym_COLON, - ACTIONS(3946), 1, - anon_sym_LPAREN, - STATE(2500), 1, - sym_override, + [109495] = 3, + ACTIONS(1565), 1, + anon_sym_except, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109445] = 4, - ACTIONS(3861), 1, - anon_sym_COMMA, - ACTIONS(3948), 1, - anon_sym_in, - STATE(2022), 1, - aux_sym_pattern_list_repeat1, + ACTIONS(1563), 2, + anon_sym_except_STAR, + anon_sym_finally, + [109507] = 4, + ACTIONS(3653), 1, + anon_sym_DOT, + ACTIONS(3655), 1, + anon_sym_PIPE, + ACTIONS(3945), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109459] = 4, - ACTIONS(3032), 1, - anon_sym_LPAREN, - ACTIONS(3938), 1, + [109521] = 4, + ACTIONS(3610), 1, anon_sym_COLON, - STATE(2502), 1, - sym_override, + ACTIONS(3947), 1, + anon_sym_RBRACE, + STATE(2572), 1, + sym_format_specifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109473] = 3, - ACTIONS(1577), 1, - anon_sym_except, + [109535] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1575), 2, - anon_sym_except_STAR, - anon_sym_finally, - [109485] = 4, - ACTIONS(2798), 1, - anon_sym_COMMA, - ACTIONS(3950), 1, + ACTIONS(2735), 3, + sym__concat, + anon_sym_COLON, + anon_sym_LPAREN, + [109545] = 4, + ACTIONS(2902), 1, anon_sym_RPAREN, - STATE(2154), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(2904), 1, + anon_sym_COMMA, + STATE(2035), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109499] = 4, - ACTIONS(2798), 1, - anon_sym_COMMA, - ACTIONS(3952), 1, + [109559] = 4, + ACTIONS(3949), 1, anon_sym_RPAREN, - STATE(2154), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(3951), 1, + anon_sym_COMMA, + STATE(2040), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [109573] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109513] = 4, - ACTIONS(3954), 1, + ACTIONS(2731), 3, + sym__concat, + anon_sym_COLON, + anon_sym_LPAREN, + [109583] = 4, + ACTIONS(3953), 1, anon_sym_SEMI, - ACTIONS(3956), 1, + ACTIONS(3955), 1, sym__newline, - STATE(2031), 1, + STATE(2032), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109527] = 4, - ACTIONS(3630), 1, - anon_sym_DOT, - ACTIONS(3632), 1, - anon_sym_PIPE, - ACTIONS(3958), 1, - anon_sym_COLON, + [109597] = 3, + ACTIONS(1573), 1, + anon_sym_except, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109541] = 4, - ACTIONS(2879), 1, + ACTIONS(1571), 2, + anon_sym_except_STAR, + anon_sym_finally, + [109609] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3798), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [109619] = 4, + ACTIONS(2887), 1, anon_sym_RPAREN, - ACTIONS(2881), 1, + ACTIONS(2889), 1, anon_sym_COMMA, - STATE(2039), 1, + STATE(2034), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109555] = 4, - ACTIONS(3861), 1, + [109633] = 4, + ACTIONS(3957), 1, + anon_sym_RPAREN, + ACTIONS(3959), 1, anon_sym_COMMA, - ACTIONS(3960), 1, - anon_sym_in, - STATE(2022), 1, - aux_sym_pattern_list_repeat1, + STATE(2036), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109569] = 4, - ACTIONS(3329), 1, - anon_sym_RBRACE, - ACTIONS(3331), 1, + [109647] = 4, + ACTIONS(3126), 1, + anon_sym_RPAREN, + ACTIONS(3961), 1, anon_sym_COMMA, - STATE(2044), 1, - aux_sym_dictionary_repeat1, + STATE(2058), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109583] = 4, - ACTIONS(3630), 1, - anon_sym_DOT, - ACTIONS(3632), 1, - anon_sym_PIPE, - ACTIONS(3962), 1, - anon_sym_COLON, + [109661] = 4, + ACTIONS(3199), 1, + anon_sym_RBRACK, + ACTIONS(3201), 1, + anon_sym_COMMA, + STATE(2039), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109597] = 4, + [109675] = 4, ACTIONS(3964), 1, anon_sym_RPAREN, ACTIONS(3966), 1, anon_sym_COMMA, - STATE(2041), 1, + STATE(2085), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109611] = 4, - ACTIONS(3140), 1, - anon_sym_RBRACK, - ACTIONS(3142), 1, - anon_sym_COMMA, - STATE(2073), 1, - aux_sym_subscript_repeat1, + [109689] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109625] = 4, - ACTIONS(2798), 1, - anon_sym_COMMA, - ACTIONS(2816), 1, + ACTIONS(2587), 3, + anon_sym_EQ, anon_sym_RPAREN, - STATE(2154), 1, - aux_sym__collection_elements_repeat1, + anon_sym_COMMA, + [109699] = 3, + ACTIONS(1581), 1, + anon_sym_except, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109639] = 4, - ACTIONS(3106), 1, + ACTIONS(1579), 2, + anon_sym_except_STAR, + anon_sym_finally, + [109711] = 4, + ACTIONS(3220), 1, anon_sym_RBRACK, - ACTIONS(3108), 1, + ACTIONS(3222), 1, anon_sym_COMMA, - STATE(2046), 1, + STATE(2043), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109653] = 3, - ACTIONS(1537), 1, - anon_sym_except, + [109725] = 4, + ACTIONS(3514), 1, + anon_sym_RPAREN, + ACTIONS(3968), 1, + anon_sym_COMMA, + STATE(2064), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1535), 2, - anon_sym_except_STAR, - anon_sym_finally, - [109665] = 4, - ACTIONS(3968), 1, - anon_sym_COLON, - ACTIONS(3970), 1, + [109739] = 4, + ACTIONS(1191), 1, + anon_sym_RBRACE, + ACTIONS(3971), 1, anon_sym_COMMA, - STATE(2021), 1, - aux_sym_with_clause_repeat1, + STATE(2150), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109679] = 4, - ACTIONS(3972), 1, + [109753] = 4, + ACTIONS(2875), 1, anon_sym_RPAREN, - ACTIONS(3974), 1, + ACTIONS(2877), 1, anon_sym_COMMA, - STATE(2082), 1, + STATE(2089), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109693] = 4, - ACTIONS(3374), 1, + [109767] = 4, + ACTIONS(3885), 1, + anon_sym_COLON, + ACTIONS(3973), 1, + anon_sym_DQUOTE, + STATE(2023), 1, + aux_sym_overrides_statement_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [109781] = 4, + ACTIONS(3439), 1, anon_sym_COMMA, - ACTIONS(3976), 1, + ACTIONS(3975), 1, anon_sym_RBRACK, - STATE(2119), 1, + STATE(2171), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109707] = 4, - ACTIONS(3861), 1, + [109795] = 4, + ACTIONS(3098), 1, + anon_sym_LPAREN, + ACTIONS(3862), 1, + anon_sym_COLON, + STATE(2506), 1, + sym_override, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [109809] = 4, + ACTIONS(3862), 1, + anon_sym_COLON, + ACTIONS(3977), 1, + anon_sym_LPAREN, + STATE(2504), 1, + sym_override, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [109823] = 4, + ACTIONS(3866), 1, anon_sym_COMMA, - ACTIONS(3978), 1, + ACTIONS(3979), 1, anon_sym_in, - STATE(2022), 1, + STATE(2026), 1, aux_sym_pattern_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109721] = 4, - ACTIONS(1193), 1, + [109837] = 4, + ACTIONS(1173), 1, anon_sym_RBRACE, - ACTIONS(3980), 1, + ACTIONS(3981), 1, anon_sym_COMMA, - STATE(2148), 1, + STATE(2150), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109735] = 4, - ACTIONS(3064), 1, - anon_sym_RPAREN, - ACTIONS(3982), 1, - anon_sym_COMMA, - STATE(2069), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [109749] = 4, - ACTIONS(2859), 1, - anon_sym_RPAREN, - ACTIONS(2861), 1, + [109851] = 4, + ACTIONS(3983), 1, + anon_sym_COLON, + ACTIONS(3985), 1, anon_sym_COMMA, - STATE(2093), 1, - aux_sym_argument_list_repeat1, + STATE(2024), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109763] = 4, - ACTIONS(3985), 1, - anon_sym_SEMI, + [109865] = 4, ACTIONS(3987), 1, + anon_sym_SEMI, + ACTIONS(3989), 1, sym__newline, - STATE(2111), 1, + STATE(2097), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109777] = 3, - ACTIONS(1529), 1, - anon_sym_except, + [109879] = 4, + ACTIONS(3514), 1, + anon_sym_RBRACE, + ACTIONS(3991), 1, + anon_sym_COMMA, + STATE(2075), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1527), 2, - anon_sym_except_STAR, - anon_sym_finally, - [109789] = 4, - ACTIONS(3989), 1, + [109893] = 4, + ACTIONS(3173), 1, anon_sym_RBRACK, - ACTIONS(3991), 1, + ACTIONS(3175), 1, anon_sym_COMMA, - STATE(2112), 1, + STATE(2229), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109803] = 4, - ACTIONS(3993), 1, + [109907] = 4, + ACTIONS(3994), 1, anon_sym_RBRACK, - ACTIONS(3995), 1, + ACTIONS(3996), 1, anon_sym_COMMA, - STATE(2112), 1, + STATE(2123), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109817] = 4, - ACTIONS(3997), 1, - anon_sym_RPAREN, - ACTIONS(3999), 1, + [109921] = 4, + ACTIONS(3998), 1, + anon_sym_RBRACK, + ACTIONS(4000), 1, anon_sym_COMMA, - STATE(2075), 1, - aux_sym_with_clause_repeat1, + STATE(2123), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109831] = 4, - ACTIONS(3315), 1, - anon_sym_RBRACE, - ACTIONS(3317), 1, + [109935] = 4, + ACTIONS(2791), 1, anon_sym_COMMA, - STATE(2068), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4002), 1, + anon_sym_RPAREN, + STATE(2157), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109845] = 4, - ACTIONS(2736), 1, - anon_sym_RBRACK, - ACTIONS(2800), 1, + [109949] = 4, + ACTIONS(3866), 1, anon_sym_COMMA, - STATE(2214), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4004), 1, + anon_sym_in, + STATE(2026), 1, + aux_sym_pattern_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109859] = 4, - ACTIONS(2798), 1, + [109963] = 4, + ACTIONS(3866), 1, anon_sym_COMMA, - ACTIONS(2887), 1, - anon_sym_RPAREN, - STATE(2154), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4006), 1, + anon_sym_in, + STATE(2026), 1, + aux_sym_pattern_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109873] = 4, - ACTIONS(2798), 1, + [109977] = 4, + ACTIONS(2791), 1, anon_sym_COMMA, - ACTIONS(2865), 1, + ACTIONS(2879), 1, anon_sym_RPAREN, - STATE(2154), 1, + STATE(2157), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109887] = 4, - ACTIONS(3181), 1, - anon_sym_RBRACK, - ACTIONS(3183), 1, + [109991] = 4, + ACTIONS(3266), 1, + anon_sym_RBRACE, + ACTIONS(3268), 1, anon_sym_COMMA, - STATE(2227), 1, - aux_sym_subscript_repeat1, + STATE(2072), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109901] = 4, - ACTIONS(3295), 1, - anon_sym_RBRACE, - ACTIONS(3297), 1, + [110005] = 4, + ACTIONS(2791), 1, anon_sym_COMMA, - STATE(2174), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4008), 1, + anon_sym_RPAREN, + STATE(2157), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109915] = 4, + [110019] = 4, ACTIONS(1067), 1, anon_sym_RPAREN, - ACTIONS(4002), 1, + ACTIONS(4010), 1, anon_sym_COMMA, - STATE(2086), 1, + STATE(2100), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109929] = 4, - ACTIONS(3237), 1, - anon_sym_RBRACE, - ACTIONS(3239), 1, - anon_sym_COMMA, - STATE(2097), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [109943] = 4, - ACTIONS(3938), 1, + [110033] = 4, + ACTIONS(3862), 1, anon_sym_COLON, - ACTIONS(4004), 1, + ACTIONS(4012), 1, anon_sym_LPAREN, - STATE(2458), 1, + STATE(2474), 1, sym_override, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109957] = 4, - ACTIONS(3452), 1, + [110047] = 4, + ACTIONS(3335), 1, anon_sym_RBRACE, - ACTIONS(4006), 1, + ACTIONS(3337), 1, anon_sym_COMMA, - STATE(2085), 1, - aux_sym__collection_elements_repeat1, + STATE(2101), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109971] = 4, - ACTIONS(3496), 1, + [110061] = 4, + ACTIONS(1105), 1, + anon_sym_RPAREN, + ACTIONS(4014), 1, + anon_sym_COMMA, + STATE(2058), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [110075] = 4, + ACTIONS(1073), 1, anon_sym_RPAREN, - ACTIONS(4009), 1, + ACTIONS(4016), 1, anon_sym_COMMA, - STATE(2086), 1, + STATE(2100), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109985] = 4, - ACTIONS(4012), 1, - anon_sym_RBRACK, - ACTIONS(4014), 1, + [110089] = 4, + ACTIONS(2791), 1, anon_sym_COMMA, - STATE(2112), 1, - aux_sym_subscript_repeat1, + ACTIONS(2891), 1, + anon_sym_RPAREN, + STATE(2157), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [109999] = 4, - ACTIONS(4016), 1, - anon_sym_RBRACK, + [110103] = 4, + ACTIONS(1117), 1, + anon_sym_RBRACE, ACTIONS(4018), 1, anon_sym_COMMA, - STATE(2112), 1, - aux_sym_subscript_repeat1, + STATE(2075), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110013] = 2, + [110117] = 4, + ACTIONS(2538), 1, + anon_sym_RPAREN, + ACTIONS(4020), 1, + anon_sym_COMMA, + STATE(2092), 1, + aux_sym_pattern_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3791), 3, - sym__newline, - anon_sym_SEMI, + [110131] = 4, + ACTIONS(3126), 1, + anon_sym_RBRACK, + ACTIONS(4023), 1, anon_sym_COMMA, - [110023] = 4, - ACTIONS(2796), 1, - anon_sym_RPAREN, - ACTIONS(2798), 1, + STATE(2093), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [110145] = 4, + ACTIONS(2739), 1, + anon_sym_RBRACE, + ACTIONS(2741), 1, anon_sym_COMMA, - STATE(2154), 1, + STATE(2091), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110037] = 4, - ACTIONS(2798), 1, + [110159] = 4, + ACTIONS(2791), 1, anon_sym_COMMA, - ACTIONS(4020), 1, + ACTIONS(4026), 1, anon_sym_RPAREN, - STATE(2154), 1, + STATE(2157), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110051] = 4, - ACTIONS(2798), 1, + [110173] = 4, + ACTIONS(2791), 1, anon_sym_COMMA, - ACTIONS(4022), 1, + ACTIONS(4028), 1, anon_sym_RPAREN, - STATE(2154), 1, + STATE(2157), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110065] = 4, - ACTIONS(1065), 1, - anon_sym_RPAREN, - ACTIONS(4024), 1, - anon_sym_COMMA, - STATE(2086), 1, - aux_sym_argument_list_repeat1, + [110187] = 4, + ACTIONS(443), 1, + sym__newline, + ACTIONS(4030), 1, + anon_sym_SEMI, + STATE(2041), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110079] = 3, - ACTIONS(4026), 1, - anon_sym_EQ, - ACTIONS(3), 2, + [110201] = 3, + ACTIONS(3540), 1, + aux_sym_format_specifier_token1, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(3838), 2, - anon_sym_COLON, - anon_sym_COMMA, - [110091] = 4, - ACTIONS(1129), 1, - anon_sym_RPAREN, - ACTIONS(4028), 1, - anon_sym_COMMA, - STATE(2069), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3542), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [110213] = 4, + ACTIONS(3739), 1, + sym_python_identifier, + STATE(2174), 1, + sym_dotted_name, + STATE(2330), 1, + sym_aliased_import, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110105] = 4, - ACTIONS(1117), 1, - anon_sym_RBRACE, - ACTIONS(4030), 1, + [110227] = 4, + ACTIONS(3490), 1, + anon_sym_RPAREN, + ACTIONS(4032), 1, anon_sym_COMMA, - STATE(2085), 1, - aux_sym__collection_elements_repeat1, + STATE(2100), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110119] = 4, - ACTIONS(1153), 1, + [110241] = 4, + ACTIONS(1167), 1, anon_sym_RBRACE, - ACTIONS(4032), 1, + ACTIONS(4035), 1, anon_sym_COMMA, - STATE(2148), 1, + STATE(2150), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110133] = 4, - ACTIONS(3130), 1, - anon_sym_RBRACK, - ACTIONS(3132), 1, + [110255] = 4, + ACTIONS(2538), 1, + anon_sym_in, + ACTIONS(4037), 1, anon_sym_COMMA, - STATE(2088), 1, - aux_sym_subscript_repeat1, + STATE(2102), 1, + aux_sym_pattern_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110147] = 2, + [110269] = 4, + ACTIONS(1105), 1, + anon_sym_RBRACK, + ACTIONS(4040), 1, + anon_sym_COMMA, + STATE(2093), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2730), 3, - sym__concat, - anon_sym_COLON, - anon_sym_LPAREN, - [110157] = 4, - ACTIONS(1299), 1, - anon_sym_RPAREN, - ACTIONS(4034), 1, + [110283] = 4, + ACTIONS(3866), 1, anon_sym_COMMA, - STATE(2075), 1, - aux_sym_with_clause_repeat1, + ACTIONS(4042), 1, + anon_sym_in, + STATE(2026), 1, + aux_sym_pattern_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110171] = 4, - ACTIONS(2736), 1, - anon_sym_RBRACE, - ACTIONS(2738), 1, - anon_sym_COMMA, - STATE(2096), 1, - aux_sym__collection_elements_repeat1, + [110297] = 4, + ACTIONS(2895), 1, + anon_sym_LPAREN, + ACTIONS(3292), 1, + anon_sym_COLON, + STATE(2111), 1, + aux_sym_override_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110185] = 4, - ACTIONS(3134), 1, + [110311] = 4, + ACTIONS(3157), 1, anon_sym_RBRACK, - ACTIONS(3136), 1, + ACTIONS(3159), 1, anon_sym_COMMA, - STATE(2115), 1, + STATE(2119), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110199] = 4, - ACTIONS(3997), 1, - anon_sym_COLON, - ACTIONS(4036), 1, + [110325] = 4, + ACTIONS(3866), 1, anon_sym_COMMA, - STATE(2103), 1, - aux_sym_with_clause_repeat1, + ACTIONS(4044), 1, + anon_sym_in, + STATE(2026), 1, + aux_sym_pattern_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110213] = 4, - ACTIONS(4039), 1, + [110339] = 4, + ACTIONS(3653), 1, + anon_sym_DOT, + ACTIONS(3655), 1, + anon_sym_PIPE, + ACTIONS(4046), 1, anon_sym_COLON, - ACTIONS(4041), 1, - anon_sym_COMMA, - STATE(2150), 1, - aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110227] = 4, - ACTIONS(4043), 1, + [110353] = 4, + ACTIONS(4048), 1, anon_sym_RPAREN, - ACTIONS(4045), 1, + ACTIONS(4050), 1, anon_sym_COMMA, - STATE(2118), 1, + STATE(2122), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110241] = 4, - ACTIONS(2897), 1, - anon_sym_RPAREN, - ACTIONS(2899), 1, - anon_sym_COMMA, - STATE(2120), 1, - aux_sym_argument_list_repeat1, + [110367] = 4, + ACTIONS(3862), 1, + anon_sym_COLON, + ACTIONS(4052), 1, + anon_sym_LPAREN, + STATE(2448), 1, + sym_override, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110255] = 4, - ACTIONS(3348), 1, - sym_python_identifier, - STATE(1980), 1, - sym_dotted_name, - STATE(2027), 1, - sym_aliased_import, + [110381] = 4, + ACTIONS(2714), 1, + anon_sym_LPAREN, + ACTIONS(4054), 1, + anon_sym_COLON, + STATE(2111), 1, + aux_sym_override_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110269] = 4, - ACTIONS(4047), 1, + [110395] = 4, + ACTIONS(4057), 1, anon_sym_SEMI, - ACTIONS(4049), 1, + ACTIONS(4059), 1, sym__newline, - STATE(2123), 1, + STATE(2127), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110283] = 4, - ACTIONS(3664), 1, + [110409] = 4, + ACTIONS(3610), 1, anon_sym_COLON, - ACTIONS(4051), 1, + ACTIONS(4061), 1, anon_sym_RBRACE, - STATE(2463), 1, + STATE(2485), 1, sym_format_specifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110297] = 3, - ACTIONS(4026), 1, - anon_sym_EQ, - ACTIONS(3), 2, + [110423] = 3, + ACTIONS(3544), 1, + aux_sym_format_specifier_token1, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(3838), 2, - anon_sym_COLON, - anon_sym_COMMA, - [110309] = 4, - ACTIONS(419), 1, - sym__newline, - ACTIONS(4053), 1, - anon_sym_SEMI, - STATE(2032), 1, - aux_sym__simple_statements_repeat1, + ACTIONS(3546), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [110435] = 4, + ACTIONS(2704), 1, + anon_sym_COLON, + ACTIONS(4063), 1, + anon_sym_COMMA, + STATE(2193), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110323] = 4, - ACTIONS(4055), 1, - anon_sym_RBRACK, - ACTIONS(4057), 1, + [110449] = 4, + ACTIONS(2704), 1, + anon_sym_RPAREN, + ACTIONS(4065), 1, anon_sym_COMMA, - STATE(2112), 1, - aux_sym_subscript_repeat1, + STATE(2027), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110337] = 4, - ACTIONS(3800), 1, - sym_python_identifier, - STATE(2162), 1, - sym_dotted_name, - STATE(2252), 1, - sym_aliased_import, + [110463] = 4, + ACTIONS(3514), 1, + anon_sym_RBRACK, + ACTIONS(4067), 1, + anon_sym_COMMA, + STATE(2117), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110351] = 4, - ACTIONS(1643), 1, - anon_sym_RBRACK, - ACTIONS(4060), 1, + [110477] = 4, + ACTIONS(4070), 1, + anon_sym_RPAREN, + ACTIONS(4072), 1, anon_sym_COMMA, - STATE(2033), 1, + STATE(2160), 1, aux_sym_pattern_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110365] = 4, - ACTIONS(4062), 1, + [110491] = 4, + ACTIONS(4074), 1, anon_sym_RBRACK, - ACTIONS(4064), 1, + ACTIONS(4076), 1, anon_sym_COMMA, - STATE(2112), 1, + STATE(2123), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110379] = 4, - ACTIONS(4066), 1, + [110505] = 4, + ACTIONS(4078), 1, anon_sym_RBRACK, - ACTIONS(4068), 1, + ACTIONS(4080), 1, anon_sym_COMMA, - STATE(2112), 1, + STATE(2123), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110393] = 4, - ACTIONS(3452), 1, - anon_sym_RBRACK, - ACTIONS(4070), 1, + [110519] = 4, + ACTIONS(3331), 1, + anon_sym_RBRACE, + ACTIONS(3333), 1, anon_sym_COMMA, - STATE(2117), 1, - aux_sym__collection_elements_repeat1, + STATE(2065), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110407] = 4, - ACTIONS(985), 1, + [110533] = 4, + ACTIONS(1025), 1, anon_sym_RPAREN, - ACTIONS(4073), 1, + ACTIONS(4082), 1, anon_sym_COMMA, - STATE(2086), 1, + STATE(2100), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110421] = 4, - ACTIONS(3604), 1, + [110547] = 4, + ACTIONS(4084), 1, anon_sym_RBRACK, - ACTIONS(4075), 1, + ACTIONS(4086), 1, anon_sym_COMMA, - STATE(2119), 1, - aux_sym_type_parameter_repeat1, + STATE(2123), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110435] = 4, - ACTIONS(1055), 1, + [110561] = 4, + ACTIONS(1027), 1, anon_sym_RPAREN, - ACTIONS(4078), 1, + ACTIONS(4089), 1, anon_sym_COMMA, - STATE(2086), 1, + STATE(2100), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110449] = 2, + [110575] = 4, + ACTIONS(3866), 1, + anon_sym_COMMA, + ACTIONS(4091), 1, + anon_sym_in, + STATE(2026), 1, + aux_sym_pattern_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2726), 3, - sym__concat, - anon_sym_COLON, - anon_sym_LPAREN, - [110459] = 4, + [110589] = 4, ACTIONS(429), 1, sym__newline, - ACTIONS(4080), 1, + ACTIONS(4093), 1, anon_sym_SEMI, - STATE(2032), 1, + STATE(2041), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110473] = 4, - ACTIONS(435), 1, + [110603] = 4, + ACTIONS(431), 1, sym__newline, - ACTIONS(4082), 1, + ACTIONS(4095), 1, anon_sym_SEMI, - STATE(2032), 1, + STATE(2041), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110487] = 4, - ACTIONS(3861), 1, + [110617] = 4, + ACTIONS(4070), 1, + anon_sym_RBRACK, + ACTIONS(4097), 1, anon_sym_COMMA, - ACTIONS(4084), 1, - anon_sym_in, - STATE(2022), 1, + STATE(2044), 1, aux_sym_pattern_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110501] = 4, - ACTIONS(3861), 1, + [110631] = 4, + ACTIONS(4099), 1, + anon_sym_RPAREN, + ACTIONS(4101), 1, anon_sym_COMMA, - ACTIONS(4086), 1, - anon_sym_in, - STATE(2022), 1, - aux_sym_pattern_list_repeat1, + STATE(2129), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110515] = 2, + [110645] = 4, + ACTIONS(1039), 1, + anon_sym_RPAREN, + ACTIONS(4104), 1, + anon_sym_COMMA, + STATE(2100), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2105), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_in, - [110525] = 4, - ACTIONS(3938), 1, - anon_sym_COLON, - ACTIONS(4088), 1, - anon_sym_LPAREN, - STATE(2579), 1, - sym_override, + [110659] = 4, + ACTIONS(2739), 1, + anon_sym_RBRACK, + ACTIONS(2775), 1, + anon_sym_COMMA, + STATE(2214), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110539] = 4, - ACTIONS(415), 1, - sym__newline, - ACTIONS(4090), 1, - anon_sym_SEMI, - STATE(2032), 1, - aux_sym__simple_statements_repeat1, + [110673] = 4, + ACTIONS(2791), 1, + anon_sym_COMMA, + ACTIONS(2900), 1, + anon_sym_RPAREN, + STATE(2157), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110553] = 2, + [110687] = 4, + ACTIONS(3866), 1, + anon_sym_COMMA, + ACTIONS(4106), 1, + anon_sym_in, + STATE(2026), 1, + aux_sym_pattern_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2719), 3, - sym__concat, - anon_sym_COLON, - anon_sym_LPAREN, - [110563] = 4, - ACTIONS(4092), 1, - anon_sym_RBRACK, - ACTIONS(4094), 1, + [110701] = 4, + ACTIONS(2789), 1, + anon_sym_RPAREN, + ACTIONS(2791), 1, anon_sym_COMMA, - STATE(2112), 1, - aux_sym_subscript_repeat1, + STATE(2157), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110577] = 4, - ACTIONS(2695), 1, - anon_sym_LPAREN, - ACTIONS(3245), 1, - anon_sym_COLON, - STATE(2145), 1, - aux_sym_override_repeat1, + [110715] = 4, + ACTIONS(3327), 1, + anon_sym_RBRACE, + ACTIONS(3329), 1, + anon_sym_COMMA, + STATE(2182), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110591] = 3, - ACTIONS(4098), 1, - aux_sym_format_specifier_token1, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - ACTIONS(4096), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [110603] = 4, - ACTIONS(2736), 1, + [110729] = 4, + ACTIONS(3602), 1, anon_sym_RPAREN, - ACTIONS(2798), 1, + ACTIONS(3747), 1, anon_sym_COMMA, - STATE(2154), 1, - aux_sym__collection_elements_repeat1, + STATE(2222), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110617] = 4, - ACTIONS(4100), 1, + [110743] = 4, + ACTIONS(4108), 1, anon_sym_RBRACK, - ACTIONS(4102), 1, + ACTIONS(4110), 1, anon_sym_COMMA, - STATE(2112), 1, + STATE(2123), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110631] = 4, - ACTIONS(3664), 1, - anon_sym_COLON, - ACTIONS(4104), 1, - anon_sym_RBRACE, - STATE(2518), 1, - sym_format_specifier, + [110757] = 4, + ACTIONS(4112), 1, + anon_sym_RBRACK, + ACTIONS(4114), 1, + anon_sym_COMMA, + STATE(2123), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110645] = 4, - ACTIONS(3374), 1, + [110771] = 3, + ACTIONS(3480), 1, + aux_sym_format_specifier_token1, + ACTIONS(2605), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3482), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [110783] = 4, + ACTIONS(3439), 1, anon_sym_COMMA, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_RBRACK, - STATE(2119), 1, + STATE(2171), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110659] = 4, - ACTIONS(1027), 1, - anon_sym_RPAREN, - ACTIONS(4108), 1, + [110797] = 4, + ACTIONS(3153), 1, + anon_sym_RBRACK, + ACTIONS(3155), 1, anon_sym_COMMA, - STATE(2086), 1, - aux_sym_argument_list_repeat1, + STATE(2138), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110673] = 4, - ACTIONS(4039), 1, - anon_sym_RPAREN, - ACTIONS(4110), 1, - anon_sym_COMMA, - STATE(2157), 1, - aux_sym__parameters_repeat1, - ACTIONS(3), 2, + [110811] = 3, + ACTIONS(4120), 1, + aux_sym_format_specifier_token1, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [110687] = 3, - ACTIONS(3834), 1, - anon_sym_EQ, + ACTIONS(4118), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [110823] = 4, + ACTIONS(3126), 1, + anon_sym_COLON, + ACTIONS(4122), 1, + anon_sym_COMMA, + STATE(2143), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3838), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [110699] = 4, - ACTIONS(1021), 1, - anon_sym_RPAREN, - ACTIONS(4112), 1, - anon_sym_COMMA, - STATE(2086), 1, - aux_sym_argument_list_repeat1, + [110837] = 4, + ACTIONS(3610), 1, + anon_sym_COLON, + ACTIONS(4125), 1, + anon_sym_RBRACE, + STATE(2566), 1, + sym_format_specifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110713] = 3, - ACTIONS(4114), 1, - anon_sym_COLON, + [110851] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3838), 2, + ACTIONS(1413), 3, + anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, - [110725] = 4, - ACTIONS(4116), 1, - anon_sym_RBRACK, - ACTIONS(4118), 1, + [110861] = 4, + ACTIONS(1289), 1, + anon_sym_RPAREN, + ACTIONS(4127), 1, anon_sym_COMMA, - STATE(2112), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [110739] = 4, - ACTIONS(3854), 1, - anon_sym_COLON, - ACTIONS(4120), 1, - anon_sym_DQUOTE, - STATE(2008), 1, - aux_sym_overrides_statement_repeat1, + STATE(2129), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110753] = 4, - ACTIONS(4122), 1, - anon_sym_SEMI, - ACTIONS(4124), 1, - sym__newline, - STATE(2128), 1, - aux_sym__simple_statements_repeat1, + [110875] = 4, + ACTIONS(1043), 1, + anon_sym_RPAREN, + ACTIONS(4129), 1, + anon_sym_COMMA, + STATE(2100), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110767] = 4, - ACTIONS(2877), 1, - anon_sym_LPAREN, - ACTIONS(3245), 1, + [110889] = 4, + ACTIONS(4099), 1, anon_sym_COLON, - STATE(2160), 1, - aux_sym_override_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [110781] = 4, - ACTIONS(4126), 1, - anon_sym_RBRACK, - ACTIONS(4128), 1, + ACTIONS(4131), 1, anon_sym_COMMA, - STATE(2112), 1, - aux_sym_subscript_repeat1, + STATE(2148), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110795] = 4, - ACTIONS(2877), 1, - anon_sym_LPAREN, - ACTIONS(3245), 1, - anon_sym_COLON, - STATE(2163), 1, - aux_sym_override_repeat1, + [110903] = 4, + ACTIONS(3343), 1, + sym_python_identifier, + STATE(1995), 1, + sym_dotted_name, + STATE(2031), 1, + sym_aliased_import, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110809] = 4, - ACTIONS(4130), 1, + [110917] = 4, + ACTIONS(4134), 1, anon_sym_RBRACE, - ACTIONS(4132), 1, + ACTIONS(4136), 1, anon_sym_COMMA, - STATE(2148), 1, + STATE(2150), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110823] = 4, - ACTIONS(3773), 1, - anon_sym_RPAREN, - ACTIONS(4135), 1, - anon_sym_COMMA, - STATE(2149), 1, - aux_sym__import_list_repeat1, + [110931] = 3, + ACTIONS(4139), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110837] = 4, - ACTIONS(2705), 1, + ACTIONS(3850), 2, anon_sym_COLON, - ACTIONS(4138), 1, anon_sym_COMMA, - STATE(2205), 1, + [110943] = 4, + ACTIONS(4141), 1, + anon_sym_COLON, + ACTIONS(4143), 1, + anon_sym_COMMA, + STATE(2115), 1, aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110851] = 4, - ACTIONS(421), 1, - sym__newline, - ACTIONS(4140), 1, - anon_sym_SEMI, - STATE(2032), 1, - aux_sym__simple_statements_repeat1, + [110957] = 3, + ACTIONS(4139), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3850), 2, + anon_sym_COLON, + anon_sym_COMMA, + [110969] = 4, + ACTIONS(4145), 1, + anon_sym_RPAREN, + ACTIONS(4147), 1, + anon_sym_COMMA, + STATE(2146), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110865] = 4, - ACTIONS(3164), 1, + [110983] = 4, + ACTIONS(4149), 1, anon_sym_RBRACK, - ACTIONS(3166), 1, + ACTIONS(4151), 1, anon_sym_COMMA, - STATE(2134), 1, + STATE(2123), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110879] = 3, - ACTIONS(4144), 1, - anon_sym_in, + [110997] = 4, + ACTIONS(4153), 1, + anon_sym_RBRACK, + ACTIONS(4155), 1, + anon_sym_COMMA, + STATE(2123), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(4142), 2, - sym__newline, - anon_sym_SEMI, - [110891] = 4, + [111011] = 4, ACTIONS(1117), 1, anon_sym_RPAREN, - ACTIONS(4146), 1, + ACTIONS(4157), 1, anon_sym_COMMA, - STATE(2179), 1, + STATE(2064), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110905] = 2, + [111025] = 4, + ACTIONS(435), 1, + sym__newline, + ACTIONS(4159), 1, + anon_sym_SEMI, + STATE(2041), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1484), 3, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - [110915] = 4, - ACTIONS(4148), 1, - anon_sym_RBRACK, - ACTIONS(4150), 1, - anon_sym_COMMA, - STATE(2114), 1, - aux_sym_pattern_list_repeat1, + [111039] = 4, + ACTIONS(421), 1, + sym__newline, + ACTIONS(4161), 1, + anon_sym_SEMI, + STATE(2041), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110929] = 4, - ACTIONS(2705), 1, + [111053] = 4, + ACTIONS(1637), 1, anon_sym_RPAREN, - ACTIONS(4152), 1, + ACTIONS(4163), 1, anon_sym_COMMA, - STATE(2187), 1, - aux_sym__parameters_repeat1, + STATE(2092), 1, + aux_sym_pattern_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110943] = 4, - ACTIONS(4154), 1, - anon_sym_SEMI, - ACTIONS(4156), 1, - sym__newline, - STATE(2122), 1, - aux_sym__simple_statements_repeat1, + [111067] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110957] = 3, - ACTIONS(3052), 1, - anon_sym_from, + ACTIONS(2111), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_in, + [111077] = 3, + ACTIONS(4167), 1, + anon_sym_in, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3050), 2, + ACTIONS(4165), 2, sym__newline, anon_sym_SEMI, - [110969] = 4, - ACTIONS(2709), 1, - anon_sym_LPAREN, - ACTIONS(4158), 1, - anon_sym_COLON, - STATE(2160), 1, - aux_sym_override_repeat1, + [111089] = 4, + ACTIONS(4169), 1, + anon_sym_SEMI, + ACTIONS(4171), 1, + sym__newline, + STATE(2126), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110983] = 4, - ACTIONS(2798), 1, + [111103] = 4, + ACTIONS(4173), 1, + anon_sym_RBRACK, + ACTIONS(4175), 1, anon_sym_COMMA, - ACTIONS(2889), 1, - anon_sym_RPAREN, - STATE(2154), 1, - aux_sym__collection_elements_repeat1, + STATE(2123), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [110997] = 3, - ACTIONS(3761), 1, - anon_sym_as, + [111117] = 4, + ACTIONS(2791), 1, + anon_sym_COMMA, + ACTIONS(2809), 1, + anon_sym_RPAREN, + STATE(2157), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3802), 2, - anon_sym_RPAREN, + [111131] = 4, + ACTIONS(4177), 1, + anon_sym_RBRACK, + ACTIONS(4179), 1, anon_sym_COMMA, - [111009] = 4, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(3245), 1, - anon_sym_COLON, - STATE(2160), 1, - aux_sym_override_repeat1, + STATE(2123), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111023] = 4, - ACTIONS(2841), 1, + [111145] = 4, + ACTIONS(2759), 1, anon_sym_RPAREN, - ACTIONS(2843), 1, + ACTIONS(2761), 1, anon_sym_COMMA, - STATE(2137), 1, + STATE(2130), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111037] = 4, - ACTIONS(4161), 1, + [111159] = 4, + ACTIONS(4181), 1, + anon_sym_SEMI, + ACTIONS(4183), 1, + sym__newline, + STATE(2159), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [111173] = 4, + ACTIONS(3809), 1, anon_sym_RPAREN, - ACTIONS(4163), 1, + ACTIONS(4185), 1, anon_sym_COMMA, - STATE(2140), 1, - aux_sym_argument_list_repeat1, + STATE(2169), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111051] = 4, - ACTIONS(3305), 1, + [111187] = 4, + ACTIONS(3304), 1, anon_sym_RBRACE, - ACTIONS(3307), 1, + ACTIONS(3306), 1, anon_sym_COMMA, - STATE(2177), 1, + STATE(2181), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111065] = 4, - ACTIONS(1129), 1, + [111201] = 4, + ACTIONS(3684), 1, anon_sym_RBRACK, - ACTIONS(4165), 1, + ACTIONS(4188), 1, anon_sym_COMMA, - STATE(2216), 1, - aux_sym_assert_statement_repeat1, + STATE(2171), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111079] = 3, - ACTIONS(3472), 1, - aux_sym_format_specifier_token1, - ACTIONS(2592), 2, + [111215] = 4, + ACTIONS(3147), 1, + anon_sym_RBRACK, + ACTIONS(3151), 1, + anon_sym_COMMA, + STATE(2166), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3474), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [111091] = 4, - ACTIONS(4148), 1, + [111229] = 4, + ACTIONS(4191), 1, anon_sym_RPAREN, - ACTIONS(4167), 1, + ACTIONS(4193), 1, anon_sym_COMMA, - STATE(2006), 1, - aux_sym_pattern_list_repeat1, + STATE(2147), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111105] = 4, - ACTIONS(3218), 1, - anon_sym_RBRACK, - ACTIONS(3220), 1, + [111243] = 3, + ACTIONS(3749), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3816), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2146), 1, - aux_sym_subscript_repeat1, + [111255] = 4, + ACTIONS(2848), 1, + anon_sym_LPAREN, + ACTIONS(3292), 1, + anon_sym_COLON, + STATE(2105), 1, + aux_sym_override_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111119] = 4, - ACTIONS(417), 1, - sym__newline, - ACTIONS(4169), 1, - anon_sym_SEMI, - STATE(2032), 1, - aux_sym__simple_statements_repeat1, + [111269] = 3, + ACTIONS(3107), 1, + anon_sym_from, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111133] = 4, - ACTIONS(3456), 1, + ACTIONS(3105), 2, + sym__newline, + anon_sym_SEMI, + [111281] = 4, + ACTIONS(3408), 1, anon_sym_import, - ACTIONS(4171), 1, + ACTIONS(4195), 1, anon_sym_DOT, - STATE(2172), 1, + STATE(2177), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111147] = 2, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(1484), 3, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_COMMA, - [111157] = 4, - ACTIONS(1175), 1, - anon_sym_RBRACE, - ACTIONS(4174), 1, + [111295] = 4, + ACTIONS(3207), 1, + anon_sym_RBRACK, + ACTIONS(3209), 1, anon_sym_COMMA, - STATE(2148), 1, - aux_sym_dictionary_repeat1, + STATE(2156), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111171] = 4, - ACTIONS(1155), 1, - anon_sym_RBRACE, - ACTIONS(4176), 1, - anon_sym_COMMA, - STATE(2148), 1, - aux_sym_dictionary_repeat1, + [111309] = 4, + ACTIONS(2848), 1, + anon_sym_LPAREN, + ACTIONS(3292), 1, + anon_sym_COLON, + STATE(2111), 1, + aux_sym_override_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111185] = 3, - ACTIONS(3480), 1, + [111323] = 3, + ACTIONS(3532), 1, aux_sym_format_specifier_token1, - ACTIONS(2592), 2, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(3482), 2, + ACTIONS(3534), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [111197] = 4, - ACTIONS(1151), 1, + [111335] = 4, + ACTIONS(1171), 1, anon_sym_RBRACE, - ACTIONS(4178), 1, + ACTIONS(4198), 1, anon_sym_COMMA, - STATE(2148), 1, + STATE(2150), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111211] = 4, - ACTIONS(1029), 1, - anon_sym_RPAREN, - ACTIONS(4180), 1, + [111349] = 4, + ACTIONS(1177), 1, + anon_sym_RBRACE, + ACTIONS(4200), 1, anon_sym_COMMA, - STATE(2086), 1, - aux_sym_argument_list_repeat1, + STATE(2150), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111225] = 4, - ACTIONS(3452), 1, - anon_sym_RPAREN, - ACTIONS(4182), 1, - anon_sym_COMMA, - STATE(2179), 1, - aux_sym__collection_elements_repeat1, + [111363] = 4, + ACTIONS(451), 1, + sym__newline, + ACTIONS(4202), 1, + anon_sym_SEMI, + STATE(2041), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111239] = 4, - ACTIONS(1003), 1, - anon_sym_RPAREN, - ACTIONS(4185), 1, - anon_sym_COMMA, - STATE(2086), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, + [111377] = 3, + ACTIONS(3413), 1, + aux_sym_format_specifier_token1, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [111253] = 2, - ACTIONS(3), 2, + ACTIONS(3415), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [111389] = 3, + ACTIONS(3522), 1, + aux_sym_format_specifier_token1, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(2596), 3, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - [111263] = 4, - ACTIONS(3199), 1, + ACTIONS(3524), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [111401] = 4, + ACTIONS(3187), 1, anon_sym_RBRACK, - ACTIONS(3201), 1, + ACTIONS(3189), 1, anon_sym_COMMA, - STATE(2194), 1, + STATE(2198), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111277] = 2, + [111415] = 4, + ACTIONS(1023), 1, + anon_sym_RPAREN, + ACTIONS(4204), 1, + anon_sym_COMMA, + STATE(2100), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [111429] = 4, + ACTIONS(1153), 1, + anon_sym_RBRACE, + ACTIONS(4206), 1, + anon_sym_COMMA, + STATE(2150), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2116), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_in, - [111287] = 3, - ACTIONS(3476), 1, - aux_sym_format_specifier_token1, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3478), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [111299] = 4, - ACTIONS(4187), 1, + [111443] = 4, + ACTIONS(4208), 1, anon_sym_RPAREN, - ACTIONS(4189), 1, + ACTIONS(4210), 1, anon_sym_COMMA, - STATE(2197), 1, + STATE(2201), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111313] = 4, - ACTIONS(2754), 1, + [111457] = 4, + ACTIONS(2821), 1, anon_sym_RPAREN, - ACTIONS(2756), 1, + ACTIONS(2823), 1, anon_sym_COMMA, - STATE(2199), 1, + STATE(2203), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111327] = 4, - ACTIONS(4191), 1, - anon_sym_RPAREN, - ACTIONS(4193), 1, + [111471] = 4, + ACTIONS(2791), 1, anon_sym_COMMA, - STATE(2187), 1, - aux_sym__parameters_repeat1, + ACTIONS(2863), 1, + anon_sym_RPAREN, + STATE(2157), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111341] = 4, - ACTIONS(4196), 1, + [111485] = 4, + ACTIONS(4212), 1, anon_sym_SEMI, - ACTIONS(4198), 1, + ACTIONS(4214), 1, sym__newline, - STATE(2202), 1, + STATE(2206), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111355] = 3, - ACTIONS(3463), 1, - aux_sym_format_specifier_token1, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3465), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [111367] = 4, - ACTIONS(4200), 1, - anon_sym_RBRACK, - ACTIONS(4202), 1, + [111499] = 4, + ACTIONS(3893), 1, + anon_sym_COLON, + ACTIONS(4216), 1, anon_sym_COMMA, - STATE(2112), 1, - aux_sym_subscript_repeat1, + STATE(2193), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111381] = 4, - ACTIONS(4204), 1, - anon_sym_RBRACK, - ACTIONS(4206), 1, + [111513] = 4, + ACTIONS(1029), 1, + anon_sym_RPAREN, + ACTIONS(4219), 1, anon_sym_COMMA, - STATE(2112), 1, - aux_sym_subscript_repeat1, + STATE(2100), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111395] = 4, - ACTIONS(3408), 1, - anon_sym_import, - ACTIONS(4208), 1, - anon_sym_DOT, - STATE(2217), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, + [111527] = 3, + ACTIONS(3417), 1, + aux_sym_format_specifier_token1, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [111409] = 4, - ACTIONS(1007), 1, - anon_sym_RPAREN, - ACTIONS(4210), 1, + ACTIONS(3419), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [111539] = 4, + ACTIONS(3359), 1, + anon_sym_RBRACE, + ACTIONS(3361), 1, anon_sym_COMMA, - STATE(2086), 1, - aux_sym_argument_list_repeat1, + STATE(2227), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111423] = 4, - ACTIONS(4212), 1, + [111553] = 4, + ACTIONS(4221), 1, anon_sym_RBRACK, - ACTIONS(4214), 1, + ACTIONS(4223), 1, anon_sym_COMMA, - STATE(2112), 1, + STATE(2123), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111437] = 4, - ACTIONS(4216), 1, + [111567] = 4, + ACTIONS(4225), 1, anon_sym_RBRACK, - ACTIONS(4218), 1, + ACTIONS(4227), 1, anon_sym_COMMA, - STATE(2112), 1, + STATE(2123), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111451] = 4, - ACTIONS(3313), 1, - sym_python_identifier, - ACTIONS(4220), 1, - anon_sym_import, - STATE(2514), 1, - sym_dotted_name, + [111581] = 4, + ACTIONS(4229), 1, + anon_sym_RBRACK, + ACTIONS(4231), 1, + anon_sym_COMMA, + STATE(2123), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111465] = 4, - ACTIONS(1013), 1, + [111595] = 4, + ACTIONS(1047), 1, anon_sym_RPAREN, - ACTIONS(4222), 1, + ACTIONS(4233), 1, anon_sym_COMMA, - STATE(2086), 1, + STATE(2100), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111479] = 4, - ACTIONS(2798), 1, - anon_sym_COMMA, - ACTIONS(4224), 1, + [111609] = 4, + ACTIONS(1077), 1, anon_sym_RPAREN, - STATE(2154), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4235), 1, + anon_sym_COMMA, + STATE(2100), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111493] = 4, - ACTIONS(1011), 1, + [111623] = 4, + ACTIONS(3471), 1, + anon_sym_import, + ACTIONS(3881), 1, + anon_sym_DOT, + STATE(2177), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [111637] = 4, + ACTIONS(1079), 1, anon_sym_RPAREN, - ACTIONS(4226), 1, + ACTIONS(4237), 1, anon_sym_COMMA, - STATE(2086), 1, + STATE(2100), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111507] = 4, - ACTIONS(3693), 1, - anon_sym_RPAREN, - ACTIONS(3759), 1, + [111651] = 4, + ACTIONS(4239), 1, + anon_sym_RBRACK, + ACTIONS(4241), 1, anon_sym_COMMA, - STATE(2209), 1, - aux_sym__import_list_repeat1, + STATE(2123), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111521] = 4, - ACTIONS(2798), 1, - anon_sym_COMMA, - ACTIONS(2839), 1, - anon_sym_RPAREN, - STATE(2154), 1, - aux_sym__collection_elements_repeat1, + [111665] = 4, + ACTIONS(3276), 1, + sym_python_identifier, + ACTIONS(4243), 1, + anon_sym_import, + STATE(2558), 1, + sym_dotted_name, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111535] = 4, - ACTIONS(437), 1, + [111679] = 4, + ACTIONS(419), 1, sym__newline, - ACTIONS(4228), 1, + ACTIONS(4245), 1, anon_sym_SEMI, - STATE(2032), 1, + STATE(2041), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111549] = 4, - ACTIONS(2798), 1, + [111693] = 3, + ACTIONS(3429), 1, + aux_sym_format_specifier_token1, + ACTIONS(2605), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3431), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [111705] = 4, + ACTIONS(2791), 1, anon_sym_COMMA, - ACTIONS(4230), 1, + ACTIONS(4247), 1, anon_sym_RPAREN, - STATE(2154), 1, + STATE(2157), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111563] = 4, - ACTIONS(3350), 1, - anon_sym_RBRACE, - ACTIONS(3352), 1, - anon_sym_COMMA, - STATE(2222), 1, - aux_sym_dictionary_repeat1, + [111719] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111577] = 4, - ACTIONS(4191), 1, + ACTIONS(2724), 3, + sym__concat, anon_sym_COLON, - ACTIONS(4232), 1, - anon_sym_COMMA, - STATE(2205), 1, - aux_sym__parameters_repeat1, + anon_sym_LPAREN, + [111729] = 4, + ACTIONS(2708), 1, + anon_sym_LPAREN, + ACTIONS(3292), 1, + anon_sym_COLON, + STATE(2179), 1, + aux_sym_override_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111591] = 4, - ACTIONS(4235), 1, - anon_sym_SEMI, - ACTIONS(4237), 1, - sym__newline, - STATE(2171), 1, - aux_sym__simple_statements_repeat1, + [111743] = 3, + ACTIONS(4249), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111605] = 4, - ACTIONS(3763), 1, + ACTIONS(3850), 2, anon_sym_RPAREN, - ACTIONS(4239), 1, anon_sym_COMMA, - STATE(2149), 1, - aux_sym__import_list_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [111619] = 4, - ACTIONS(2883), 1, + [111755] = 4, + ACTIONS(2739), 1, anon_sym_RPAREN, - ACTIONS(2885), 1, + ACTIONS(2791), 1, anon_sym_COMMA, - STATE(2178), 1, - aux_sym_argument_list_repeat1, + STATE(2157), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111633] = 4, - ACTIONS(3763), 1, - anon_sym_RPAREN, - ACTIONS(4241), 1, - anon_sym_COMMA, - STATE(2149), 1, - aux_sym__import_list_repeat1, + [111769] = 4, + ACTIONS(4251), 1, + anon_sym_SEMI, + ACTIONS(4253), 1, + sym__newline, + STATE(2183), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111647] = 4, - ACTIONS(3354), 1, - anon_sym_RBRACE, - ACTIONS(3356), 1, + [111783] = 4, + ACTIONS(1117), 1, + anon_sym_RBRACK, + ACTIONS(4255), 1, anon_sym_COMMA, - STATE(2175), 1, - aux_sym_dictionary_repeat1, + STATE(2117), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111661] = 4, - ACTIONS(2547), 1, - anon_sym_RPAREN, - ACTIONS(4243), 1, + [111797] = 4, + ACTIONS(2791), 1, anon_sym_COMMA, - STATE(2211), 1, - aux_sym_pattern_list_repeat1, + ACTIONS(4257), 1, + anon_sym_RPAREN, + STATE(2157), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111675] = 4, - ACTIONS(3374), 1, + [111811] = 4, + ACTIONS(3439), 1, anon_sym_COMMA, - ACTIONS(4246), 1, + ACTIONS(4259), 1, anon_sym_RBRACK, - STATE(2119), 1, + STATE(2171), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111689] = 3, - ACTIONS(3430), 1, - aux_sym_format_specifier_token1, - ACTIONS(2592), 2, + [111825] = 4, + ACTIONS(2857), 1, + anon_sym_RPAREN, + ACTIONS(2859), 1, + anon_sym_COMMA, + STATE(2187), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3432), 2, - anon_sym_LBRACE, + [111839] = 4, + ACTIONS(3286), 1, anon_sym_RBRACE, - [111701] = 4, - ACTIONS(1117), 1, - anon_sym_RBRACK, - ACTIONS(4248), 1, + ACTIONS(3288), 1, anon_sym_COMMA, - STATE(2117), 1, - aux_sym__collection_elements_repeat1, + STATE(2188), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [111853] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111715] = 4, - ACTIONS(4250), 1, + ACTIONS(2209), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_in, + [111863] = 4, + ACTIONS(4261), 1, anon_sym_RPAREN, - ACTIONS(4252), 1, + ACTIONS(4263), 1, anon_sym_COMMA, - STATE(2180), 1, + STATE(2194), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111729] = 4, - ACTIONS(3064), 1, - anon_sym_RBRACK, - ACTIONS(4254), 1, - anon_sym_COMMA, - STATE(2216), 1, - aux_sym_assert_statement_repeat1, + [111877] = 3, + ACTIONS(3846), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111743] = 4, - ACTIONS(3412), 1, - anon_sym_import, - ACTIONS(4208), 1, - anon_sym_DOT, - STATE(2172), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(3850), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [111889] = 4, + ACTIONS(3754), 1, + anon_sym_RPAREN, + ACTIONS(4265), 1, + anon_sym_COMMA, + STATE(2169), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111757] = 4, - ACTIONS(3214), 1, + [111903] = 4, + ACTIONS(3245), 1, anon_sym_RBRACK, - ACTIONS(3216), 1, + ACTIONS(3247), 1, anon_sym_COMMA, - STATE(2191), 1, + STATE(2204), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111771] = 3, - ACTIONS(3535), 1, - aux_sym_format_specifier_token1, - ACTIONS(2592), 2, + [111917] = 4, + ACTIONS(4141), 1, + anon_sym_RPAREN, + ACTIONS(4267), 1, + anon_sym_COMMA, + STATE(2116), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3537), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [111783] = 4, - ACTIONS(4257), 1, + [111931] = 4, + ACTIONS(4269), 1, anon_sym_COLON, - ACTIONS(4260), 1, + ACTIONS(4272), 1, anon_sym_DQUOTE, - STATE(2220), 1, + STATE(2225), 1, aux_sym_overrides_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111797] = 4, - ACTIONS(2798), 1, + [111945] = 4, + ACTIONS(2791), 1, anon_sym_COMMA, - ACTIONS(2832), 1, + ACTIONS(2825), 1, anon_sym_RPAREN, - STATE(2154), 1, + STATE(2157), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111811] = 4, - ACTIONS(1157), 1, + [111959] = 4, + ACTIONS(1139), 1, anon_sym_RBRACE, - ACTIONS(4262), 1, + ACTIONS(4274), 1, anon_sym_COMMA, - STATE(2148), 1, + STATE(2150), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111825] = 3, - ACTIONS(3558), 1, - aux_sym_format_specifier_token1, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3560), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [111837] = 4, - ACTIONS(1009), 1, + [111973] = 4, + ACTIONS(1057), 1, anon_sym_RPAREN, - ACTIONS(4264), 1, + ACTIONS(4276), 1, anon_sym_COMMA, - STATE(2086), 1, + STATE(2100), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111851] = 4, - ACTIONS(4266), 1, + [111987] = 4, + ACTIONS(4278), 1, anon_sym_RBRACK, - ACTIONS(4268), 1, + ACTIONS(4280), 1, anon_sym_COMMA, - STATE(2112), 1, + STATE(2123), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111865] = 3, - ACTIONS(3554), 1, - aux_sym_format_specifier_token1, - ACTIONS(2592), 2, + [112001] = 4, + ACTIONS(3754), 1, + anon_sym_RPAREN, + ACTIONS(4282), 1, + anon_sym_COMMA, + STATE(2169), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3556), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [111877] = 4, - ACTIONS(4270), 1, + [112015] = 4, + ACTIONS(4284), 1, anon_sym_RBRACK, - ACTIONS(4272), 1, + ACTIONS(4286), 1, anon_sym_COMMA, - STATE(2112), 1, + STATE(2123), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111891] = 3, - ACTIONS(1781), 1, - aux_sym_recipe_token1, - ACTIONS(1783), 1, - anon_sym_NULL, - ACTIONS(2592), 2, + [112029] = 3, + ACTIONS(4288), 1, + sym_identifier, + STATE(1906), 1, + aux_sym_export_functions_statement_repeat1, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111902] = 2, + [112040] = 3, + ACTIONS(4290), 1, + anon_sym_LPAREN, + STATE(2287), 1, + sym_parameters, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(4260), 2, - anon_sym_COLON, - anon_sym_DQUOTE, - [111911] = 3, - ACTIONS(4274), 1, + [112051] = 3, + ACTIONS(4292), 1, aux_sym_recipe_token1, - ACTIONS(4276), 1, - anon_sym_NULL, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - [111922] = 2, - ACTIONS(3), 2, + ACTIONS(4294), 1, + anon_sym_, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(2994), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - [111931] = 3, - ACTIONS(1535), 1, + [112062] = 3, + ACTIONS(1583), 1, aux_sym_recipe_token1, - ACTIONS(1537), 1, - anon_sym_NULL, - ACTIONS(2592), 2, + ACTIONS(1585), 1, + anon_sym_, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [111942] = 3, - ACTIONS(4278), 1, + [112073] = 3, + ACTIONS(4296), 1, anon_sym_RBRACE, - ACTIONS(4280), 1, + ACTIONS(4298), 1, sym_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [111953] = 3, - ACTIONS(3680), 1, - anon_sym_NULL, - ACTIONS(3682), 1, - aux_sym_recipe_token1, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - [111964] = 2, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2547), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [111973] = 3, - ACTIONS(4282), 1, - aux_sym_recipe_token1, - ACTIONS(4284), 1, - anon_sym_NULL, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - [111984] = 2, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2598), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [111993] = 2, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2925), 2, - anon_sym_COLON, - anon_sym_LPAREN, - [112002] = 2, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(4286), 2, - sym__newline, - anon_sym_SEMI, - [112011] = 3, - ACTIONS(1575), 1, - aux_sym_recipe_token1, - ACTIONS(1577), 1, - anon_sym_NULL, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - [112022] = 2, + [112084] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(4191), 2, - anon_sym_COLON, + ACTIONS(3017), 2, + anon_sym_RBRACK, anon_sym_COMMA, - [112031] = 3, - ACTIONS(1531), 1, + [112093] = 3, + ACTIONS(3372), 1, + anon_sym_, + ACTIONS(3374), 1, aux_sym_recipe_token1, - ACTIONS(1533), 1, - anon_sym_NULL, - ACTIONS(2592), 2, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [112042] = 3, - ACTIONS(1527), 1, + [112104] = 3, + ACTIONS(4300), 1, aux_sym_recipe_token1, - ACTIONS(1529), 1, - anon_sym_NULL, - ACTIONS(2592), 2, + ACTIONS(4302), 1, + anon_sym_, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [112053] = 2, + [112115] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(4191), 2, + ACTIONS(3850), 2, anon_sym_RPAREN, anon_sym_COMMA, - [112062] = 2, + [112124] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3452), 2, + ACTIONS(4304), 2, anon_sym_RPAREN, anon_sym_COMMA, - [112071] = 3, - ACTIONS(4288), 1, - anon_sym_COMMA, - STATE(1804), 1, - aux_sym_pattern_list_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [112082] = 3, - ACTIONS(4290), 1, - aux_sym_recipe_token1, - ACTIONS(4292), 1, - anon_sym_NULL, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - [112093] = 2, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3456), 2, - anon_sym_import, - anon_sym_DOT, - [112102] = 2, + [112133] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3185), 2, + ACTIONS(4306), 2, sym__newline, anon_sym_SEMI, - [112111] = 2, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(4294), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [112120] = 2, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(4296), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [112129] = 2, + [112142] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3802), 2, + ACTIONS(3893), 2, anon_sym_RPAREN, anon_sym_COMMA, - [112138] = 2, + [112151] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3171), 2, + ACTIONS(4308), 2, sym__newline, anon_sym_SEMI, - [112147] = 3, - ACTIONS(4298), 1, - aux_sym_recipe_token1, - ACTIONS(4300), 1, - anon_sym_NULL, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - [112158] = 2, + [112160] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(4302), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [112167] = 2, + ACTIONS(3191), 2, + sym__newline, + anon_sym_SEMI, + [112169] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(4304), 2, + ACTIONS(3893), 2, anon_sym_COLON, anon_sym_COMMA, - [112176] = 2, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(2709), 2, - anon_sym_COLON, - anon_sym_LPAREN, - [112185] = 3, - ACTIONS(4306), 1, - anon_sym_RBRACE, - ACTIONS(4308), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [112196] = 2, + [112178] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2994), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [112205] = 3, - ACTIONS(1793), 1, + ACTIONS(4310), 2, + sym__newline, + anon_sym_SEMI, + [112187] = 3, + ACTIONS(1571), 1, aux_sym_recipe_token1, - ACTIONS(1795), 1, - anon_sym_NULL, - ACTIONS(2592), 2, + ACTIONS(1573), 1, + anon_sym_, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [112216] = 2, - ACTIONS(3), 2, + [112198] = 3, + ACTIONS(3013), 1, + anon_sym_, + ACTIONS(3015), 1, + aux_sym_recipe_token1, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(1387), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [112225] = 3, - ACTIONS(4310), 1, - anon_sym_RBRACE, + [112209] = 3, ACTIONS(4312), 1, - sym_identifier, + anon_sym_COMMA, + STATE(1837), 1, + aux_sym_pattern_list_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [112236] = 3, - ACTIONS(2945), 1, - anon_sym_NULL, - ACTIONS(2947), 1, + [112220] = 3, + ACTIONS(4314), 1, aux_sym_recipe_token1, - ACTIONS(2592), 2, + ACTIONS(4316), 1, + anon_sym_, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [112247] = 2, - ACTIONS(3), 2, + [112231] = 3, + ACTIONS(4318), 1, + aux_sym_recipe_token1, + ACTIONS(4320), 1, + anon_sym_, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(3911), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [112256] = 2, + [112242] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3838), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [112265] = 2, + ACTIONS(3185), 2, + sym__newline, + anon_sym_SEMI, + [112251] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(4130), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [112274] = 2, + ACTIONS(4322), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [112260] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(4304), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [112283] = 3, - ACTIONS(1539), 1, + ACTIONS(3408), 2, + anon_sym_import, + anon_sym_DOT, + [112269] = 3, + ACTIONS(1553), 1, aux_sym_recipe_token1, - ACTIONS(1541), 1, - anon_sym_NULL, - ACTIONS(2592), 2, - sym_line_continuation, - sym_comment, - [112294] = 2, - ACTIONS(3), 2, + ACTIONS(1555), 1, + anon_sym_, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(3838), 2, - anon_sym_COLON, - anon_sym_COMMA, - [112303] = 2, + [112280] = 3, + ACTIONS(4324), 1, + anon_sym_RBRACE, + ACTIONS(4326), 1, + sym_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(4314), 2, - sym__newline, - anon_sym_SEMI, - [112312] = 3, - ACTIONS(4316), 1, + [112291] = 3, + ACTIONS(4328), 1, aux_sym_recipe_token1, - ACTIONS(4318), 1, - anon_sym_NULL, - ACTIONS(2592), 2, + ACTIONS(4330), 1, + anon_sym_, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [112323] = 2, + [112302] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(4320), 2, + ACTIONS(4332), 2, sym__newline, anon_sym_SEMI, - [112332] = 2, + [112311] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3997), 2, + ACTIONS(1385), 2, anon_sym_RPAREN, anon_sym_COMMA, - [112341] = 2, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(3452), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - [112350] = 2, + [112320] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3276), 2, - anon_sym_RBRACK, + ACTIONS(3908), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [112359] = 2, + [112329] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(4294), 2, - anon_sym_RBRACK, + ACTIONS(3017), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [112368] = 2, + [112338] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(4296), 2, - anon_sym_RBRACK, + ACTIONS(3850), 2, + anon_sym_COLON, anon_sym_COMMA, - [112377] = 3, - ACTIONS(4322), 1, + [112347] = 3, + ACTIONS(4334), 1, anon_sym_RBRACE, - ACTIONS(4324), 1, + ACTIONS(4336), 1, sym_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [112388] = 3, - ACTIONS(4326), 1, - anon_sym_LPAREN, - STATE(2302), 1, - sym_parameters, + [112358] = 3, + ACTIONS(3294), 1, + sym__concat, + STATE(2004), 1, + aux_sym_concatenation_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [112399] = 2, + [112369] = 3, + ACTIONS(1699), 1, + aux_sym_recipe_token1, + ACTIONS(1701), 1, + anon_sym_, + ACTIONS(2605), 2, + sym_line_continuation, + sym_comment, + [112380] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3838), 2, + ACTIONS(3850), 2, anon_sym_COLON, anon_sym_COMMA, - [112408] = 3, - ACTIONS(4328), 1, + [112389] = 3, + ACTIONS(4338), 1, + anon_sym_RBRACE, + ACTIONS(4340), 1, sym_identifier, - STATE(1982), 1, - aux_sym_export_functions_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [112419] = 2, + [112400] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3997), 2, + ACTIONS(4099), 2, anon_sym_COLON, anon_sym_COMMA, - [112428] = 2, + [112409] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2947), 2, + ACTIONS(4304), 2, anon_sym_COLON, - anon_sym_LPAREN, - [112437] = 2, + anon_sym_COMMA, + [112418] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(1387), 2, - anon_sym_RBRACK, + ACTIONS(4099), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [112446] = 3, - ACTIONS(4330), 1, - anon_sym_python, - ACTIONS(4332), 1, - sym_identifier, + [112427] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [112457] = 3, - ACTIONS(4334), 1, - anon_sym_LPAREN, - ACTIONS(4336), 1, - sym_identifier, - ACTIONS(3), 2, + ACTIONS(4134), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [112436] = 3, + ACTIONS(4342), 1, + aux_sym_recipe_token1, + ACTIONS(4344), 1, + anon_sym_, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [112468] = 2, + [112447] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(4296), 2, - anon_sym_RBRACE, + ACTIONS(3319), 2, + anon_sym_RBRACK, anon_sym_COMMA, - [112477] = 2, - ACTIONS(3), 2, + [112456] = 2, + ACTIONS(2605), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4346), 2, + anon_sym_noexec, + aux_sym_variable_flag_token1, + [112465] = 3, + ACTIONS(4348), 1, + aux_sym_recipe_token1, + ACTIONS(4350), 1, + anon_sym_, + ACTIONS(2605), 2, + sym_line_continuation, + sym_comment, + [112476] = 3, + ACTIONS(4352), 1, + aux_sym_recipe_token1, + ACTIONS(4354), 1, + anon_sym_, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(4294), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [112486] = 2, + [112487] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3452), 2, - anon_sym_RBRACE, + ACTIONS(4356), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [112495] = 2, + [112496] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(4338), 2, - anon_sym_RPAREN, + ACTIONS(3514), 2, + anon_sym_RBRACK, anon_sym_COMMA, - [112504] = 2, + [112505] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3496), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [112513] = 2, + ACTIONS(2714), 2, + anon_sym_COLON, + anon_sym_LPAREN, + [112514] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(4340), 2, - sym__newline, - anon_sym_SEMI, - [112522] = 3, - ACTIONS(4342), 1, + ACTIONS(4358), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + [112523] = 3, + ACTIONS(4360), 1, anon_sym_RBRACE, - ACTIONS(4344), 1, + ACTIONS(4362), 1, sym_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [112533] = 3, - ACTIONS(3247), 1, - sym__concat, - STATE(2004), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3), 2, + [112534] = 3, + ACTIONS(4364), 1, + aux_sym_recipe_token1, + ACTIONS(4366), 1, + anon_sym_, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [112544] = 3, - ACTIONS(4346), 1, - aux_sym_recipe_token1, - ACTIONS(4348), 1, - anon_sym_NULL, - ACTIONS(2592), 2, + [112545] = 2, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [112555] = 3, - ACTIONS(2594), 1, - sym__concat, - STATE(1519), 1, - aux_sym_concatenation_repeat1, + ACTIONS(4368), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + [112554] = 3, + ACTIONS(4370), 1, + anon_sym_COLON, + ACTIONS(4372), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [112566] = 3, - ACTIONS(4350), 1, - aux_sym_recipe_token1, - ACTIONS(4352), 1, - anon_sym_NULL, - ACTIONS(2592), 2, + [112565] = 2, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [112577] = 3, - ACTIONS(3717), 1, - anon_sym_NULL, - ACTIONS(3719), 1, - aux_sym_recipe_token1, - ACTIONS(2592), 2, + ACTIONS(3490), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [112574] = 3, + ACTIONS(4374), 1, + anon_sym_COLON, + ACTIONS(4376), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [112588] = 3, - ACTIONS(3642), 1, - anon_sym_NULL, - ACTIONS(3644), 1, + [112585] = 3, + ACTIONS(4378), 1, aux_sym_recipe_token1, - ACTIONS(2592), 2, + ACTIONS(4380), 1, + anon_sym_, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [112599] = 2, - ACTIONS(2592), 2, + [112596] = 3, + ACTIONS(4382), 1, + sym_identifier, + STATE(1919), 1, + aux_sym_export_functions_statement_repeat1, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(4354), 2, - anon_sym_noexec, - aux_sym_variable_flag_token1, - [112608] = 3, - ACTIONS(4356), 1, - aux_sym_recipe_token1, - ACTIONS(4358), 1, - anon_sym_NULL, - ACTIONS(2592), 2, + [112607] = 2, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [112619] = 3, - ACTIONS(4360), 1, + ACTIONS(4272), 2, anon_sym_COLON, - ACTIONS(4362), 1, - anon_sym_DASH_GT, + anon_sym_DQUOTE, + [112616] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [112630] = 3, - ACTIONS(4364), 1, + ACTIONS(4384), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [112625] = 3, + ACTIONS(2593), 1, aux_sym_recipe_token1, - ACTIONS(4366), 1, - anon_sym_NULL, - ACTIONS(2592), 2, + ACTIONS(2595), 1, + anon_sym_, + ACTIONS(2605), 2, + sym_line_continuation, + sym_comment, + [112636] = 2, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [112641] = 2, + ACTIONS(3015), 2, + anon_sym_COLON, + anon_sym_LPAREN, + [112645] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2598), 2, + ACTIONS(1385), 2, anon_sym_RBRACK, anon_sym_COMMA, - [112650] = 3, - ACTIONS(4368), 1, + [112654] = 3, + ACTIONS(3425), 1, + anon_sym_, + ACTIONS(3427), 1, aux_sym_recipe_token1, - ACTIONS(4370), 1, - anon_sym_NULL, - ACTIONS(2592), 2, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [112661] = 3, - ACTIONS(1745), 1, - aux_sym_recipe_token1, - ACTIONS(1747), 1, - anon_sym_NULL, - ACTIONS(2592), 2, + [112665] = 2, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [112672] = 3, - ACTIONS(4372), 1, + ACTIONS(4386), 2, + anon_sym_noexec, + aux_sym_variable_flag_token1, + [112674] = 3, + ACTIONS(4388), 1, aux_sym_recipe_token1, - ACTIONS(4374), 1, - anon_sym_NULL, - ACTIONS(2592), 2, + ACTIONS(4390), 1, + anon_sym_, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [112683] = 3, - ACTIONS(4376), 1, - aux_sym_recipe_token1, - ACTIONS(4378), 1, - anon_sym_NULL, - ACTIONS(2592), 2, + [112685] = 2, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [112694] = 3, - ACTIONS(4380), 1, - anon_sym_COLON, - ACTIONS(4382), 1, - anon_sym_DASH_GT, + ACTIONS(2538), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [112694] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [112705] = 2, + ACTIONS(4368), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [112703] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2596), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - [112714] = 3, - ACTIONS(4384), 1, + ACTIONS(4358), 2, anon_sym_RBRACE, - ACTIONS(4386), 1, - sym_identifier, + anon_sym_COMMA, + [112712] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [112725] = 2, + ACTIONS(4358), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [112721] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2994), 2, - sym__newline, - anon_sym_SEMI, - [112734] = 3, - ACTIONS(2580), 1, + ACTIONS(2569), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [112730] = 3, + ACTIONS(3536), 1, + anon_sym_, + ACTIONS(3538), 1, aux_sym_recipe_token1, - ACTIONS(2582), 1, - anon_sym_NULL, - ACTIONS(2592), 2, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [112745] = 3, - ACTIONS(4388), 1, + [112741] = 3, + ACTIONS(1779), 1, aux_sym_recipe_token1, - ACTIONS(4390), 1, - anon_sym_NULL, - ACTIONS(2592), 2, + ACTIONS(1781), 1, + anon_sym_, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [112756] = 3, - ACTIONS(4392), 1, - aux_sym_recipe_token1, - ACTIONS(4394), 1, - anon_sym_NULL, - ACTIONS(2592), 2, + [112752] = 2, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [112767] = 3, - ACTIONS(4396), 1, - aux_sym_recipe_token1, - ACTIONS(4398), 1, - anon_sym_NULL, - ACTIONS(2592), 2, + ACTIONS(3514), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [112761] = 2, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [112778] = 3, - ACTIONS(3946), 1, - anon_sym_LPAREN, - ACTIONS(4400), 1, - sym_identifier, - ACTIONS(3), 2, + ACTIONS(4392), 2, + anon_sym_noexec, + aux_sym_variable_flag_token1, + [112770] = 3, + ACTIONS(4394), 1, + aux_sym_recipe_token1, + ACTIONS(4396), 1, + anon_sym_, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [112789] = 2, + [112781] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(4402), 2, - sym__newline, - anon_sym_SEMI, - [112798] = 2, + ACTIONS(3042), 2, + anon_sym_COLON, + anon_sym_LPAREN, + [112790] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2547), 2, + ACTIONS(2587), 2, anon_sym_RBRACK, anon_sym_COMMA, - [112807] = 2, + [112799] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(4404), 2, - sym__newline, - anon_sym_SEMI, - [112816] = 3, - ACTIONS(4326), 1, - anon_sym_LPAREN, - STATE(2309), 1, - sym_parameters, - ACTIONS(3), 2, + ACTIONS(3514), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [112808] = 3, + ACTIONS(4398), 1, + aux_sym_recipe_token1, + ACTIONS(4400), 1, + anon_sym_, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [112827] = 2, + [112819] = 3, + ACTIONS(3977), 1, + anon_sym_LPAREN, + ACTIONS(4402), 1, + sym_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(4406), 2, - sym__newline, - anon_sym_SEMI, - [112836] = 2, + [112830] = 3, + ACTIONS(4404), 1, + anon_sym_RBRACE, + ACTIONS(4406), 1, + sym_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(4408), 2, - sym__newline, - anon_sym_SEMI, - [112845] = 2, - ACTIONS(3), 2, + [112841] = 3, + ACTIONS(4408), 1, + aux_sym_recipe_token1, + ACTIONS(4410), 1, + anon_sym_, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(4410), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [112854] = 2, - ACTIONS(2592), 2, + [112852] = 3, + ACTIONS(4412), 1, + aux_sym_recipe_token1, + ACTIONS(4414), 1, + anon_sym_, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - ACTIONS(4412), 2, - anon_sym_noexec, - aux_sym_variable_flag_token1, [112863] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(3906), 2, - sym__newline, - anon_sym_SEMI, + ACTIONS(2569), 2, + anon_sym_RBRACK, + anon_sym_COMMA, [112872] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(2772), 2, - sym__newline, - anon_sym_SEMI, + ACTIONS(4368), 2, + anon_sym_RPAREN, + anon_sym_COMMA, [112881] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(4414), 2, + ACTIONS(4416), 2, sym__newline, anon_sym_SEMI, [112890] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(4416), 2, + ACTIONS(4418), 2, sym__newline, anon_sym_SEMI, [112899] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(4418), 2, + ACTIONS(3017), 2, sym__newline, anon_sym_SEMI, [112908] = 2, @@ -125448,1524 +126172,1642 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4420), 2, sym__newline, anon_sym_SEMI, - [112917] = 3, - ACTIONS(4422), 1, - anon_sym_RBRACE, - ACTIONS(4424), 1, - sym_identifier, + [112917] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [112928] = 2, + ACTIONS(4422), 2, + sym__newline, + anon_sym_SEMI, + [112926] = 3, + ACTIONS(1563), 1, + aux_sym_recipe_token1, + ACTIONS(1565), 1, + anon_sym_, + ACTIONS(2605), 2, + sym_line_continuation, + sym_comment, + [112937] = 3, + ACTIONS(4424), 1, + aux_sym_recipe_token1, + ACTIONS(4426), 1, + anon_sym_, + ACTIONS(2605), 2, + sym_line_continuation, + sym_comment, + [112948] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(4426), 2, + ACTIONS(3929), 2, sym__newline, anon_sym_SEMI, - [112937] = 3, - ACTIONS(1697), 1, + [112957] = 3, + ACTIONS(1695), 1, aux_sym_recipe_token1, - ACTIONS(1699), 1, - anon_sym_NULL, - ACTIONS(2592), 2, + ACTIONS(1697), 1, + anon_sym_, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [112948] = 3, - ACTIONS(4428), 1, - sym_identifier, - STATE(1915), 1, - aux_sym_export_functions_statement_repeat1, + [112968] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4428), 2, + sym__newline, + anon_sym_SEMI, + [112977] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [112959] = 3, - ACTIONS(4430), 1, + ACTIONS(4430), 2, + sym__newline, + anon_sym_SEMI, + [112986] = 3, + ACTIONS(1735), 1, aux_sym_recipe_token1, - ACTIONS(4432), 1, - anon_sym_NULL, - ACTIONS(2592), 2, + ACTIONS(1737), 1, + anon_sym_, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [112970] = 3, - ACTIONS(4434), 1, - sym_identifier, - STATE(1909), 1, - aux_sym_export_functions_statement_repeat1, + [112997] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3816), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [113006] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(2797), 2, + sym__newline, + anon_sym_SEMI, + [113015] = 3, + ACTIONS(2607), 1, + sym__concat, + STATE(1519), 1, + aux_sym_concatenation_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [112981] = 3, - ACTIONS(4436), 1, + [113026] = 3, + ACTIONS(4432), 1, + anon_sym_RBRACE, + ACTIONS(4434), 1, sym_identifier, - STATE(1958), 1, - aux_sym_export_functions_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [112992] = 3, - ACTIONS(3652), 1, - anon_sym_NULL, - ACTIONS(3654), 1, - aux_sym_recipe_token1, - ACTIONS(2592), 2, + [113037] = 2, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113003] = 2, - ACTIONS(2592), 2, + ACTIONS(4436), 2, + sym__newline, + anon_sym_SEMI, + [113046] = 2, + ACTIONS(3), 2, sym_line_continuation, sym_comment, ACTIONS(4438), 2, - anon_sym_noexec, - aux_sym_variable_flag_token1, - [113012] = 3, + sym__newline, + anon_sym_SEMI, + [113055] = 3, ACTIONS(4440), 1, - aux_sym_recipe_token1, + anon_sym_RBRACE, ACTIONS(4442), 1, - anon_sym_NULL, - ACTIONS(2592), 2, + sym_identifier, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113023] = 3, - ACTIONS(4444), 1, - aux_sym_recipe_token1, - ACTIONS(4446), 1, - anon_sym_NULL, - ACTIONS(2592), 2, + [113066] = 2, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113034] = 3, + ACTIONS(4444), 2, + sym__newline, + anon_sym_SEMI, + [113075] = 3, + ACTIONS(4446), 1, + anon_sym_LPAREN, ACTIONS(4448), 1, + sym_identifier, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [113086] = 3, + ACTIONS(1579), 1, aux_sym_recipe_token1, - ACTIONS(4450), 1, - anon_sym_NULL, - ACTIONS(2592), 2, + ACTIONS(1581), 1, + anon_sym_, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [113045] = 2, - ACTIONS(4452), 1, - anon_sym_RBRACE, + [113097] = 3, + ACTIONS(4450), 1, + sym_identifier, + STATE(2003), 1, + aux_sym_export_functions_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113053] = 2, + [113108] = 3, + ACTIONS(4452), 1, + anon_sym_python, ACTIONS(4454), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113061] = 2, + [113119] = 3, ACTIONS(4456), 1, - sym_python_identifier, + sym_identifier, + STATE(1998), 1, + aux_sym_export_functions_statement_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113069] = 2, + [113130] = 3, ACTIONS(4458), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [113077] = 2, + aux_sym_recipe_token1, ACTIONS(4460), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, + anon_sym_, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [113085] = 2, - ACTIONS(3266), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, + [113141] = 3, + ACTIONS(4462), 1, + aux_sym_recipe_token1, + ACTIONS(4464), 1, + anon_sym_, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [113093] = 2, - ACTIONS(4462), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, + [113152] = 3, + ACTIONS(4466), 1, + aux_sym_recipe_token1, + ACTIONS(4468), 1, + anon_sym_, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [113101] = 2, - ACTIONS(4464), 1, - anon_sym_RBRACE, + [113163] = 3, + ACTIONS(4290), 1, + anon_sym_LPAREN, + STATE(2285), 1, + sym_parameters, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113109] = 2, - ACTIONS(4466), 1, - anon_sym_LBRACE, + [113174] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113117] = 2, - ACTIONS(4468), 1, - anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(2538), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + [113183] = 3, + ACTIONS(3445), 1, + anon_sym_, + ACTIONS(3447), 1, + aux_sym_recipe_token1, + ACTIONS(2605), 2, sym_line_continuation, sym_comment, - [113125] = 2, + [113194] = 2, ACTIONS(4470), 1, - sym_python_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113133] = 2, + [113202] = 2, ACTIONS(4472), 1, sym_python_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113141] = 2, + [113210] = 2, ACTIONS(4474), 1, - anon_sym_in, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113149] = 2, + [113218] = 2, ACTIONS(4476), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [113226] = 2, + ACTIONS(3296), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113157] = 2, + [113234] = 2, ACTIONS(4478), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113165] = 2, + [113242] = 2, ACTIONS(4480), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113173] = 2, + [113250] = 2, ACTIONS(4482), 1, - anon_sym_RPAREN, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113181] = 2, + [113258] = 2, ACTIONS(4484), 1, - anon_sym_COLON_EQ, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113189] = 2, + [113266] = 2, ACTIONS(4486), 1, - anon_sym_LBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113197] = 2, + [113274] = 2, ACTIONS(4488), 1, - anon_sym_RBRACE, + sym_python_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113205] = 2, + [113282] = 2, ACTIONS(4490), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113213] = 2, + [113290] = 2, ACTIONS(4492), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113221] = 2, + [113298] = 2, ACTIONS(4494), 1, - sym_python_identifier, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113229] = 2, - ACTIONS(2879), 1, - anon_sym_RPAREN, + [113306] = 2, + ACTIONS(4496), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113237] = 2, - ACTIONS(2859), 1, + [113314] = 2, + ACTIONS(4498), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113245] = 2, - ACTIONS(4496), 1, - anon_sym_RBRACE, + [113322] = 2, + ACTIONS(4500), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113253] = 2, - ACTIONS(4498), 1, - anon_sym_RBRACE, + [113330] = 2, + ACTIONS(4502), 1, + sym_python_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113261] = 2, - ACTIONS(4500), 1, - anon_sym_RPAREN, + [113338] = 2, + ACTIONS(4504), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113269] = 2, - ACTIONS(4502), 1, - anon_sym_RBRACK, + [113346] = 2, + ACTIONS(4506), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113277] = 2, - ACTIONS(2867), 1, - anon_sym_RPAREN, + [113354] = 2, + ACTIONS(4508), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113285] = 2, - ACTIONS(4504), 1, - sym_identifier, + [113362] = 2, + ACTIONS(4091), 1, + anon_sym_in, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113293] = 2, - ACTIONS(4506), 1, - anon_sym_in, + [113370] = 2, + ACTIONS(2871), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113301] = 2, - ACTIONS(4508), 1, - sym_python_identifier, + [113378] = 2, + ACTIONS(2875), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113309] = 2, + [113386] = 2, ACTIONS(4510), 1, - anon_sym_COLON, + sym_python_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113317] = 2, - ACTIONS(4512), 1, - anon_sym_RBRACE, + [113394] = 2, + ACTIONS(2902), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113325] = 2, - ACTIONS(3315), 1, + [113402] = 2, + ACTIONS(4512), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113333] = 2, + [113410] = 2, ACTIONS(4514), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113341] = 2, + [113418] = 2, ACTIONS(4516), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113349] = 2, + [113426] = 2, ACTIONS(4518), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113357] = 2, + [113434] = 2, ACTIONS(4520), 1, - anon_sym_COLON_EQ, + sym_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113365] = 2, + [113442] = 2, ACTIONS(4522), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [113373] = 2, - ACTIONS(4524), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [113381] = 2, - ACTIONS(4084), 1, anon_sym_in, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113389] = 2, - ACTIONS(3305), 1, - anon_sym_RBRACE, + [113450] = 2, + ACTIONS(4524), 1, + sym_python_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113397] = 2, + [113458] = 2, ACTIONS(4526), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113405] = 2, - ACTIONS(2841), 1, - anon_sym_RPAREN, + [113466] = 2, + ACTIONS(4528), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113413] = 2, - ACTIONS(4528), 1, - anon_sym_RPAREN, + [113474] = 2, + ACTIONS(3266), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113421] = 2, + [113482] = 2, ACTIONS(4530), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113429] = 2, + [113490] = 2, ACTIONS(4532), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113437] = 2, + [113498] = 2, ACTIONS(4534), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113445] = 2, + [113506] = 2, ACTIONS(4536), 1, - anon_sym_RBRACE, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113453] = 2, + [113514] = 2, ACTIONS(4538), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113461] = 2, + [113522] = 2, ACTIONS(4540), 1, - anon_sym_COLON_EQ, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113469] = 2, + [113530] = 2, ACTIONS(4542), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113477] = 2, + [113538] = 2, ACTIONS(4544), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113485] = 2, + [113546] = 2, ACTIONS(4546), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113493] = 2, + [113554] = 2, ACTIONS(4548), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113501] = 2, - ACTIONS(4550), 1, - anon_sym_RBRACK, + [113562] = 2, + ACTIONS(2759), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113509] = 2, - ACTIONS(3350), 1, + [113570] = 2, + ACTIONS(4550), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113517] = 2, + [113578] = 2, ACTIONS(4552), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113525] = 2, + [113586] = 2, ACTIONS(4554), 1, - anon_sym_in, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113533] = 2, + [113594] = 2, ACTIONS(4556), 1, - sym_python_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113541] = 2, + [113602] = 2, ACTIONS(4558), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113549] = 2, + [113610] = 2, ACTIONS(4560), 1, - anon_sym_for, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113557] = 2, + [113618] = 2, ACTIONS(4562), 1, - sym_python_identifier, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113565] = 2, + [113626] = 2, ACTIONS(4564), 1, - anon_sym_in, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113573] = 2, + [113634] = 2, ACTIONS(4566), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113581] = 2, + [113642] = 2, ACTIONS(4568), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113589] = 2, + [113650] = 2, ACTIONS(4570), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113597] = 2, + [113658] = 2, ACTIONS(4572), 1, - anon_sym_RPAREN, + anon_sym_for, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113605] = 2, - ACTIONS(3354), 1, + [113666] = 2, + ACTIONS(3359), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113613] = 2, + [113674] = 2, ACTIONS(4574), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113621] = 2, + [113682] = 2, ACTIONS(4576), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113629] = 2, + [113690] = 2, ACTIONS(4578), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113637] = 2, + [113698] = 2, ACTIONS(4580), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113645] = 2, + [113706] = 2, ACTIONS(4582), 1, - anon_sym_COLON_EQ, + sym_python_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113653] = 2, + [113714] = 2, ACTIONS(4584), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [113661] = 2, - ACTIONS(2883), 1, - anon_sym_RPAREN, + sym_python_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113669] = 2, + [113722] = 2, ACTIONS(4586), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113677] = 2, + [113730] = 2, ACTIONS(4588), 1, - anon_sym_LBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113685] = 2, - ACTIONS(1527), 1, + [113738] = 2, + ACTIONS(4590), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113693] = 2, - ACTIONS(4590), 1, - anon_sym_COLON, + [113746] = 2, + ACTIONS(4592), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113701] = 2, - ACTIONS(4592), 1, - anon_sym_RBRACE, + [113754] = 2, + ACTIONS(4594), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113709] = 2, - ACTIONS(4594), 1, - sym_python_identifier, + [113762] = 2, + ACTIONS(3286), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113717] = 2, + [113770] = 2, ACTIONS(4596), 1, - anon_sym_import, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113725] = 2, + [113778] = 2, ACTIONS(4598), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113733] = 2, + [113786] = 2, ACTIONS(4600), 1, - sym_python_identifier, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [113741] = 2, - ACTIONS(2754), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113749] = 2, + [113794] = 2, ACTIONS(4602), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113757] = 2, + [113802] = 2, ACTIONS(4604), 1, - anon_sym_RBRACE, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113765] = 2, + [113810] = 2, ACTIONS(4606), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113773] = 2, - ACTIONS(4608), 1, + [113818] = 2, + ACTIONS(2857), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113781] = 2, + [113826] = 2, + ACTIONS(4608), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [113834] = 2, ACTIONS(4610), 1, - anon_sym_RBRACK, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [113842] = 2, + ACTIONS(1579), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113789] = 2, + [113850] = 2, ACTIONS(4612), 1, - anon_sym_in, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113797] = 2, + [113858] = 2, ACTIONS(4614), 1, - sym_python_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113805] = 2, + [113866] = 2, ACTIONS(4616), 1, - anon_sym_COLON, + anon_sym_import, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113813] = 2, + [113874] = 2, ACTIONS(4618), 1, - anon_sym_RPAREN, + sym_python_identifier, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [113882] = 2, + ACTIONS(4620), 1, + anon_sym_import, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [113890] = 2, + ACTIONS(4622), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [113898] = 2, + ACTIONS(4624), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113821] = 2, - ACTIONS(4620), 1, - anon_sym_RBRACE, + [113906] = 2, + ACTIONS(4626), 1, + sym_python_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113829] = 2, - ACTIONS(4622), 1, + [113914] = 2, + ACTIONS(2821), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113837] = 2, - ACTIONS(4624), 1, - anon_sym_LBRACE, + [113922] = 2, + ACTIONS(3308), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113845] = 2, - ACTIONS(4626), 1, - anon_sym_LPAREN, + [113930] = 2, + ACTIONS(3300), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113853] = 2, + [113938] = 2, ACTIONS(4628), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113861] = 2, + [113946] = 2, ACTIONS(4630), 1, - anon_sym_COLON_EQ, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113869] = 2, + [113954] = 2, ACTIONS(4632), 1, - anon_sym_LBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113877] = 2, + [113962] = 2, ACTIONS(4634), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113885] = 2, + [113970] = 2, ACTIONS(4636), 1, - sym_python_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113893] = 2, + [113978] = 2, ACTIONS(4638), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [113901] = 2, - ACTIONS(4086), 1, - anon_sym_in, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113909] = 2, + [113986] = 2, ACTIONS(4640), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113917] = 2, + [113994] = 2, ACTIONS(4642), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113925] = 2, + [114002] = 2, ACTIONS(4644), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [113933] = 2, - ACTIONS(1575), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113941] = 2, + [114010] = 2, ACTIONS(4646), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113949] = 2, + [114018] = 2, ACTIONS(4648), 1, - sym_python_identifier, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [113957] = 2, - ACTIONS(4088), 1, - anon_sym_LPAREN, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113965] = 2, + [114026] = 2, ACTIONS(4650), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113973] = 2, + [114034] = 2, ACTIONS(4652), 1, - anon_sym_in, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113981] = 2, + [114042] = 2, ACTIONS(4654), 1, sym_python_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113989] = 2, + [114050] = 2, ACTIONS(4656), 1, - sym_python_identifier, + anon_sym_in, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [113997] = 2, + [114058] = 2, ACTIONS(4658), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [114005] = 2, - ACTIONS(3863), 1, - anon_sym_in, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114013] = 2, + [114066] = 2, ACTIONS(4660), 1, - sym_python_identifier, + anon_sym_in, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114021] = 2, + [114074] = 2, ACTIONS(4662), 1, - anon_sym_RBRACK, + anon_sym_in, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114029] = 2, + [114082] = 2, ACTIONS(4664), 1, sym_python_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114037] = 2, + [114090] = 2, ACTIONS(4666), 1, anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114045] = 2, + [114098] = 2, ACTIONS(4668), 1, - anon_sym_COLON_EQ, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114053] = 2, + [114106] = 2, ACTIONS(4670), 1, - anon_sym_COLON, + sym_python_identifier, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [114114] = 2, + ACTIONS(3304), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114061] = 2, + [114122] = 2, ACTIONS(4672), 1, - sym_python_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114069] = 2, + [114130] = 2, ACTIONS(4674), 1, - anon_sym_in, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114077] = 2, + [114138] = 2, ACTIONS(4676), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114085] = 2, - ACTIONS(2897), 1, - anon_sym_RPAREN, + [114146] = 2, + ACTIONS(1563), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114093] = 2, + [114154] = 2, ACTIONS(4678), 1, - anon_sym_RPAREN, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114101] = 2, + [114162] = 2, ACTIONS(4680), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114109] = 2, + [114170] = 2, ACTIONS(4682), 1, - anon_sym_RPAREN, + sym_python_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114117] = 2, + [114178] = 2, ACTIONS(4684), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114125] = 2, + [114186] = 2, ACTIONS(4686), 1, - anon_sym_in, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114133] = 2, + [114194] = 2, + ACTIONS(3864), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [114202] = 2, ACTIONS(4688), 1, - sym_identifier, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114141] = 2, + [114210] = 2, ACTIONS(4690), 1, - sym_python_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114149] = 2, + [114218] = 2, ACTIONS(4692), 1, - anon_sym_COLON, + sym_python_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114157] = 2, + [114226] = 2, ACTIONS(4694), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114165] = 2, + [114234] = 2, ACTIONS(4696), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114173] = 2, - ACTIONS(3295), 1, - anon_sym_RBRACE, + [114242] = 2, + ACTIONS(1291), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114181] = 2, + [114250] = 2, ACTIONS(4698), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [114189] = 2, - ACTIONS(3237), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114197] = 2, + [114258] = 2, ACTIONS(4700), 1, - anon_sym_RBRACK, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114205] = 2, + [114266] = 2, ACTIONS(4702), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114213] = 2, + [114274] = 2, ACTIONS(4704), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114221] = 2, + [114282] = 2, ACTIONS(4706), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114229] = 2, + [114290] = 2, ACTIONS(4708), 1, - anon_sym_LBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114237] = 2, + [114298] = 2, ACTIONS(4710), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114245] = 2, + [114306] = 2, ACTIONS(4712), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114253] = 2, - ACTIONS(4714), 1, - anon_sym_RBRACK, + [114314] = 2, + ACTIONS(3327), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114261] = 2, - ACTIONS(4716), 1, - anon_sym_LBRACE, + [114322] = 2, + ACTIONS(4714), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114269] = 2, - ACTIONS(4718), 1, - anon_sym_COLON_EQ, + [114330] = 2, + ACTIONS(4106), 1, + anon_sym_in, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114277] = 2, - ACTIONS(3978), 1, - anon_sym_in, + [114338] = 2, + ACTIONS(4716), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114285] = 2, - ACTIONS(4720), 1, - anon_sym_import, + [114346] = 2, + ACTIONS(4718), 1, + sym_python_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114293] = 2, - ACTIONS(3940), 1, - anon_sym_LPAREN, + [114354] = 2, + ACTIONS(4720), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114301] = 2, + [114362] = 2, ACTIONS(4722), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114309] = 2, + [114370] = 2, ACTIONS(4724), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [114317] = 2, - ACTIONS(4726), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114325] = 2, - ACTIONS(4728), 1, - anon_sym_LBRACE, + [114378] = 2, + ACTIONS(4726), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114333] = 2, - ACTIONS(4730), 1, + [114386] = 2, + ACTIONS(3331), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114341] = 2, - ACTIONS(3960), 1, - anon_sym_in, + [114394] = 2, + ACTIONS(4728), 1, + sym_python_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114349] = 2, - ACTIONS(1535), 1, + [114402] = 2, + ACTIONS(4730), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114357] = 2, + [114410] = 2, ACTIONS(4732), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114365] = 2, - ACTIONS(3948), 1, - anon_sym_in, + [114418] = 2, + ACTIONS(4734), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114373] = 2, - ACTIONS(4734), 1, + [114426] = 2, + ACTIONS(4736), 1, sym_python_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114381] = 2, - ACTIONS(4736), 1, - sym_python_identifier, + [114434] = 2, + ACTIONS(4052), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114389] = 2, + [114442] = 2, ACTIONS(4738), 1, - anon_sym_COLON, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114397] = 2, + [114450] = 2, ACTIONS(4740), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114405] = 2, + [114458] = 2, ACTIONS(4742), 1, - anon_sym_import, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114413] = 2, + [114466] = 2, ACTIONS(4744), 1, - sym_python_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114421] = 2, + [114474] = 2, ACTIONS(4746), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [114429] = 2, - ACTIONS(1531), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114437] = 2, + [114482] = 2, ACTIONS(4748), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114445] = 2, + [114490] = 2, ACTIONS(4750), 1, - anon_sym_RBRACE, + sym_python_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114453] = 2, - ACTIONS(4752), 1, - sym_identifier, + [114498] = 2, + ACTIONS(4044), 1, + anon_sym_in, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114461] = 2, - ACTIONS(4754), 1, - sym_python_identifier, + [114506] = 2, + ACTIONS(2881), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114469] = 2, - ACTIONS(4756), 1, - sym_python_identifier, + [114514] = 2, + ACTIONS(4752), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114477] = 2, - ACTIONS(4758), 1, - anon_sym_RBRACE, + [114522] = 2, + ACTIONS(4042), 1, + anon_sym_in, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114485] = 2, - ACTIONS(4760), 1, - anon_sym_RBRACE, + [114530] = 2, + ACTIONS(4754), 1, + anon_sym_in, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114493] = 2, - ACTIONS(4762), 1, - anon_sym_COLON_EQ, + [114538] = 2, + ACTIONS(4756), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114501] = 2, - ACTIONS(3284), 1, + [114546] = 2, + ACTIONS(4758), 1, anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114509] = 2, - ACTIONS(4764), 1, - anon_sym_RBRACE, + [114554] = 2, + ACTIONS(4760), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114517] = 2, - ACTIONS(3871), 1, - anon_sym_in, + [114562] = 2, + ACTIONS(4762), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114525] = 2, - ACTIONS(4766), 1, + [114570] = 2, + ACTIONS(4764), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114533] = 2, - ACTIONS(4768), 1, - sym_python_identifier, + [114578] = 2, + ACTIONS(4766), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114541] = 2, - ACTIONS(3893), 1, - anon_sym_in, + [114586] = 2, + ACTIONS(4768), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114549] = 2, + [114594] = 2, ACTIONS(4770), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114557] = 2, + [114602] = 2, ACTIONS(4772), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114565] = 2, + [114610] = 2, ACTIONS(4774), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114573] = 2, + [114618] = 2, ACTIONS(4776), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114581] = 2, + [114626] = 2, ACTIONS(4778), 1, - anon_sym_RBRACK, + sym_python_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114589] = 2, + [114634] = 2, ACTIONS(4780), 1, - sym_python_identifier, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114597] = 2, - ACTIONS(2818), 1, - anon_sym_RPAREN, + [114642] = 2, + ACTIONS(4782), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114605] = 2, - ACTIONS(4782), 1, - anon_sym_RPAREN, + [114650] = 2, + ACTIONS(4784), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114613] = 2, - ACTIONS(4784), 1, + [114658] = 2, + ACTIONS(4786), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114621] = 2, - ACTIONS(4786), 1, + [114666] = 2, + ACTIONS(3335), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114629] = 2, + [114674] = 2, + ACTIONS(4006), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [114682] = 2, ACTIONS(4788), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114637] = 2, + [114690] = 2, ACTIONS(4790), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114645] = 2, + [114698] = 2, + ACTIONS(4004), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [114706] = 2, ACTIONS(4792), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [114714] = 2, + ACTIONS(3979), 1, + anon_sym_in, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114653] = 2, + [114722] = 2, ACTIONS(4794), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114661] = 2, + [114730] = 2, ACTIONS(4796), 1, - anon_sym_in, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114669] = 2, + [114738] = 2, ACTIONS(4798), 1, - sym_python_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114677] = 2, + [114746] = 2, ACTIONS(4800), 1, - anon_sym_COLON, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114685] = 2, + [114754] = 2, ACTIONS(4802), 1, anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114693] = 2, + [114762] = 2, ACTIONS(4804), 1, - anon_sym_DQUOTE, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114701] = 2, + [114770] = 2, ACTIONS(4806), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114709] = 2, - ACTIONS(3329), 1, - anon_sym_RBRACE, + [114778] = 2, + ACTIONS(4808), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114717] = 2, - ACTIONS(1539), 1, + [114786] = 2, + ACTIONS(1571), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114725] = 2, - ACTIONS(4808), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [114733] = 2, + [114794] = 2, ACTIONS(4810), 1, - anon_sym_RBRACK, + sym_python_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114741] = 2, + [114802] = 2, ACTIONS(4812), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114749] = 2, + [114810] = 2, ACTIONS(4814), 1, - anon_sym_COLON_EQ, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114757] = 2, + [114818] = 2, ACTIONS(4816), 1, - ts_builtin_sym_end, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114765] = 2, + [114826] = 2, ACTIONS(4818), 1, - anon_sym_COLON, + sym_python_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114773] = 2, + [114834] = 2, ACTIONS(4820), 1, - sym_python_identifier, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114781] = 2, + [114842] = 2, ACTIONS(4822), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [114850] = 2, + ACTIONS(1553), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114789] = 2, + [114858] = 2, + ACTIONS(2887), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [114866] = 2, ACTIONS(4824), 1, - anon_sym_RBRACE, + anon_sym_import, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114797] = 2, + [114874] = 2, ACTIONS(4826), 1, - anon_sym_COLON, + sym_python_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114805] = 2, + [114882] = 2, ACTIONS(4828), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114813] = 2, + [114890] = 2, ACTIONS(4830), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114821] = 2, + [114898] = 2, ACTIONS(4832), 1, - sym_identifier, + sym_python_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114829] = 2, - ACTIONS(1297), 1, - anon_sym_COLON, + [114906] = 2, + ACTIONS(4834), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114837] = 2, - ACTIONS(4834), 1, - anon_sym_RPAREN, + [114914] = 2, + ACTIONS(1583), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114845] = 2, + [114922] = 2, ACTIONS(4836), 1, - anon_sym_RPAREN, + sym_python_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114853] = 2, + [114930] = 2, ACTIONS(4838), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114861] = 2, + [114938] = 2, ACTIONS(4840), 1, - anon_sym_RPAREN, + sym_python_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114869] = 2, + [114946] = 2, ACTIONS(4842), 1, - anon_sym_EQ, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114877] = 2, + [114954] = 2, ACTIONS(4844), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114885] = 2, + [114962] = 2, ACTIONS(4846), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [114893] = 2, - ACTIONS(3262), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114901] = 2, + [114970] = 2, ACTIONS(4848), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114909] = 2, + [114978] = 2, ACTIONS(4850), 1, - sym_python_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114917] = 2, + [114986] = 2, ACTIONS(4852), 1, - anon_sym_COLON, + anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114925] = 2, + [114994] = 2, ACTIONS(4854), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114933] = 2, + [115002] = 2, ACTIONS(4856), 1, - anon_sym_for, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [114941] = 2, + [115010] = 2, ACTIONS(4858), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [115018] = 2, + ACTIONS(4860), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [115026] = 2, + ACTIONS(4862), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [115034] = 2, + ACTIONS(4864), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [115042] = 2, + ACTIONS(4866), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [115050] = 2, + ACTIONS(3868), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [115058] = 2, + ACTIONS(4868), 1, + sym_python_identifier, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [115066] = 2, + ACTIONS(4870), 1, + sym_python_identifier, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [115074] = 2, + ACTIONS(4872), 1, + sym_python_identifier, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [115082] = 2, + ACTIONS(4874), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [115090] = 2, + ACTIONS(4876), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [115098] = 2, + ACTIONS(4878), 1, anon_sym_for, ACTIONS(3), 2, sym_line_continuation, @@ -126974,38 +127816,38 @@ static const uint16_t ts_small_parse_table[] = { static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(128)] = 0, - [SMALL_STATE(129)] = 131, - [SMALL_STATE(130)] = 260, - [SMALL_STATE(131)] = 385, - [SMALL_STATE(132)] = 516, - [SMALL_STATE(133)] = 645, - [SMALL_STATE(134)] = 774, - [SMALL_STATE(135)] = 905, - [SMALL_STATE(136)] = 1034, - [SMALL_STATE(137)] = 1165, - [SMALL_STATE(138)] = 1294, - [SMALL_STATE(139)] = 1419, - [SMALL_STATE(140)] = 1550, - [SMALL_STATE(141)] = 1679, + [SMALL_STATE(129)] = 129, + [SMALL_STATE(130)] = 254, + [SMALL_STATE(131)] = 383, + [SMALL_STATE(132)] = 512, + [SMALL_STATE(133)] = 637, + [SMALL_STATE(134)] = 766, + [SMALL_STATE(135)] = 897, + [SMALL_STATE(136)] = 1022, + [SMALL_STATE(137)] = 1155, + [SMALL_STATE(138)] = 1284, + [SMALL_STATE(139)] = 1415, + [SMALL_STATE(140)] = 1544, + [SMALL_STATE(141)] = 1675, [SMALL_STATE(142)] = 1804, - [SMALL_STATE(143)] = 1933, - [SMALL_STATE(144)] = 2062, - [SMALL_STATE(145)] = 2191, - [SMALL_STATE(146)] = 2320, - [SMALL_STATE(147)] = 2451, - [SMALL_STATE(148)] = 2580, - [SMALL_STATE(149)] = 2709, - [SMALL_STATE(150)] = 2838, - [SMALL_STATE(151)] = 2969, - [SMALL_STATE(152)] = 3098, - [SMALL_STATE(153)] = 3231, + [SMALL_STATE(143)] = 1937, + [SMALL_STATE(144)] = 2068, + [SMALL_STATE(145)] = 2197, + [SMALL_STATE(146)] = 2326, + [SMALL_STATE(147)] = 2455, + [SMALL_STATE(148)] = 2584, + [SMALL_STATE(149)] = 2713, + [SMALL_STATE(150)] = 2844, + [SMALL_STATE(151)] = 2975, + [SMALL_STATE(152)] = 3104, + [SMALL_STATE(153)] = 3235, [SMALL_STATE(154)] = 3364, - [SMALL_STATE(155)] = 3495, + [SMALL_STATE(155)] = 3493, [SMALL_STATE(156)] = 3624, [SMALL_STATE(157)] = 3753, - [SMALL_STATE(158)] = 3884, - [SMALL_STATE(159)] = 4013, - [SMALL_STATE(160)] = 4142, + [SMALL_STATE(158)] = 3882, + [SMALL_STATE(159)] = 4011, + [SMALL_STATE(160)] = 4140, [SMALL_STATE(161)] = 4271, [SMALL_STATE(162)] = 4381, [SMALL_STATE(163)] = 4491, @@ -127014,225 +127856,225 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(166)] = 4849, [SMALL_STATE(167)] = 4969, [SMALL_STATE(168)] = 5085, - [SMALL_STATE(169)] = 5201, - [SMALL_STATE(170)] = 5317, - [SMALL_STATE(171)] = 5433, - [SMALL_STATE(172)] = 5553, - [SMALL_STATE(173)] = 5661, - [SMALL_STATE(174)] = 5777, - [SMALL_STATE(175)] = 5893, - [SMALL_STATE(176)] = 6009, - [SMALL_STATE(177)] = 6129, - [SMALL_STATE(178)] = 6249, - [SMALL_STATE(179)] = 6365, - [SMALL_STATE(180)] = 6485, - [SMALL_STATE(181)] = 6601, - [SMALL_STATE(182)] = 6717, - [SMALL_STATE(183)] = 6833, - [SMALL_STATE(184)] = 6949, + [SMALL_STATE(169)] = 5205, + [SMALL_STATE(170)] = 5325, + [SMALL_STATE(171)] = 5441, + [SMALL_STATE(172)] = 5557, + [SMALL_STATE(173)] = 5677, + [SMALL_STATE(174)] = 5793, + [SMALL_STATE(175)] = 5909, + [SMALL_STATE(176)] = 6029, + [SMALL_STATE(177)] = 6145, + [SMALL_STATE(178)] = 6261, + [SMALL_STATE(179)] = 6381, + [SMALL_STATE(180)] = 6489, + [SMALL_STATE(181)] = 6605, + [SMALL_STATE(182)] = 6721, + [SMALL_STATE(183)] = 6837, + [SMALL_STATE(184)] = 6953, [SMALL_STATE(185)] = 7069, [SMALL_STATE(186)] = 7189, [SMALL_STATE(187)] = 7305, [SMALL_STATE(188)] = 7421, [SMALL_STATE(189)] = 7537, [SMALL_STATE(190)] = 7653, - [SMALL_STATE(191)] = 7769, - [SMALL_STATE(192)] = 7891, - [SMALL_STATE(193)] = 8007, - [SMALL_STATE(194)] = 8127, + [SMALL_STATE(191)] = 7775, + [SMALL_STATE(192)] = 7883, + [SMALL_STATE(193)] = 7999, + [SMALL_STATE(194)] = 8119, [SMALL_STATE(195)] = 8235, - [SMALL_STATE(196)] = 8352, - [SMALL_STATE(197)] = 8469, - [SMALL_STATE(198)] = 8586, - [SMALL_STATE(199)] = 8703, - [SMALL_STATE(200)] = 8820, - [SMALL_STATE(201)] = 8937, - [SMALL_STATE(202)] = 9056, - [SMALL_STATE(203)] = 9173, - [SMALL_STATE(204)] = 9290, - [SMALL_STATE(205)] = 9407, - [SMALL_STATE(206)] = 9524, - [SMALL_STATE(207)] = 9641, - [SMALL_STATE(208)] = 9758, - [SMALL_STATE(209)] = 9879, - [SMALL_STATE(210)] = 10000, - [SMALL_STATE(211)] = 10117, - [SMALL_STATE(212)] = 10236, - [SMALL_STATE(213)] = 10353, - [SMALL_STATE(214)] = 10470, - [SMALL_STATE(215)] = 10587, - [SMALL_STATE(216)] = 10704, - [SMALL_STATE(217)] = 10821, - [SMALL_STATE(218)] = 10938, - [SMALL_STATE(219)] = 11055, - [SMALL_STATE(220)] = 11174, - [SMALL_STATE(221)] = 11291, - [SMALL_STATE(222)] = 11408, - [SMALL_STATE(223)] = 11527, - [SMALL_STATE(224)] = 11648, - [SMALL_STATE(225)] = 11765, - [SMALL_STATE(226)] = 11882, - [SMALL_STATE(227)] = 11999, - [SMALL_STATE(228)] = 12116, - [SMALL_STATE(229)] = 12233, - [SMALL_STATE(230)] = 12354, - [SMALL_STATE(231)] = 12473, - [SMALL_STATE(232)] = 12590, - [SMALL_STATE(233)] = 12707, - [SMALL_STATE(234)] = 12824, - [SMALL_STATE(235)] = 12941, - [SMALL_STATE(236)] = 13058, - [SMALL_STATE(237)] = 13177, - [SMALL_STATE(238)] = 13294, - [SMALL_STATE(239)] = 13411, - [SMALL_STATE(240)] = 13530, - [SMALL_STATE(241)] = 13651, - [SMALL_STATE(242)] = 13768, + [SMALL_STATE(196)] = 8354, + [SMALL_STATE(197)] = 8475, + [SMALL_STATE(198)] = 8594, + [SMALL_STATE(199)] = 8713, + [SMALL_STATE(200)] = 8834, + [SMALL_STATE(201)] = 8951, + [SMALL_STATE(202)] = 9068, + [SMALL_STATE(203)] = 9187, + [SMALL_STATE(204)] = 9308, + [SMALL_STATE(205)] = 9425, + [SMALL_STATE(206)] = 9542, + [SMALL_STATE(207)] = 9659, + [SMALL_STATE(208)] = 9776, + [SMALL_STATE(209)] = 9893, + [SMALL_STATE(210)] = 10010, + [SMALL_STATE(211)] = 10127, + [SMALL_STATE(212)] = 10244, + [SMALL_STATE(213)] = 10363, + [SMALL_STATE(214)] = 10480, + [SMALL_STATE(215)] = 10597, + [SMALL_STATE(216)] = 10714, + [SMALL_STATE(217)] = 10831, + [SMALL_STATE(218)] = 10948, + [SMALL_STATE(219)] = 11065, + [SMALL_STATE(220)] = 11182, + [SMALL_STATE(221)] = 11299, + [SMALL_STATE(222)] = 11416, + [SMALL_STATE(223)] = 11533, + [SMALL_STATE(224)] = 11654, + [SMALL_STATE(225)] = 11771, + [SMALL_STATE(226)] = 11888, + [SMALL_STATE(227)] = 12005, + [SMALL_STATE(228)] = 12122, + [SMALL_STATE(229)] = 12239, + [SMALL_STATE(230)] = 12358, + [SMALL_STATE(231)] = 12475, + [SMALL_STATE(232)] = 12592, + [SMALL_STATE(233)] = 12709, + [SMALL_STATE(234)] = 12828, + [SMALL_STATE(235)] = 12947, + [SMALL_STATE(236)] = 13064, + [SMALL_STATE(237)] = 13181, + [SMALL_STATE(238)] = 13298, + [SMALL_STATE(239)] = 13415, + [SMALL_STATE(240)] = 13536, + [SMALL_STATE(241)] = 13653, + [SMALL_STATE(242)] = 13770, [SMALL_STATE(243)] = 13887, [SMALL_STATE(244)] = 14004, [SMALL_STATE(245)] = 14121, [SMALL_STATE(246)] = 14238, - [SMALL_STATE(247)] = 14359, - [SMALL_STATE(248)] = 14476, + [SMALL_STATE(247)] = 14355, + [SMALL_STATE(248)] = 14472, [SMALL_STATE(249)] = 14593, - [SMALL_STATE(250)] = 14693, - [SMALL_STATE(251)] = 14807, - [SMALL_STATE(252)] = 14921, - [SMALL_STATE(253)] = 15035, - [SMALL_STATE(254)] = 15149, - [SMALL_STATE(255)] = 15263, - [SMALL_STATE(256)] = 15377, - [SMALL_STATE(257)] = 15491, - [SMALL_STATE(258)] = 15605, - [SMALL_STATE(259)] = 15719, - [SMALL_STATE(260)] = 15833, - [SMALL_STATE(261)] = 15947, - [SMALL_STATE(262)] = 16061, + [SMALL_STATE(250)] = 14707, + [SMALL_STATE(251)] = 14821, + [SMALL_STATE(252)] = 14935, + [SMALL_STATE(253)] = 15049, + [SMALL_STATE(254)] = 15159, + [SMALL_STATE(255)] = 15273, + [SMALL_STATE(256)] = 15387, + [SMALL_STATE(257)] = 15501, + [SMALL_STATE(258)] = 15615, + [SMALL_STATE(259)] = 15715, + [SMALL_STATE(260)] = 15829, + [SMALL_STATE(261)] = 15943, + [SMALL_STATE(262)] = 16057, [SMALL_STATE(263)] = 16171, - [SMALL_STATE(264)] = 16285, + [SMALL_STATE(264)] = 16281, [SMALL_STATE(265)] = 16395, [SMALL_STATE(266)] = 16509, - [SMALL_STATE(267)] = 16609, - [SMALL_STATE(268)] = 16723, - [SMALL_STATE(269)] = 16837, - [SMALL_STATE(270)] = 16951, - [SMALL_STATE(271)] = 17065, + [SMALL_STATE(267)] = 16623, + [SMALL_STATE(268)] = 16737, + [SMALL_STATE(269)] = 16851, + [SMALL_STATE(270)] = 16965, + [SMALL_STATE(271)] = 17079, [SMALL_STATE(272)] = 17179, [SMALL_STATE(273)] = 17292, [SMALL_STATE(274)] = 17405, [SMALL_STATE(275)] = 17518, [SMALL_STATE(276)] = 17631, - [SMALL_STATE(277)] = 17742, - [SMALL_STATE(278)] = 17855, - [SMALL_STATE(279)] = 17968, - [SMALL_STATE(280)] = 18081, - [SMALL_STATE(281)] = 18194, - [SMALL_STATE(282)] = 18307, - [SMALL_STATE(283)] = 18420, - [SMALL_STATE(284)] = 18531, - [SMALL_STATE(285)] = 18644, - [SMALL_STATE(286)] = 18757, - [SMALL_STATE(287)] = 18870, - [SMALL_STATE(288)] = 18983, - [SMALL_STATE(289)] = 19096, - [SMALL_STATE(290)] = 19209, - [SMALL_STATE(291)] = 19322, + [SMALL_STATE(277)] = 17744, + [SMALL_STATE(278)] = 17857, + [SMALL_STATE(279)] = 17970, + [SMALL_STATE(280)] = 18083, + [SMALL_STATE(281)] = 18196, + [SMALL_STATE(282)] = 18309, + [SMALL_STATE(283)] = 18422, + [SMALL_STATE(284)] = 18533, + [SMALL_STATE(285)] = 18646, + [SMALL_STATE(286)] = 18759, + [SMALL_STATE(287)] = 18872, + [SMALL_STATE(288)] = 18985, + [SMALL_STATE(289)] = 19098, + [SMALL_STATE(290)] = 19211, + [SMALL_STATE(291)] = 19324, [SMALL_STATE(292)] = 19435, - [SMALL_STATE(293)] = 19548, + [SMALL_STATE(293)] = 19546, [SMALL_STATE(294)] = 19659, [SMALL_STATE(295)] = 19772, [SMALL_STATE(296)] = 19884, [SMALL_STATE(297)] = 19996, - [SMALL_STATE(298)] = 20108, - [SMALL_STATE(299)] = 20206, - [SMALL_STATE(300)] = 20318, - [SMALL_STATE(301)] = 20430, - [SMALL_STATE(302)] = 20542, - [SMALL_STATE(303)] = 20652, - [SMALL_STATE(304)] = 20762, - [SMALL_STATE(305)] = 20874, - [SMALL_STATE(306)] = 20986, - [SMALL_STATE(307)] = 21098, - [SMALL_STATE(308)] = 21210, - [SMALL_STATE(309)] = 21322, - [SMALL_STATE(310)] = 21434, - [SMALL_STATE(311)] = 21544, - [SMALL_STATE(312)] = 21654, - [SMALL_STATE(313)] = 21766, - [SMALL_STATE(314)] = 21878, - [SMALL_STATE(315)] = 21990, - [SMALL_STATE(316)] = 22100, - [SMALL_STATE(317)] = 22212, - [SMALL_STATE(318)] = 22324, - [SMALL_STATE(319)] = 22436, - [SMALL_STATE(320)] = 22548, - [SMALL_STATE(321)] = 22646, - [SMALL_STATE(322)] = 22758, - [SMALL_STATE(323)] = 22870, - [SMALL_STATE(324)] = 22982, - [SMALL_STATE(325)] = 23094, - [SMALL_STATE(326)] = 23206, - [SMALL_STATE(327)] = 23318, - [SMALL_STATE(328)] = 23430, - [SMALL_STATE(329)] = 23542, - [SMALL_STATE(330)] = 23654, - [SMALL_STATE(331)] = 23766, - [SMALL_STATE(332)] = 23878, + [SMALL_STATE(298)] = 20106, + [SMALL_STATE(299)] = 20218, + [SMALL_STATE(300)] = 20330, + [SMALL_STATE(301)] = 20442, + [SMALL_STATE(302)] = 20554, + [SMALL_STATE(303)] = 20666, + [SMALL_STATE(304)] = 20776, + [SMALL_STATE(305)] = 20888, + [SMALL_STATE(306)] = 21000, + [SMALL_STATE(307)] = 21112, + [SMALL_STATE(308)] = 21224, + [SMALL_STATE(309)] = 21334, + [SMALL_STATE(310)] = 21446, + [SMALL_STATE(311)] = 21558, + [SMALL_STATE(312)] = 21670, + [SMALL_STATE(313)] = 21782, + [SMALL_STATE(314)] = 21892, + [SMALL_STATE(315)] = 22004, + [SMALL_STATE(316)] = 22116, + [SMALL_STATE(317)] = 22228, + [SMALL_STATE(318)] = 22340, + [SMALL_STATE(319)] = 22450, + [SMALL_STATE(320)] = 22562, + [SMALL_STATE(321)] = 22674, + [SMALL_STATE(322)] = 22786, + [SMALL_STATE(323)] = 22896, + [SMALL_STATE(324)] = 22994, + [SMALL_STATE(325)] = 23106, + [SMALL_STATE(326)] = 23218, + [SMALL_STATE(327)] = 23316, + [SMALL_STATE(328)] = 23428, + [SMALL_STATE(329)] = 23540, + [SMALL_STATE(330)] = 23652, + [SMALL_STATE(331)] = 23764, + [SMALL_STATE(332)] = 23876, [SMALL_STATE(333)] = 23988, [SMALL_STATE(334)] = 24095, [SMALL_STATE(335)] = 24204, - [SMALL_STATE(336)] = 24313, - [SMALL_STATE(337)] = 24420, - [SMALL_STATE(338)] = 24527, - [SMALL_STATE(339)] = 24634, - [SMALL_STATE(340)] = 24741, - [SMALL_STATE(341)] = 24848, - [SMALL_STATE(342)] = 24955, - [SMALL_STATE(343)] = 25064, - [SMALL_STATE(344)] = 25171, - [SMALL_STATE(345)] = 25280, - [SMALL_STATE(346)] = 25387, - [SMALL_STATE(347)] = 25494, - [SMALL_STATE(348)] = 25601, - [SMALL_STATE(349)] = 25710, - [SMALL_STATE(350)] = 25817, - [SMALL_STATE(351)] = 25924, - [SMALL_STATE(352)] = 26033, - [SMALL_STATE(353)] = 26130, - [SMALL_STATE(354)] = 26227, - [SMALL_STATE(355)] = 26336, - [SMALL_STATE(356)] = 26443, - [SMALL_STATE(357)] = 26540, - [SMALL_STATE(358)] = 26637, - [SMALL_STATE(359)] = 26744, - [SMALL_STATE(360)] = 26841, - [SMALL_STATE(361)] = 26940, - [SMALL_STATE(362)] = 27049, - [SMALL_STATE(363)] = 27158, - [SMALL_STATE(364)] = 27265, - [SMALL_STATE(365)] = 27372, - [SMALL_STATE(366)] = 27481, - [SMALL_STATE(367)] = 27588, - [SMALL_STATE(368)] = 27695, - [SMALL_STATE(369)] = 27802, - [SMALL_STATE(370)] = 27899, - [SMALL_STATE(371)] = 28008, - [SMALL_STATE(372)] = 28115, - [SMALL_STATE(373)] = 28224, - [SMALL_STATE(374)] = 28331, - [SMALL_STATE(375)] = 28438, - [SMALL_STATE(376)] = 28545, - [SMALL_STATE(377)] = 28652, - [SMALL_STATE(378)] = 28751, - [SMALL_STATE(379)] = 28858, - [SMALL_STATE(380)] = 28965, - [SMALL_STATE(381)] = 29074, - [SMALL_STATE(382)] = 29181, - [SMALL_STATE(383)] = 29290, - [SMALL_STATE(384)] = 29399, - [SMALL_STATE(385)] = 29508, - [SMALL_STATE(386)] = 29615, - [SMALL_STATE(387)] = 29722, + [SMALL_STATE(336)] = 24311, + [SMALL_STATE(337)] = 24418, + [SMALL_STATE(338)] = 24525, + [SMALL_STATE(339)] = 24624, + [SMALL_STATE(340)] = 24733, + [SMALL_STATE(341)] = 24842, + [SMALL_STATE(342)] = 24949, + [SMALL_STATE(343)] = 25058, + [SMALL_STATE(344)] = 25167, + [SMALL_STATE(345)] = 25276, + [SMALL_STATE(346)] = 25383, + [SMALL_STATE(347)] = 25492, + [SMALL_STATE(348)] = 25599, + [SMALL_STATE(349)] = 25708, + [SMALL_STATE(350)] = 25805, + [SMALL_STATE(351)] = 25912, + [SMALL_STATE(352)] = 26019, + [SMALL_STATE(353)] = 26126, + [SMALL_STATE(354)] = 26223, + [SMALL_STATE(355)] = 26330, + [SMALL_STATE(356)] = 26437, + [SMALL_STATE(357)] = 26544, + [SMALL_STATE(358)] = 26651, + [SMALL_STATE(359)] = 26758, + [SMALL_STATE(360)] = 26865, + [SMALL_STATE(361)] = 26974, + [SMALL_STATE(362)] = 27081, + [SMALL_STATE(363)] = 27188, + [SMALL_STATE(364)] = 27285, + [SMALL_STATE(365)] = 27392, + [SMALL_STATE(366)] = 27499, + [SMALL_STATE(367)] = 27606, + [SMALL_STATE(368)] = 27715, + [SMALL_STATE(369)] = 27822, + [SMALL_STATE(370)] = 27931, + [SMALL_STATE(371)] = 28038, + [SMALL_STATE(372)] = 28135, + [SMALL_STATE(373)] = 28242, + [SMALL_STATE(374)] = 28349, + [SMALL_STATE(375)] = 28448, + [SMALL_STATE(376)] = 28555, + [SMALL_STATE(377)] = 28664, + [SMALL_STATE(378)] = 28761, + [SMALL_STATE(379)] = 28868, + [SMALL_STATE(380)] = 28975, + [SMALL_STATE(381)] = 29082, + [SMALL_STATE(382)] = 29191, + [SMALL_STATE(383)] = 29300, + [SMALL_STATE(384)] = 29409, + [SMALL_STATE(385)] = 29518, + [SMALL_STATE(386)] = 29625, + [SMALL_STATE(387)] = 29734, [SMALL_STATE(388)] = 29831, [SMALL_STATE(389)] = 29937, [SMALL_STATE(390)] = 30043, @@ -127243,25 +128085,25 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(395)] = 30573, [SMALL_STATE(396)] = 30679, [SMALL_STATE(397)] = 30782, - [SMALL_STATE(398)] = 30885, - [SMALL_STATE(399)] = 30988, - [SMALL_STATE(400)] = 31091, - [SMALL_STATE(401)] = 31194, - [SMALL_STATE(402)] = 31297, - [SMALL_STATE(403)] = 31400, - [SMALL_STATE(404)] = 31503, - [SMALL_STATE(405)] = 31606, - [SMALL_STATE(406)] = 31709, - [SMALL_STATE(407)] = 31812, - [SMALL_STATE(408)] = 31915, - [SMALL_STATE(409)] = 32018, - [SMALL_STATE(410)] = 32121, - [SMALL_STATE(411)] = 32224, - [SMALL_STATE(412)] = 32327, - [SMALL_STATE(413)] = 32430, - [SMALL_STATE(414)] = 32533, - [SMALL_STATE(415)] = 32636, - [SMALL_STATE(416)] = 32739, + [SMALL_STATE(398)] = 30887, + [SMALL_STATE(399)] = 30990, + [SMALL_STATE(400)] = 31093, + [SMALL_STATE(401)] = 31196, + [SMALL_STATE(402)] = 31299, + [SMALL_STATE(403)] = 31402, + [SMALL_STATE(404)] = 31505, + [SMALL_STATE(405)] = 31608, + [SMALL_STATE(406)] = 31711, + [SMALL_STATE(407)] = 31814, + [SMALL_STATE(408)] = 31917, + [SMALL_STATE(409)] = 32020, + [SMALL_STATE(410)] = 32123, + [SMALL_STATE(411)] = 32226, + [SMALL_STATE(412)] = 32329, + [SMALL_STATE(413)] = 32432, + [SMALL_STATE(414)] = 32535, + [SMALL_STATE(415)] = 32638, + [SMALL_STATE(416)] = 32741, [SMALL_STATE(417)] = 32844, [SMALL_STATE(418)] = 32947, [SMALL_STATE(419)] = 33050, @@ -127272,224 +128114,224 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(424)] = 33565, [SMALL_STATE(425)] = 33668, [SMALL_STATE(426)] = 33771, - [SMALL_STATE(427)] = 33876, - [SMALL_STATE(428)] = 33979, - [SMALL_STATE(429)] = 34082, - [SMALL_STATE(430)] = 34185, - [SMALL_STATE(431)] = 34288, - [SMALL_STATE(432)] = 34391, - [SMALL_STATE(433)] = 34494, - [SMALL_STATE(434)] = 34597, - [SMALL_STATE(435)] = 34700, - [SMALL_STATE(436)] = 34805, - [SMALL_STATE(437)] = 34908, - [SMALL_STATE(438)] = 35011, - [SMALL_STATE(439)] = 35114, - [SMALL_STATE(440)] = 35217, - [SMALL_STATE(441)] = 35320, - [SMALL_STATE(442)] = 35423, - [SMALL_STATE(443)] = 35526, - [SMALL_STATE(444)] = 35629, - [SMALL_STATE(445)] = 35732, - [SMALL_STATE(446)] = 35835, - [SMALL_STATE(447)] = 35938, - [SMALL_STATE(448)] = 36041, - [SMALL_STATE(449)] = 36144, - [SMALL_STATE(450)] = 36247, - [SMALL_STATE(451)] = 36350, - [SMALL_STATE(452)] = 36453, - [SMALL_STATE(453)] = 36556, - [SMALL_STATE(454)] = 36659, - [SMALL_STATE(455)] = 36762, - [SMALL_STATE(456)] = 36865, - [SMALL_STATE(457)] = 36968, - [SMALL_STATE(458)] = 37071, - [SMALL_STATE(459)] = 37174, - [SMALL_STATE(460)] = 37277, - [SMALL_STATE(461)] = 37380, - [SMALL_STATE(462)] = 37483, - [SMALL_STATE(463)] = 37586, - [SMALL_STATE(464)] = 37689, - [SMALL_STATE(465)] = 37792, - [SMALL_STATE(466)] = 37895, - [SMALL_STATE(467)] = 37998, - [SMALL_STATE(468)] = 38101, - [SMALL_STATE(469)] = 38204, - [SMALL_STATE(470)] = 38307, - [SMALL_STATE(471)] = 38410, - [SMALL_STATE(472)] = 38513, - [SMALL_STATE(473)] = 38616, - [SMALL_STATE(474)] = 38719, - [SMALL_STATE(475)] = 38794, - [SMALL_STATE(476)] = 38897, - [SMALL_STATE(477)] = 39000, - [SMALL_STATE(478)] = 39103, - [SMALL_STATE(479)] = 39206, - [SMALL_STATE(480)] = 39309, - [SMALL_STATE(481)] = 39412, - [SMALL_STATE(482)] = 39515, - [SMALL_STATE(483)] = 39618, - [SMALL_STATE(484)] = 39721, - [SMALL_STATE(485)] = 39824, - [SMALL_STATE(486)] = 39929, - [SMALL_STATE(487)] = 40032, - [SMALL_STATE(488)] = 40135, - [SMALL_STATE(489)] = 40238, - [SMALL_STATE(490)] = 40341, - [SMALL_STATE(491)] = 40444, - [SMALL_STATE(492)] = 40547, - [SMALL_STATE(493)] = 40650, - [SMALL_STATE(494)] = 40753, - [SMALL_STATE(495)] = 40856, - [SMALL_STATE(496)] = 40933, - [SMALL_STATE(497)] = 41036, - [SMALL_STATE(498)] = 41139, - [SMALL_STATE(499)] = 41242, - [SMALL_STATE(500)] = 41345, - [SMALL_STATE(501)] = 41450, - [SMALL_STATE(502)] = 41555, - [SMALL_STATE(503)] = 41658, - [SMALL_STATE(504)] = 41751, - [SMALL_STATE(505)] = 41854, - [SMALL_STATE(506)] = 41947, - [SMALL_STATE(507)] = 42050, - [SMALL_STATE(508)] = 42153, - [SMALL_STATE(509)] = 42256, - [SMALL_STATE(510)] = 42359, - [SMALL_STATE(511)] = 42462, - [SMALL_STATE(512)] = 42565, - [SMALL_STATE(513)] = 42668, - [SMALL_STATE(514)] = 42771, - [SMALL_STATE(515)] = 42874, - [SMALL_STATE(516)] = 42977, - [SMALL_STATE(517)] = 43080, - [SMALL_STATE(518)] = 43183, - [SMALL_STATE(519)] = 43286, - [SMALL_STATE(520)] = 43389, - [SMALL_STATE(521)] = 43492, - [SMALL_STATE(522)] = 43595, - [SMALL_STATE(523)] = 43698, - [SMALL_STATE(524)] = 43801, - [SMALL_STATE(525)] = 43904, - [SMALL_STATE(526)] = 44007, - [SMALL_STATE(527)] = 44110, - [SMALL_STATE(528)] = 44213, - [SMALL_STATE(529)] = 44316, - [SMALL_STATE(530)] = 44419, - [SMALL_STATE(531)] = 44522, - [SMALL_STATE(532)] = 44625, - [SMALL_STATE(533)] = 44728, - [SMALL_STATE(534)] = 44831, + [SMALL_STATE(427)] = 33874, + [SMALL_STATE(428)] = 33977, + [SMALL_STATE(429)] = 34080, + [SMALL_STATE(430)] = 34183, + [SMALL_STATE(431)] = 34286, + [SMALL_STATE(432)] = 34361, + [SMALL_STATE(433)] = 34466, + [SMALL_STATE(434)] = 34569, + [SMALL_STATE(435)] = 34672, + [SMALL_STATE(436)] = 34775, + [SMALL_STATE(437)] = 34878, + [SMALL_STATE(438)] = 34981, + [SMALL_STATE(439)] = 35086, + [SMALL_STATE(440)] = 35189, + [SMALL_STATE(441)] = 35292, + [SMALL_STATE(442)] = 35395, + [SMALL_STATE(443)] = 35498, + [SMALL_STATE(444)] = 35601, + [SMALL_STATE(445)] = 35704, + [SMALL_STATE(446)] = 35807, + [SMALL_STATE(447)] = 35910, + [SMALL_STATE(448)] = 36013, + [SMALL_STATE(449)] = 36116, + [SMALL_STATE(450)] = 36219, + [SMALL_STATE(451)] = 36322, + [SMALL_STATE(452)] = 36425, + [SMALL_STATE(453)] = 36528, + [SMALL_STATE(454)] = 36631, + [SMALL_STATE(455)] = 36734, + [SMALL_STATE(456)] = 36837, + [SMALL_STATE(457)] = 36940, + [SMALL_STATE(458)] = 37043, + [SMALL_STATE(459)] = 37146, + [SMALL_STATE(460)] = 37249, + [SMALL_STATE(461)] = 37352, + [SMALL_STATE(462)] = 37455, + [SMALL_STATE(463)] = 37558, + [SMALL_STATE(464)] = 37661, + [SMALL_STATE(465)] = 37764, + [SMALL_STATE(466)] = 37857, + [SMALL_STATE(467)] = 37960, + [SMALL_STATE(468)] = 38063, + [SMALL_STATE(469)] = 38166, + [SMALL_STATE(470)] = 38243, + [SMALL_STATE(471)] = 38346, + [SMALL_STATE(472)] = 38451, + [SMALL_STATE(473)] = 38554, + [SMALL_STATE(474)] = 38657, + [SMALL_STATE(475)] = 38760, + [SMALL_STATE(476)] = 38863, + [SMALL_STATE(477)] = 38966, + [SMALL_STATE(478)] = 39069, + [SMALL_STATE(479)] = 39172, + [SMALL_STATE(480)] = 39275, + [SMALL_STATE(481)] = 39378, + [SMALL_STATE(482)] = 39483, + [SMALL_STATE(483)] = 39586, + [SMALL_STATE(484)] = 39689, + [SMALL_STATE(485)] = 39792, + [SMALL_STATE(486)] = 39895, + [SMALL_STATE(487)] = 39988, + [SMALL_STATE(488)] = 40091, + [SMALL_STATE(489)] = 40194, + [SMALL_STATE(490)] = 40297, + [SMALL_STATE(491)] = 40400, + [SMALL_STATE(492)] = 40503, + [SMALL_STATE(493)] = 40606, + [SMALL_STATE(494)] = 40709, + [SMALL_STATE(495)] = 40812, + [SMALL_STATE(496)] = 40915, + [SMALL_STATE(497)] = 41018, + [SMALL_STATE(498)] = 41121, + [SMALL_STATE(499)] = 41224, + [SMALL_STATE(500)] = 41327, + [SMALL_STATE(501)] = 41430, + [SMALL_STATE(502)] = 41533, + [SMALL_STATE(503)] = 41636, + [SMALL_STATE(504)] = 41739, + [SMALL_STATE(505)] = 41842, + [SMALL_STATE(506)] = 41945, + [SMALL_STATE(507)] = 42048, + [SMALL_STATE(508)] = 42151, + [SMALL_STATE(509)] = 42254, + [SMALL_STATE(510)] = 42357, + [SMALL_STATE(511)] = 42460, + [SMALL_STATE(512)] = 42563, + [SMALL_STATE(513)] = 42666, + [SMALL_STATE(514)] = 42769, + [SMALL_STATE(515)] = 42872, + [SMALL_STATE(516)] = 42975, + [SMALL_STATE(517)] = 43078, + [SMALL_STATE(518)] = 43181, + [SMALL_STATE(519)] = 43284, + [SMALL_STATE(520)] = 43387, + [SMALL_STATE(521)] = 43490, + [SMALL_STATE(522)] = 43593, + [SMALL_STATE(523)] = 43696, + [SMALL_STATE(524)] = 43799, + [SMALL_STATE(525)] = 43902, + [SMALL_STATE(526)] = 44005, + [SMALL_STATE(527)] = 44108, + [SMALL_STATE(528)] = 44211, + [SMALL_STATE(529)] = 44314, + [SMALL_STATE(530)] = 44417, + [SMALL_STATE(531)] = 44520, + [SMALL_STATE(532)] = 44623, + [SMALL_STATE(533)] = 44726, + [SMALL_STATE(534)] = 44829, [SMALL_STATE(535)] = 44934, [SMALL_STATE(536)] = 45037, [SMALL_STATE(537)] = 45109, [SMALL_STATE(538)] = 45180, [SMALL_STATE(539)] = 45251, - [SMALL_STATE(540)] = 45322, - [SMALL_STATE(541)] = 45393, + [SMALL_STATE(540)] = 45324, + [SMALL_STATE(541)] = 45395, [SMALL_STATE(542)] = 45466, - [SMALL_STATE(543)] = 45534, - [SMALL_STATE(544)] = 45600, + [SMALL_STATE(543)] = 45532, + [SMALL_STATE(544)] = 45598, [SMALL_STATE(545)] = 45666, [SMALL_STATE(546)] = 45732, [SMALL_STATE(547)] = 45800, - [SMALL_STATE(548)] = 45897, - [SMALL_STATE(549)] = 45954, - [SMALL_STATE(550)] = 46011, - [SMALL_STATE(551)] = 46074, - [SMALL_STATE(552)] = 46131, - [SMALL_STATE(553)] = 46188, - [SMALL_STATE(554)] = 46249, - [SMALL_STATE(555)] = 46346, - [SMALL_STATE(556)] = 46413, - [SMALL_STATE(557)] = 46480, - [SMALL_STATE(558)] = 46537, - [SMALL_STATE(559)] = 46598, - [SMALL_STATE(560)] = 46659, - [SMALL_STATE(561)] = 46720, - [SMALL_STATE(562)] = 46785, - [SMALL_STATE(563)] = 46848, - [SMALL_STATE(564)] = 46909, - [SMALL_STATE(565)] = 46972, - [SMALL_STATE(566)] = 47029, - [SMALL_STATE(567)] = 47092, - [SMALL_STATE(568)] = 47149, - [SMALL_STATE(569)] = 47212, - [SMALL_STATE(570)] = 47275, - [SMALL_STATE(571)] = 47338, - [SMALL_STATE(572)] = 47401, - [SMALL_STATE(573)] = 47468, + [SMALL_STATE(548)] = 45857, + [SMALL_STATE(549)] = 45914, + [SMALL_STATE(550)] = 45977, + [SMALL_STATE(551)] = 46038, + [SMALL_STATE(552)] = 46101, + [SMALL_STATE(553)] = 46158, + [SMALL_STATE(554)] = 46219, + [SMALL_STATE(555)] = 46276, + [SMALL_STATE(556)] = 46333, + [SMALL_STATE(557)] = 46400, + [SMALL_STATE(558)] = 46465, + [SMALL_STATE(559)] = 46532, + [SMALL_STATE(560)] = 46595, + [SMALL_STATE(561)] = 46692, + [SMALL_STATE(562)] = 46755, + [SMALL_STATE(563)] = 46818, + [SMALL_STATE(564)] = 46885, + [SMALL_STATE(565)] = 46946, + [SMALL_STATE(566)] = 47009, + [SMALL_STATE(567)] = 47070, + [SMALL_STATE(568)] = 47167, + [SMALL_STATE(569)] = 47230, + [SMALL_STATE(570)] = 47287, + [SMALL_STATE(571)] = 47354, + [SMALL_STATE(572)] = 47411, + [SMALL_STATE(573)] = 47474, [SMALL_STATE(574)] = 47535, [SMALL_STATE(575)] = 47597, [SMALL_STATE(576)] = 47652, [SMALL_STATE(577)] = 47707, [SMALL_STATE(578)] = 47762, [SMALL_STATE(579)] = 47817, - [SMALL_STATE(580)] = 47872, - [SMALL_STATE(581)] = 47927, - [SMALL_STATE(582)] = 47982, - [SMALL_STATE(583)] = 48037, - [SMALL_STATE(584)] = 48092, - [SMALL_STATE(585)] = 48147, - [SMALL_STATE(586)] = 48244, - [SMALL_STATE(587)] = 48299, - [SMALL_STATE(588)] = 48354, - [SMALL_STATE(589)] = 48409, - [SMALL_STATE(590)] = 48464, - [SMALL_STATE(591)] = 48519, - [SMALL_STATE(592)] = 48574, + [SMALL_STATE(580)] = 47914, + [SMALL_STATE(581)] = 47969, + [SMALL_STATE(582)] = 48024, + [SMALL_STATE(583)] = 48121, + [SMALL_STATE(584)] = 48176, + [SMALL_STATE(585)] = 48231, + [SMALL_STATE(586)] = 48286, + [SMALL_STATE(587)] = 48341, + [SMALL_STATE(588)] = 48396, + [SMALL_STATE(589)] = 48451, + [SMALL_STATE(590)] = 48506, + [SMALL_STATE(591)] = 48561, + [SMALL_STATE(592)] = 48616, [SMALL_STATE(593)] = 48671, [SMALL_STATE(594)] = 48726, [SMALL_STATE(595)] = 48781, [SMALL_STATE(596)] = 48836, [SMALL_STATE(597)] = 48891, - [SMALL_STATE(598)] = 48945, - [SMALL_STATE(599)] = 49003, - [SMALL_STATE(600)] = 49061, - [SMALL_STATE(601)] = 49115, - [SMALL_STATE(602)] = 49169, - [SMALL_STATE(603)] = 49227, - [SMALL_STATE(604)] = 49281, - [SMALL_STATE(605)] = 49375, - [SMALL_STATE(606)] = 49429, - [SMALL_STATE(607)] = 49483, - [SMALL_STATE(608)] = 49577, - [SMALL_STATE(609)] = 49635, - [SMALL_STATE(610)] = 49729, - [SMALL_STATE(611)] = 49823, - [SMALL_STATE(612)] = 49917, - [SMALL_STATE(613)] = 50011, - [SMALL_STATE(614)] = 50069, - [SMALL_STATE(615)] = 50163, - [SMALL_STATE(616)] = 50257, - [SMALL_STATE(617)] = 50351, - [SMALL_STATE(618)] = 50445, - [SMALL_STATE(619)] = 50499, - [SMALL_STATE(620)] = 50593, - [SMALL_STATE(621)] = 50651, - [SMALL_STATE(622)] = 50709, - [SMALL_STATE(623)] = 50803, - [SMALL_STATE(624)] = 50897, - [SMALL_STATE(625)] = 50955, - [SMALL_STATE(626)] = 51009, + [SMALL_STATE(598)] = 48985, + [SMALL_STATE(599)] = 49043, + [SMALL_STATE(600)] = 49097, + [SMALL_STATE(601)] = 49191, + [SMALL_STATE(602)] = 49285, + [SMALL_STATE(603)] = 49343, + [SMALL_STATE(604)] = 49397, + [SMALL_STATE(605)] = 49491, + [SMALL_STATE(606)] = 49545, + [SMALL_STATE(607)] = 49603, + [SMALL_STATE(608)] = 49697, + [SMALL_STATE(609)] = 49791, + [SMALL_STATE(610)] = 49885, + [SMALL_STATE(611)] = 49939, + [SMALL_STATE(612)] = 49997, + [SMALL_STATE(613)] = 50091, + [SMALL_STATE(614)] = 50185, + [SMALL_STATE(615)] = 50243, + [SMALL_STATE(616)] = 50337, + [SMALL_STATE(617)] = 50395, + [SMALL_STATE(618)] = 50453, + [SMALL_STATE(619)] = 50507, + [SMALL_STATE(620)] = 50561, + [SMALL_STATE(621)] = 50655, + [SMALL_STATE(622)] = 50749, + [SMALL_STATE(623)] = 50843, + [SMALL_STATE(624)] = 50901, + [SMALL_STATE(625)] = 50995, + [SMALL_STATE(626)] = 51049, [SMALL_STATE(627)] = 51103, - [SMALL_STATE(628)] = 51156, - [SMALL_STATE(629)] = 51247, + [SMALL_STATE(628)] = 51194, + [SMALL_STATE(629)] = 51285, [SMALL_STATE(630)] = 51338, - [SMALL_STATE(631)] = 51391, + [SMALL_STATE(631)] = 51429, [SMALL_STATE(632)] = 51482, [SMALL_STATE(633)] = 51535, - [SMALL_STATE(634)] = 51588, - [SMALL_STATE(635)] = 51641, - [SMALL_STATE(636)] = 51694, - [SMALL_STATE(637)] = 51747, - [SMALL_STATE(638)] = 51800, - [SMALL_STATE(639)] = 51891, - [SMALL_STATE(640)] = 51944, - [SMALL_STATE(641)] = 51997, - [SMALL_STATE(642)] = 52088, - [SMALL_STATE(643)] = 52141, - [SMALL_STATE(644)] = 52194, + [SMALL_STATE(634)] = 51626, + [SMALL_STATE(635)] = 51679, + [SMALL_STATE(636)] = 51732, + [SMALL_STATE(637)] = 51785, + [SMALL_STATE(638)] = 51876, + [SMALL_STATE(639)] = 51929, + [SMALL_STATE(640)] = 51982, + [SMALL_STATE(641)] = 52073, + [SMALL_STATE(642)] = 52126, + [SMALL_STATE(643)] = 52179, + [SMALL_STATE(644)] = 52232, [SMALL_STATE(645)] = 52285, [SMALL_STATE(646)] = 52337, [SMALL_STATE(647)] = 52389, @@ -127505,15 +128347,15 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(657)] = 52909, [SMALL_STATE(658)] = 52961, [SMALL_STATE(659)] = 53013, - [SMALL_STATE(660)] = 53101, - [SMALL_STATE(661)] = 53153, - [SMALL_STATE(662)] = 53205, + [SMALL_STATE(660)] = 53065, + [SMALL_STATE(661)] = 53117, + [SMALL_STATE(662)] = 53169, [SMALL_STATE(663)] = 53257, [SMALL_STATE(664)] = 53309, [SMALL_STATE(665)] = 53361, [SMALL_STATE(666)] = 53413, [SMALL_STATE(667)] = 53465, - [SMALL_STATE(668)] = 53517, + [SMALL_STATE(668)] = 53553, [SMALL_STATE(669)] = 53605, [SMALL_STATE(670)] = 53657, [SMALL_STATE(671)] = 53709, @@ -127536,30 +128378,30 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(688)] = 54825, [SMALL_STATE(689)] = 54906, [SMALL_STATE(690)] = 54987, - [SMALL_STATE(691)] = 55065, - [SMALL_STATE(692)] = 55143, - [SMALL_STATE(693)] = 55221, + [SMALL_STATE(691)] = 55071, + [SMALL_STATE(692)] = 55149, + [SMALL_STATE(693)] = 55227, [SMALL_STATE(694)] = 55305, - [SMALL_STATE(695)] = 55383, + [SMALL_STATE(695)] = 55389, [SMALL_STATE(696)] = 55467, - [SMALL_STATE(697)] = 55545, + [SMALL_STATE(697)] = 55551, [SMALL_STATE(698)] = 55629, - [SMALL_STATE(699)] = 55713, - [SMALL_STATE(700)] = 55791, - [SMALL_STATE(701)] = 55875, - [SMALL_STATE(702)] = 55953, - [SMALL_STATE(703)] = 56031, - [SMALL_STATE(704)] = 56109, - [SMALL_STATE(705)] = 56193, - [SMALL_STATE(706)] = 56277, - [SMALL_STATE(707)] = 56355, - [SMALL_STATE(708)] = 56439, - [SMALL_STATE(709)] = 56523, - [SMALL_STATE(710)] = 56601, - [SMALL_STATE(711)] = 56679, - [SMALL_STATE(712)] = 56757, - [SMALL_STATE(713)] = 56835, - [SMALL_STATE(714)] = 56913, + [SMALL_STATE(699)] = 55707, + [SMALL_STATE(700)] = 55785, + [SMALL_STATE(701)] = 55863, + [SMALL_STATE(702)] = 55941, + [SMALL_STATE(703)] = 56019, + [SMALL_STATE(704)] = 56103, + [SMALL_STATE(705)] = 56187, + [SMALL_STATE(706)] = 56271, + [SMALL_STATE(707)] = 56349, + [SMALL_STATE(708)] = 56433, + [SMALL_STATE(709)] = 56511, + [SMALL_STATE(710)] = 56589, + [SMALL_STATE(711)] = 56673, + [SMALL_STATE(712)] = 56751, + [SMALL_STATE(713)] = 56829, + [SMALL_STATE(714)] = 56907, [SMALL_STATE(715)] = 56991, [SMALL_STATE(716)] = 57069, [SMALL_STATE(717)] = 57147, @@ -127569,70 +128411,70 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(721)] = 57459, [SMALL_STATE(722)] = 57537, [SMALL_STATE(723)] = 57615, - [SMALL_STATE(724)] = 57699, + [SMALL_STATE(724)] = 57693, [SMALL_STATE(725)] = 57777, [SMALL_STATE(726)] = 57855, [SMALL_STATE(727)] = 57933, [SMALL_STATE(728)] = 58011, [SMALL_STATE(729)] = 58089, - [SMALL_STATE(730)] = 58167, - [SMALL_STATE(731)] = 58245, - [SMALL_STATE(732)] = 58323, - [SMALL_STATE(733)] = 58401, - [SMALL_STATE(734)] = 58485, - [SMALL_STATE(735)] = 58563, - [SMALL_STATE(736)] = 58641, - [SMALL_STATE(737)] = 58725, - [SMALL_STATE(738)] = 58809, - [SMALL_STATE(739)] = 58887, - [SMALL_STATE(740)] = 58965, - [SMALL_STATE(741)] = 59043, - [SMALL_STATE(742)] = 59121, - [SMALL_STATE(743)] = 59205, - [SMALL_STATE(744)] = 59283, + [SMALL_STATE(730)] = 58173, + [SMALL_STATE(731)] = 58257, + [SMALL_STATE(732)] = 58341, + [SMALL_STATE(733)] = 58419, + [SMALL_STATE(734)] = 58497, + [SMALL_STATE(735)] = 58575, + [SMALL_STATE(736)] = 58659, + [SMALL_STATE(737)] = 58737, + [SMALL_STATE(738)] = 58815, + [SMALL_STATE(739)] = 58893, + [SMALL_STATE(740)] = 58971, + [SMALL_STATE(741)] = 59049, + [SMALL_STATE(742)] = 59127, + [SMALL_STATE(743)] = 59211, + [SMALL_STATE(744)] = 59289, [SMALL_STATE(745)] = 59367, - [SMALL_STATE(746)] = 59451, - [SMALL_STATE(747)] = 59529, - [SMALL_STATE(748)] = 59607, - [SMALL_STATE(749)] = 59685, - [SMALL_STATE(750)] = 59763, - [SMALL_STATE(751)] = 59841, - [SMALL_STATE(752)] = 59919, + [SMALL_STATE(746)] = 59445, + [SMALL_STATE(747)] = 59523, + [SMALL_STATE(748)] = 59601, + [SMALL_STATE(749)] = 59679, + [SMALL_STATE(750)] = 59757, + [SMALL_STATE(751)] = 59835, + [SMALL_STATE(752)] = 59913, [SMALL_STATE(753)] = 59997, [SMALL_STATE(754)] = 60075, - [SMALL_STATE(755)] = 60153, + [SMALL_STATE(755)] = 60159, [SMALL_STATE(756)] = 60237, [SMALL_STATE(757)] = 60315, [SMALL_STATE(758)] = 60393, [SMALL_STATE(759)] = 60477, - [SMALL_STATE(760)] = 60555, - [SMALL_STATE(761)] = 60633, - [SMALL_STATE(762)] = 60711, - [SMALL_STATE(763)] = 60789, - [SMALL_STATE(764)] = 60867, - [SMALL_STATE(765)] = 60945, - [SMALL_STATE(766)] = 61023, - [SMALL_STATE(767)] = 61101, - [SMALL_STATE(768)] = 61179, + [SMALL_STATE(760)] = 60561, + [SMALL_STATE(761)] = 60639, + [SMALL_STATE(762)] = 60717, + [SMALL_STATE(763)] = 60795, + [SMALL_STATE(764)] = 60873, + [SMALL_STATE(765)] = 60951, + [SMALL_STATE(766)] = 61029, + [SMALL_STATE(767)] = 61107, + [SMALL_STATE(768)] = 61185, [SMALL_STATE(769)] = 61263, [SMALL_STATE(770)] = 61341, - [SMALL_STATE(771)] = 61425, - [SMALL_STATE(772)] = 61503, - [SMALL_STATE(773)] = 61581, - [SMALL_STATE(774)] = 61659, - [SMALL_STATE(775)] = 61743, - [SMALL_STATE(776)] = 61827, - [SMALL_STATE(777)] = 61905, - [SMALL_STATE(778)] = 61983, - [SMALL_STATE(779)] = 62061, - [SMALL_STATE(780)] = 62139, - [SMALL_STATE(781)] = 62217, - [SMALL_STATE(782)] = 62295, - [SMALL_STATE(783)] = 62373, - [SMALL_STATE(784)] = 62451, - [SMALL_STATE(785)] = 62529, - [SMALL_STATE(786)] = 62607, - [SMALL_STATE(787)] = 62685, + [SMALL_STATE(771)] = 61419, + [SMALL_STATE(772)] = 61497, + [SMALL_STATE(773)] = 61575, + [SMALL_STATE(774)] = 61653, + [SMALL_STATE(775)] = 61731, + [SMALL_STATE(776)] = 61815, + [SMALL_STATE(777)] = 61893, + [SMALL_STATE(778)] = 61971, + [SMALL_STATE(779)] = 62049, + [SMALL_STATE(780)] = 62127, + [SMALL_STATE(781)] = 62205, + [SMALL_STATE(782)] = 62283, + [SMALL_STATE(783)] = 62361, + [SMALL_STATE(784)] = 62439, + [SMALL_STATE(785)] = 62517, + [SMALL_STATE(786)] = 62595, + [SMALL_STATE(787)] = 62679, [SMALL_STATE(788)] = 62763, [SMALL_STATE(789)] = 62841, [SMALL_STATE(790)] = 62919, @@ -127640,9 +128482,9 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(792)] = 63075, [SMALL_STATE(793)] = 63153, [SMALL_STATE(794)] = 63231, - [SMALL_STATE(795)] = 63315, - [SMALL_STATE(796)] = 63393, - [SMALL_STATE(797)] = 63471, + [SMALL_STATE(795)] = 63309, + [SMALL_STATE(796)] = 63387, + [SMALL_STATE(797)] = 63465, [SMALL_STATE(798)] = 63549, [SMALL_STATE(799)] = 63627, [SMALL_STATE(800)] = 63705, @@ -127655,10 +128497,10 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(807)] = 64251, [SMALL_STATE(808)] = 64329, [SMALL_STATE(809)] = 64407, - [SMALL_STATE(810)] = 64491, - [SMALL_STATE(811)] = 64569, - [SMALL_STATE(812)] = 64647, - [SMALL_STATE(813)] = 64725, + [SMALL_STATE(810)] = 64485, + [SMALL_STATE(811)] = 64563, + [SMALL_STATE(812)] = 64641, + [SMALL_STATE(813)] = 64719, [SMALL_STATE(814)] = 64803, [SMALL_STATE(815)] = 64881, [SMALL_STATE(816)] = 64959, @@ -127682,1751 +128524,1757 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(834)] = 66343, [SMALL_STATE(835)] = 66395, [SMALL_STATE(836)] = 66447, - [SMALL_STATE(837)] = 66498, - [SMALL_STATE(838)] = 66549, - [SMALL_STATE(839)] = 66600, - [SMALL_STATE(840)] = 66681, - [SMALL_STATE(841)] = 66762, - [SMALL_STATE(842)] = 66813, - [SMALL_STATE(843)] = 66864, - [SMALL_STATE(844)] = 66915, + [SMALL_STATE(837)] = 66528, + [SMALL_STATE(838)] = 66609, + [SMALL_STATE(839)] = 66660, + [SMALL_STATE(840)] = 66741, + [SMALL_STATE(841)] = 66792, + [SMALL_STATE(842)] = 66843, + [SMALL_STATE(843)] = 66894, + [SMALL_STATE(844)] = 66945, [SMALL_STATE(845)] = 66996, - [SMALL_STATE(846)] = 67062, - [SMALL_STATE(847)] = 67140, - [SMALL_STATE(848)] = 67210, - [SMALL_STATE(849)] = 67258, - [SMALL_STATE(850)] = 67314, - [SMALL_STATE(851)] = 67364, - [SMALL_STATE(852)] = 67414, - [SMALL_STATE(853)] = 67470, - [SMALL_STATE(854)] = 67520, - [SMALL_STATE(855)] = 67586, - [SMALL_STATE(856)] = 67648, - [SMALL_STATE(857)] = 67696, - [SMALL_STATE(858)] = 67746, - [SMALL_STATE(859)] = 67826, - [SMALL_STATE(860)] = 67882, - [SMALL_STATE(861)] = 67938, - [SMALL_STATE(862)] = 67994, - [SMALL_STATE(863)] = 68040, - [SMALL_STATE(864)] = 68090, - [SMALL_STATE(865)] = 68140, - [SMALL_STATE(866)] = 68210, - [SMALL_STATE(867)] = 68256, - [SMALL_STATE(868)] = 68326, - [SMALL_STATE(869)] = 68376, - [SMALL_STATE(870)] = 68440, - [SMALL_STATE(871)] = 68490, - [SMALL_STATE(872)] = 68546, - [SMALL_STATE(873)] = 68602, - [SMALL_STATE(874)] = 68658, - [SMALL_STATE(875)] = 68738, - [SMALL_STATE(876)] = 68794, - [SMALL_STATE(877)] = 68856, - [SMALL_STATE(878)] = 68934, - [SMALL_STATE(879)] = 69004, - [SMALL_STATE(880)] = 69066, - [SMALL_STATE(881)] = 69126, - [SMALL_STATE(882)] = 69182, - [SMALL_STATE(883)] = 69250, - [SMALL_STATE(884)] = 69330, - [SMALL_STATE(885)] = 69380, - [SMALL_STATE(886)] = 69430, - [SMALL_STATE(887)] = 69500, - [SMALL_STATE(888)] = 69548, - [SMALL_STATE(889)] = 69618, - [SMALL_STATE(890)] = 69678, - [SMALL_STATE(891)] = 69748, - [SMALL_STATE(892)] = 69808, - [SMALL_STATE(893)] = 69858, - [SMALL_STATE(894)] = 69914, - [SMALL_STATE(895)] = 69982, - [SMALL_STATE(896)] = 70048, - [SMALL_STATE(897)] = 70112, - [SMALL_STATE(898)] = 70182, - [SMALL_STATE(899)] = 70238, - [SMALL_STATE(900)] = 70288, - [SMALL_STATE(901)] = 70358, - [SMALL_STATE(902)] = 70426, + [SMALL_STATE(846)] = 67056, + [SMALL_STATE(847)] = 67106, + [SMALL_STATE(848)] = 67156, + [SMALL_STATE(849)] = 67212, + [SMALL_STATE(850)] = 67268, + [SMALL_STATE(851)] = 67330, + [SMALL_STATE(852)] = 67400, + [SMALL_STATE(853)] = 67464, + [SMALL_STATE(854)] = 67514, + [SMALL_STATE(855)] = 67570, + [SMALL_STATE(856)] = 67638, + [SMALL_STATE(857)] = 67704, + [SMALL_STATE(858)] = 67768, + [SMALL_STATE(859)] = 67818, + [SMALL_STATE(860)] = 67868, + [SMALL_STATE(861)] = 67948, + [SMALL_STATE(862)] = 68004, + [SMALL_STATE(863)] = 68066, + [SMALL_STATE(864)] = 68136, + [SMALL_STATE(865)] = 68196, + [SMALL_STATE(866)] = 68252, + [SMALL_STATE(867)] = 68320, + [SMALL_STATE(868)] = 68390, + [SMALL_STATE(869)] = 68456, + [SMALL_STATE(870)] = 68522, + [SMALL_STATE(871)] = 68586, + [SMALL_STATE(872)] = 68642, + [SMALL_STATE(873)] = 68712, + [SMALL_STATE(874)] = 68768, + [SMALL_STATE(875)] = 68830, + [SMALL_STATE(876)] = 68876, + [SMALL_STATE(877)] = 68956, + [SMALL_STATE(878)] = 69006, + [SMALL_STATE(879)] = 69076, + [SMALL_STATE(880)] = 69132, + [SMALL_STATE(881)] = 69188, + [SMALL_STATE(882)] = 69248, + [SMALL_STATE(883)] = 69326, + [SMALL_STATE(884)] = 69396, + [SMALL_STATE(885)] = 69446, + [SMALL_STATE(886)] = 69496, + [SMALL_STATE(887)] = 69544, + [SMALL_STATE(888)] = 69592, + [SMALL_STATE(889)] = 69662, + [SMALL_STATE(890)] = 69712, + [SMALL_STATE(891)] = 69782, + [SMALL_STATE(892)] = 69852, + [SMALL_STATE(893)] = 69900, + [SMALL_STATE(894)] = 69980, + [SMALL_STATE(895)] = 70030, + [SMALL_STATE(896)] = 70108, + [SMALL_STATE(897)] = 70164, + [SMALL_STATE(898)] = 70210, + [SMALL_STATE(899)] = 70278, + [SMALL_STATE(900)] = 70334, + [SMALL_STATE(901)] = 70384, + [SMALL_STATE(902)] = 70440, [SMALL_STATE(903)] = 70490, [SMALL_STATE(904)] = 70537, - [SMALL_STATE(905)] = 70588, - [SMALL_STATE(906)] = 70655, - [SMALL_STATE(907)] = 70700, - [SMALL_STATE(908)] = 70745, - [SMALL_STATE(909)] = 70790, - [SMALL_STATE(910)] = 70855, - [SMALL_STATE(911)] = 70918, - [SMALL_STATE(912)] = 70963, - [SMALL_STATE(913)] = 71024, - [SMALL_STATE(914)] = 71093, - [SMALL_STATE(915)] = 71148, - [SMALL_STATE(916)] = 71217, - [SMALL_STATE(917)] = 71272, - [SMALL_STATE(918)] = 71317, - [SMALL_STATE(919)] = 71372, - [SMALL_STATE(920)] = 71439, - [SMALL_STATE(921)] = 71498, - [SMALL_STATE(922)] = 71553, - [SMALL_STATE(923)] = 71632, - [SMALL_STATE(924)] = 71679, - [SMALL_STATE(925)] = 71728, - [SMALL_STATE(926)] = 71793, - [SMALL_STATE(927)] = 71838, - [SMALL_STATE(928)] = 71883, - [SMALL_STATE(929)] = 71952, - [SMALL_STATE(930)] = 72007, - [SMALL_STATE(931)] = 72066, - [SMALL_STATE(932)] = 72111, - [SMALL_STATE(933)] = 72160, - [SMALL_STATE(934)] = 72209, - [SMALL_STATE(935)] = 72258, - [SMALL_STATE(936)] = 72319, - [SMALL_STATE(937)] = 72382, - [SMALL_STATE(938)] = 72437, - [SMALL_STATE(939)] = 72488, - [SMALL_STATE(940)] = 72539, - [SMALL_STATE(941)] = 72608, - [SMALL_STATE(942)] = 72655, - [SMALL_STATE(943)] = 72724, - [SMALL_STATE(944)] = 72775, - [SMALL_STATE(945)] = 72820, - [SMALL_STATE(946)] = 72865, - [SMALL_STATE(947)] = 72910, - [SMALL_STATE(948)] = 72979, - [SMALL_STATE(949)] = 73048, - [SMALL_STATE(950)] = 73117, - [SMALL_STATE(951)] = 73166, - [SMALL_STATE(952)] = 73235, - [SMALL_STATE(953)] = 73282, - [SMALL_STATE(954)] = 73337, - [SMALL_STATE(955)] = 73382, - [SMALL_STATE(956)] = 73437, - [SMALL_STATE(957)] = 73492, - [SMALL_STATE(958)] = 73553, - [SMALL_STATE(959)] = 73608, - [SMALL_STATE(960)] = 73677, - [SMALL_STATE(961)] = 73736, - [SMALL_STATE(962)] = 73781, - [SMALL_STATE(963)] = 73836, - [SMALL_STATE(964)] = 73903, - [SMALL_STATE(965)] = 73958, - [SMALL_STATE(966)] = 74023, - [SMALL_STATE(967)] = 74086, - [SMALL_STATE(968)] = 74133, - [SMALL_STATE(969)] = 74184, - [SMALL_STATE(970)] = 74229, - [SMALL_STATE(971)] = 74274, - [SMALL_STATE(972)] = 74319, - [SMALL_STATE(973)] = 74364, - [SMALL_STATE(974)] = 74409, - [SMALL_STATE(975)] = 74458, - [SMALL_STATE(976)] = 74503, - [SMALL_STATE(977)] = 74552, - [SMALL_STATE(978)] = 74607, - [SMALL_STATE(979)] = 74654, - [SMALL_STATE(980)] = 74703, - [SMALL_STATE(981)] = 74748, - [SMALL_STATE(982)] = 74793, - [SMALL_STATE(983)] = 74838, - [SMALL_STATE(984)] = 74887, - [SMALL_STATE(985)] = 74942, - [SMALL_STATE(986)] = 74987, - [SMALL_STATE(987)] = 75032, - [SMALL_STATE(988)] = 75081, - [SMALL_STATE(989)] = 75150, - [SMALL_STATE(990)] = 75195, - [SMALL_STATE(991)] = 75272, - [SMALL_STATE(992)] = 75321, - [SMALL_STATE(993)] = 75366, - [SMALL_STATE(994)] = 75411, - [SMALL_STATE(995)] = 75456, - [SMALL_STATE(996)] = 75501, - [SMALL_STATE(997)] = 75556, - [SMALL_STATE(998)] = 75601, - [SMALL_STATE(999)] = 75646, - [SMALL_STATE(1000)] = 75691, - [SMALL_STATE(1001)] = 75736, - [SMALL_STATE(1002)] = 75781, - [SMALL_STATE(1003)] = 75842, - [SMALL_STATE(1004)] = 75891, - [SMALL_STATE(1005)] = 75950, - [SMALL_STATE(1006)] = 76005, - [SMALL_STATE(1007)] = 76072, - [SMALL_STATE(1008)] = 76117, - [SMALL_STATE(1009)] = 76182, - [SMALL_STATE(1010)] = 76245, - [SMALL_STATE(1011)] = 76314, - [SMALL_STATE(1012)] = 76359, - [SMALL_STATE(1013)] = 76404, - [SMALL_STATE(1014)] = 76470, - [SMALL_STATE(1015)] = 76538, - [SMALL_STATE(1016)] = 76582, - [SMALL_STATE(1017)] = 76628, - [SMALL_STATE(1018)] = 76674, - [SMALL_STATE(1019)] = 76720, - [SMALL_STATE(1020)] = 76782, - [SMALL_STATE(1021)] = 76846, - [SMALL_STATE(1022)] = 76912, - [SMALL_STATE(1023)] = 76966, - [SMALL_STATE(1024)] = 77024, - [SMALL_STATE(1025)] = 77084, - [SMALL_STATE(1026)] = 77138, - [SMALL_STATE(1027)] = 77182, - [SMALL_STATE(1028)] = 77226, - [SMALL_STATE(1029)] = 77270, - [SMALL_STATE(1030)] = 77324, - [SMALL_STATE(1031)] = 77378, - [SMALL_STATE(1032)] = 77454, - [SMALL_STATE(1033)] = 77500, - [SMALL_STATE(1034)] = 77546, - [SMALL_STATE(1035)] = 77622, - [SMALL_STATE(1036)] = 77668, - [SMALL_STATE(1037)] = 77712, - [SMALL_STATE(1038)] = 77756, - [SMALL_STATE(1039)] = 77800, - [SMALL_STATE(1040)] = 77868, - [SMALL_STATE(1041)] = 77936, - [SMALL_STATE(1042)] = 77984, - [SMALL_STATE(1043)] = 78030, - [SMALL_STATE(1044)] = 78078, - [SMALL_STATE(1045)] = 78126, - [SMALL_STATE(1046)] = 78174, - [SMALL_STATE(1047)] = 78220, - [SMALL_STATE(1048)] = 78266, - [SMALL_STATE(1049)] = 78310, - [SMALL_STATE(1050)] = 78358, - [SMALL_STATE(1051)] = 78402, - [SMALL_STATE(1052)] = 78470, - [SMALL_STATE(1053)] = 78514, - [SMALL_STATE(1054)] = 78560, - [SMALL_STATE(1055)] = 78606, - [SMALL_STATE(1056)] = 78650, - [SMALL_STATE(1057)] = 78698, - [SMALL_STATE(1058)] = 78746, - [SMALL_STATE(1059)] = 78794, - [SMALL_STATE(1060)] = 78838, - [SMALL_STATE(1061)] = 78882, - [SMALL_STATE(1062)] = 78926, - [SMALL_STATE(1063)] = 78970, - [SMALL_STATE(1064)] = 79014, - [SMALL_STATE(1065)] = 79058, - [SMALL_STATE(1066)] = 79134, - [SMALL_STATE(1067)] = 79178, - [SMALL_STATE(1068)] = 79222, - [SMALL_STATE(1069)] = 79266, - [SMALL_STATE(1070)] = 79310, - [SMALL_STATE(1071)] = 79354, - [SMALL_STATE(1072)] = 79398, - [SMALL_STATE(1073)] = 79442, - [SMALL_STATE(1074)] = 79486, - [SMALL_STATE(1075)] = 79530, - [SMALL_STATE(1076)] = 79574, - [SMALL_STATE(1077)] = 79618, - [SMALL_STATE(1078)] = 79662, - [SMALL_STATE(1079)] = 79706, - [SMALL_STATE(1080)] = 79756, - [SMALL_STATE(1081)] = 79800, - [SMALL_STATE(1082)] = 79844, - [SMALL_STATE(1083)] = 79888, - [SMALL_STATE(1084)] = 79932, - [SMALL_STATE(1085)] = 79976, - [SMALL_STATE(1086)] = 80020, - [SMALL_STATE(1087)] = 80064, - [SMALL_STATE(1088)] = 80108, - [SMALL_STATE(1089)] = 80158, - [SMALL_STATE(1090)] = 80206, - [SMALL_STATE(1091)] = 80252, - [SMALL_STATE(1092)] = 80300, - [SMALL_STATE(1093)] = 80348, - [SMALL_STATE(1094)] = 80394, - [SMALL_STATE(1095)] = 80438, - [SMALL_STATE(1096)] = 80482, - [SMALL_STATE(1097)] = 80526, - [SMALL_STATE(1098)] = 80570, - [SMALL_STATE(1099)] = 80614, - [SMALL_STATE(1100)] = 80658, - [SMALL_STATE(1101)] = 80702, - [SMALL_STATE(1102)] = 80750, - [SMALL_STATE(1103)] = 80798, - [SMALL_STATE(1104)] = 80842, - [SMALL_STATE(1105)] = 80890, - [SMALL_STATE(1106)] = 80934, - [SMALL_STATE(1107)] = 80978, - [SMALL_STATE(1108)] = 81022, - [SMALL_STATE(1109)] = 81066, - [SMALL_STATE(1110)] = 81110, - [SMALL_STATE(1111)] = 81154, - [SMALL_STATE(1112)] = 81202, - [SMALL_STATE(1113)] = 81250, - [SMALL_STATE(1114)] = 81298, - [SMALL_STATE(1115)] = 81342, - [SMALL_STATE(1116)] = 81386, - [SMALL_STATE(1117)] = 81430, - [SMALL_STATE(1118)] = 81474, - [SMALL_STATE(1119)] = 81528, - [SMALL_STATE(1120)] = 81582, - [SMALL_STATE(1121)] = 81636, - [SMALL_STATE(1122)] = 81680, - [SMALL_STATE(1123)] = 81724, - [SMALL_STATE(1124)] = 81784, - [SMALL_STATE(1125)] = 81842, - [SMALL_STATE(1126)] = 81896, - [SMALL_STATE(1127)] = 81940, - [SMALL_STATE(1128)] = 81986, - [SMALL_STATE(1129)] = 82030, - [SMALL_STATE(1130)] = 82074, - [SMALL_STATE(1131)] = 82118, - [SMALL_STATE(1132)] = 82162, - [SMALL_STATE(1133)] = 82226, - [SMALL_STATE(1134)] = 82270, - [SMALL_STATE(1135)] = 82314, - [SMALL_STATE(1136)] = 82358, - [SMALL_STATE(1137)] = 82402, - [SMALL_STATE(1138)] = 82464, - [SMALL_STATE(1139)] = 82508, - [SMALL_STATE(1140)] = 82552, - [SMALL_STATE(1141)] = 82596, - [SMALL_STATE(1142)] = 82640, - [SMALL_STATE(1143)] = 82708, - [SMALL_STATE(1144)] = 82754, - [SMALL_STATE(1145)] = 82800, - [SMALL_STATE(1146)] = 82844, - [SMALL_STATE(1147)] = 82890, - [SMALL_STATE(1148)] = 82938, - [SMALL_STATE(1149)] = 83006, - [SMALL_STATE(1150)] = 83050, - [SMALL_STATE(1151)] = 83094, - [SMALL_STATE(1152)] = 83138, - [SMALL_STATE(1153)] = 83182, - [SMALL_STATE(1154)] = 83226, - [SMALL_STATE(1155)] = 83270, - [SMALL_STATE(1156)] = 83314, - [SMALL_STATE(1157)] = 83358, - [SMALL_STATE(1158)] = 83402, - [SMALL_STATE(1159)] = 83447, - [SMALL_STATE(1160)] = 83490, - [SMALL_STATE(1161)] = 83537, - [SMALL_STATE(1162)] = 83580, - [SMALL_STATE(1163)] = 83623, - [SMALL_STATE(1164)] = 83666, - [SMALL_STATE(1165)] = 83713, - [SMALL_STATE(1166)] = 83764, - [SMALL_STATE(1167)] = 83811, - [SMALL_STATE(1168)] = 83856, - [SMALL_STATE(1169)] = 83907, - [SMALL_STATE(1170)] = 83952, - [SMALL_STATE(1171)] = 83997, - [SMALL_STATE(1172)] = 84040, - [SMALL_STATE(1173)] = 84083, - [SMALL_STATE(1174)] = 84126, - [SMALL_STATE(1175)] = 84171, - [SMALL_STATE(1176)] = 84214, - [SMALL_STATE(1177)] = 84259, - [SMALL_STATE(1178)] = 84302, - [SMALL_STATE(1179)] = 84345, - [SMALL_STATE(1180)] = 84388, - [SMALL_STATE(1181)] = 84435, - [SMALL_STATE(1182)] = 84482, - [SMALL_STATE(1183)] = 84525, - [SMALL_STATE(1184)] = 84568, - [SMALL_STATE(1185)] = 84611, - [SMALL_STATE(1186)] = 84654, - [SMALL_STATE(1187)] = 84697, - [SMALL_STATE(1188)] = 84740, - [SMALL_STATE(1189)] = 84783, - [SMALL_STATE(1190)] = 84826, - [SMALL_STATE(1191)] = 84869, - [SMALL_STATE(1192)] = 84912, - [SMALL_STATE(1193)] = 84987, - [SMALL_STATE(1194)] = 85030, - [SMALL_STATE(1195)] = 85073, - [SMALL_STATE(1196)] = 85116, - [SMALL_STATE(1197)] = 85159, - [SMALL_STATE(1198)] = 85202, - [SMALL_STATE(1199)] = 85245, - [SMALL_STATE(1200)] = 85288, - [SMALL_STATE(1201)] = 85331, - [SMALL_STATE(1202)] = 85374, - [SMALL_STATE(1203)] = 85417, - [SMALL_STATE(1204)] = 85460, - [SMALL_STATE(1205)] = 85503, - [SMALL_STATE(1206)] = 85546, - [SMALL_STATE(1207)] = 85589, - [SMALL_STATE(1208)] = 85632, - [SMALL_STATE(1209)] = 85675, - [SMALL_STATE(1210)] = 85718, - [SMALL_STATE(1211)] = 85799, - [SMALL_STATE(1212)] = 85842, - [SMALL_STATE(1213)] = 85885, - [SMALL_STATE(1214)] = 85928, - [SMALL_STATE(1215)] = 85971, - [SMALL_STATE(1216)] = 86018, - [SMALL_STATE(1217)] = 86061, - [SMALL_STATE(1218)] = 86106, - [SMALL_STATE(1219)] = 86149, - [SMALL_STATE(1220)] = 86192, - [SMALL_STATE(1221)] = 86235, - [SMALL_STATE(1222)] = 86280, - [SMALL_STATE(1223)] = 86323, - [SMALL_STATE(1224)] = 86366, - [SMALL_STATE(1225)] = 86409, - [SMALL_STATE(1226)] = 86452, - [SMALL_STATE(1227)] = 86495, - [SMALL_STATE(1228)] = 86538, - [SMALL_STATE(1229)] = 86581, - [SMALL_STATE(1230)] = 86624, - [SMALL_STATE(1231)] = 86667, - [SMALL_STATE(1232)] = 86710, - [SMALL_STATE(1233)] = 86753, - [SMALL_STATE(1234)] = 86796, - [SMALL_STATE(1235)] = 86839, - [SMALL_STATE(1236)] = 86882, - [SMALL_STATE(1237)] = 86925, - [SMALL_STATE(1238)] = 86968, - [SMALL_STATE(1239)] = 87011, - [SMALL_STATE(1240)] = 87058, - [SMALL_STATE(1241)] = 87101, - [SMALL_STATE(1242)] = 87148, - [SMALL_STATE(1243)] = 87191, - [SMALL_STATE(1244)] = 87236, - [SMALL_STATE(1245)] = 87279, - [SMALL_STATE(1246)] = 87322, - [SMALL_STATE(1247)] = 87365, - [SMALL_STATE(1248)] = 87408, - [SMALL_STATE(1249)] = 87451, - [SMALL_STATE(1250)] = 87494, - [SMALL_STATE(1251)] = 87537, - [SMALL_STATE(1252)] = 87580, - [SMALL_STATE(1253)] = 87623, - [SMALL_STATE(1254)] = 87666, - [SMALL_STATE(1255)] = 87711, - [SMALL_STATE(1256)] = 87758, - [SMALL_STATE(1257)] = 87801, - [SMALL_STATE(1258)] = 87844, - [SMALL_STATE(1259)] = 87887, - [SMALL_STATE(1260)] = 87930, - [SMALL_STATE(1261)] = 87973, - [SMALL_STATE(1262)] = 88016, - [SMALL_STATE(1263)] = 88059, - [SMALL_STATE(1264)] = 88104, - [SMALL_STATE(1265)] = 88149, - [SMALL_STATE(1266)] = 88192, - [SMALL_STATE(1267)] = 88235, - [SMALL_STATE(1268)] = 88278, - [SMALL_STATE(1269)] = 88321, - [SMALL_STATE(1270)] = 88366, - [SMALL_STATE(1271)] = 88409, - [SMALL_STATE(1272)] = 88454, - [SMALL_STATE(1273)] = 88497, - [SMALL_STATE(1274)] = 88542, - [SMALL_STATE(1275)] = 88585, - [SMALL_STATE(1276)] = 88628, - [SMALL_STATE(1277)] = 88671, - [SMALL_STATE(1278)] = 88714, - [SMALL_STATE(1279)] = 88757, - [SMALL_STATE(1280)] = 88800, - [SMALL_STATE(1281)] = 88843, - [SMALL_STATE(1282)] = 88886, - [SMALL_STATE(1283)] = 88929, - [SMALL_STATE(1284)] = 88972, - [SMALL_STATE(1285)] = 89015, - [SMALL_STATE(1286)] = 89058, - [SMALL_STATE(1287)] = 89101, - [SMALL_STATE(1288)] = 89144, - [SMALL_STATE(1289)] = 89187, - [SMALL_STATE(1290)] = 89230, - [SMALL_STATE(1291)] = 89273, - [SMALL_STATE(1292)] = 89316, - [SMALL_STATE(1293)] = 89359, - [SMALL_STATE(1294)] = 89406, - [SMALL_STATE(1295)] = 89449, - [SMALL_STATE(1296)] = 89492, - [SMALL_STATE(1297)] = 89535, - [SMALL_STATE(1298)] = 89578, - [SMALL_STATE(1299)] = 89621, - [SMALL_STATE(1300)] = 89666, - [SMALL_STATE(1301)] = 89709, - [SMALL_STATE(1302)] = 89754, - [SMALL_STATE(1303)] = 89797, - [SMALL_STATE(1304)] = 89840, - [SMALL_STATE(1305)] = 89883, - [SMALL_STATE(1306)] = 89926, - [SMALL_STATE(1307)] = 89969, - [SMALL_STATE(1308)] = 90012, - [SMALL_STATE(1309)] = 90055, - [SMALL_STATE(1310)] = 90098, - [SMALL_STATE(1311)] = 90143, - [SMALL_STATE(1312)] = 90188, - [SMALL_STATE(1313)] = 90235, - [SMALL_STATE(1314)] = 90282, - [SMALL_STATE(1315)] = 90329, - [SMALL_STATE(1316)] = 90410, - [SMALL_STATE(1317)] = 90457, - [SMALL_STATE(1318)] = 90500, - [SMALL_STATE(1319)] = 90543, - [SMALL_STATE(1320)] = 90586, - [SMALL_STATE(1321)] = 90633, - [SMALL_STATE(1322)] = 90676, - [SMALL_STATE(1323)] = 90719, - [SMALL_STATE(1324)] = 90762, - [SMALL_STATE(1325)] = 90808, + [SMALL_STATE(905)] = 70582, + [SMALL_STATE(906)] = 70637, + [SMALL_STATE(907)] = 70688, + [SMALL_STATE(908)] = 70773, + [SMALL_STATE(909)] = 70836, + [SMALL_STATE(910)] = 70891, + [SMALL_STATE(911)] = 70956, + [SMALL_STATE(912)] = 71023, + [SMALL_STATE(913)] = 71078, + [SMALL_STATE(914)] = 71137, + [SMALL_STATE(915)] = 71206, + [SMALL_STATE(916)] = 71261, + [SMALL_STATE(917)] = 71330, + [SMALL_STATE(918)] = 71391, + [SMALL_STATE(919)] = 71460, + [SMALL_STATE(920)] = 71515, + [SMALL_STATE(921)] = 71560, + [SMALL_STATE(922)] = 71605, + [SMALL_STATE(923)] = 71674, + [SMALL_STATE(924)] = 71743, + [SMALL_STATE(925)] = 71788, + [SMALL_STATE(926)] = 71833, + [SMALL_STATE(927)] = 71878, + [SMALL_STATE(928)] = 71947, + [SMALL_STATE(929)] = 72016, + [SMALL_STATE(930)] = 72065, + [SMALL_STATE(931)] = 72150, + [SMALL_STATE(932)] = 72219, + [SMALL_STATE(933)] = 72274, + [SMALL_STATE(934)] = 72319, + [SMALL_STATE(935)] = 72374, + [SMALL_STATE(936)] = 72419, + [SMALL_STATE(937)] = 72464, + [SMALL_STATE(938)] = 72533, + [SMALL_STATE(939)] = 72584, + [SMALL_STATE(940)] = 72663, + [SMALL_STATE(941)] = 72710, + [SMALL_STATE(942)] = 72759, + [SMALL_STATE(943)] = 72804, + [SMALL_STATE(944)] = 72851, + [SMALL_STATE(945)] = 72898, + [SMALL_STATE(946)] = 72961, + [SMALL_STATE(947)] = 73026, + [SMALL_STATE(948)] = 73103, + [SMALL_STATE(949)] = 73170, + [SMALL_STATE(950)] = 73225, + [SMALL_STATE(951)] = 73294, + [SMALL_STATE(952)] = 73363, + [SMALL_STATE(953)] = 73412, + [SMALL_STATE(954)] = 73471, + [SMALL_STATE(955)] = 73516, + [SMALL_STATE(956)] = 73561, + [SMALL_STATE(957)] = 73630, + [SMALL_STATE(958)] = 73691, + [SMALL_STATE(959)] = 73746, + [SMALL_STATE(960)] = 73791, + [SMALL_STATE(961)] = 73836, + [SMALL_STATE(962)] = 73881, + [SMALL_STATE(963)] = 73926, + [SMALL_STATE(964)] = 73971, + [SMALL_STATE(965)] = 74016, + [SMALL_STATE(966)] = 74063, + [SMALL_STATE(967)] = 74108, + [SMALL_STATE(968)] = 74155, + [SMALL_STATE(969)] = 74200, + [SMALL_STATE(970)] = 74245, + [SMALL_STATE(971)] = 74290, + [SMALL_STATE(972)] = 74341, + [SMALL_STATE(973)] = 74392, + [SMALL_STATE(974)] = 74443, + [SMALL_STATE(975)] = 74488, + [SMALL_STATE(976)] = 74543, + [SMALL_STATE(977)] = 74592, + [SMALL_STATE(978)] = 74637, + [SMALL_STATE(979)] = 74692, + [SMALL_STATE(980)] = 74747, + [SMALL_STATE(981)] = 74796, + [SMALL_STATE(982)] = 74845, + [SMALL_STATE(983)] = 74894, + [SMALL_STATE(984)] = 74939, + [SMALL_STATE(985)] = 75002, + [SMALL_STATE(986)] = 75051, + [SMALL_STATE(987)] = 75100, + [SMALL_STATE(988)] = 75165, + [SMALL_STATE(989)] = 75214, + [SMALL_STATE(990)] = 75281, + [SMALL_STATE(991)] = 75336, + [SMALL_STATE(992)] = 75395, + [SMALL_STATE(993)] = 75440, + [SMALL_STATE(994)] = 75485, + [SMALL_STATE(995)] = 75546, + [SMALL_STATE(996)] = 75591, + [SMALL_STATE(997)] = 75640, + [SMALL_STATE(998)] = 75695, + [SMALL_STATE(999)] = 75740, + [SMALL_STATE(1000)] = 75801, + [SMALL_STATE(1001)] = 75860, + [SMALL_STATE(1002)] = 75905, + [SMALL_STATE(1003)] = 75950, + [SMALL_STATE(1004)] = 76005, + [SMALL_STATE(1005)] = 76050, + [SMALL_STATE(1006)] = 76095, + [SMALL_STATE(1007)] = 76150, + [SMALL_STATE(1008)] = 76195, + [SMALL_STATE(1009)] = 76240, + [SMALL_STATE(1010)] = 76307, + [SMALL_STATE(1011)] = 76372, + [SMALL_STATE(1012)] = 76417, + [SMALL_STATE(1013)] = 76466, + [SMALL_STATE(1014)] = 76529, + [SMALL_STATE(1015)] = 76574, + [SMALL_STATE(1016)] = 76618, + [SMALL_STATE(1017)] = 76662, + [SMALL_STATE(1018)] = 76706, + [SMALL_STATE(1019)] = 76750, + [SMALL_STATE(1020)] = 76794, + [SMALL_STATE(1021)] = 76838, + [SMALL_STATE(1022)] = 76882, + [SMALL_STATE(1023)] = 76926, + [SMALL_STATE(1024)] = 76970, + [SMALL_STATE(1025)] = 77016, + [SMALL_STATE(1026)] = 77062, + [SMALL_STATE(1027)] = 77106, + [SMALL_STATE(1028)] = 77150, + [SMALL_STATE(1029)] = 77194, + [SMALL_STATE(1030)] = 77242, + [SMALL_STATE(1031)] = 77290, + [SMALL_STATE(1032)] = 77334, + [SMALL_STATE(1033)] = 77382, + [SMALL_STATE(1034)] = 77426, + [SMALL_STATE(1035)] = 77470, + [SMALL_STATE(1036)] = 77514, + [SMALL_STATE(1037)] = 77558, + [SMALL_STATE(1038)] = 77602, + [SMALL_STATE(1039)] = 77646, + [SMALL_STATE(1040)] = 77690, + [SMALL_STATE(1041)] = 77736, + [SMALL_STATE(1042)] = 77780, + [SMALL_STATE(1043)] = 77826, + [SMALL_STATE(1044)] = 77870, + [SMALL_STATE(1045)] = 77916, + [SMALL_STATE(1046)] = 77964, + [SMALL_STATE(1047)] = 78008, + [SMALL_STATE(1048)] = 78056, + [SMALL_STATE(1049)] = 78102, + [SMALL_STATE(1050)] = 78148, + [SMALL_STATE(1051)] = 78192, + [SMALL_STATE(1052)] = 78236, + [SMALL_STATE(1053)] = 78280, + [SMALL_STATE(1054)] = 78324, + [SMALL_STATE(1055)] = 78368, + [SMALL_STATE(1056)] = 78418, + [SMALL_STATE(1057)] = 78462, + [SMALL_STATE(1058)] = 78506, + [SMALL_STATE(1059)] = 78550, + [SMALL_STATE(1060)] = 78626, + [SMALL_STATE(1061)] = 78670, + [SMALL_STATE(1062)] = 78714, + [SMALL_STATE(1063)] = 78760, + [SMALL_STATE(1064)] = 78804, + [SMALL_STATE(1065)] = 78852, + [SMALL_STATE(1066)] = 78896, + [SMALL_STATE(1067)] = 78940, + [SMALL_STATE(1068)] = 78984, + [SMALL_STATE(1069)] = 79028, + [SMALL_STATE(1070)] = 79072, + [SMALL_STATE(1071)] = 79120, + [SMALL_STATE(1072)] = 79164, + [SMALL_STATE(1073)] = 79212, + [SMALL_STATE(1074)] = 79256, + [SMALL_STATE(1075)] = 79304, + [SMALL_STATE(1076)] = 79372, + [SMALL_STATE(1077)] = 79420, + [SMALL_STATE(1078)] = 79468, + [SMALL_STATE(1079)] = 79516, + [SMALL_STATE(1080)] = 79560, + [SMALL_STATE(1081)] = 79610, + [SMALL_STATE(1082)] = 79656, + [SMALL_STATE(1083)] = 79700, + [SMALL_STATE(1084)] = 79744, + [SMALL_STATE(1085)] = 79790, + [SMALL_STATE(1086)] = 79834, + [SMALL_STATE(1087)] = 79878, + [SMALL_STATE(1088)] = 79922, + [SMALL_STATE(1089)] = 79998, + [SMALL_STATE(1090)] = 80042, + [SMALL_STATE(1091)] = 80086, + [SMALL_STATE(1092)] = 80134, + [SMALL_STATE(1093)] = 80178, + [SMALL_STATE(1094)] = 80226, + [SMALL_STATE(1095)] = 80274, + [SMALL_STATE(1096)] = 80318, + [SMALL_STATE(1097)] = 80362, + [SMALL_STATE(1098)] = 80406, + [SMALL_STATE(1099)] = 80450, + [SMALL_STATE(1100)] = 80494, + [SMALL_STATE(1101)] = 80538, + [SMALL_STATE(1102)] = 80582, + [SMALL_STATE(1103)] = 80650, + [SMALL_STATE(1104)] = 80694, + [SMALL_STATE(1105)] = 80762, + [SMALL_STATE(1106)] = 80806, + [SMALL_STATE(1107)] = 80850, + [SMALL_STATE(1108)] = 80912, + [SMALL_STATE(1109)] = 80976, + [SMALL_STATE(1110)] = 81042, + [SMALL_STATE(1111)] = 81086, + [SMALL_STATE(1112)] = 81130, + [SMALL_STATE(1113)] = 81174, + [SMALL_STATE(1114)] = 81218, + [SMALL_STATE(1115)] = 81266, + [SMALL_STATE(1116)] = 81310, + [SMALL_STATE(1117)] = 81354, + [SMALL_STATE(1118)] = 81400, + [SMALL_STATE(1119)] = 81448, + [SMALL_STATE(1120)] = 81496, + [SMALL_STATE(1121)] = 81550, + [SMALL_STATE(1122)] = 81594, + [SMALL_STATE(1123)] = 81638, + [SMALL_STATE(1124)] = 81696, + [SMALL_STATE(1125)] = 81740, + [SMALL_STATE(1126)] = 81786, + [SMALL_STATE(1127)] = 81846, + [SMALL_STATE(1128)] = 81900, + [SMALL_STATE(1129)] = 81946, + [SMALL_STATE(1130)] = 81992, + [SMALL_STATE(1131)] = 82068, + [SMALL_STATE(1132)] = 82122, + [SMALL_STATE(1133)] = 82176, + [SMALL_STATE(1134)] = 82220, + [SMALL_STATE(1135)] = 82264, + [SMALL_STATE(1136)] = 82308, + [SMALL_STATE(1137)] = 82352, + [SMALL_STATE(1138)] = 82406, + [SMALL_STATE(1139)] = 82450, + [SMALL_STATE(1140)] = 82494, + [SMALL_STATE(1141)] = 82562, + [SMALL_STATE(1142)] = 82622, + [SMALL_STATE(1143)] = 82690, + [SMALL_STATE(1144)] = 82744, + [SMALL_STATE(1145)] = 82812, + [SMALL_STATE(1146)] = 82866, + [SMALL_STATE(1147)] = 82924, + [SMALL_STATE(1148)] = 82978, + [SMALL_STATE(1149)] = 83044, + [SMALL_STATE(1150)] = 83108, + [SMALL_STATE(1151)] = 83170, + [SMALL_STATE(1152)] = 83216, + [SMALL_STATE(1153)] = 83260, + [SMALL_STATE(1154)] = 83304, + [SMALL_STATE(1155)] = 83348, + [SMALL_STATE(1156)] = 83392, + [SMALL_STATE(1157)] = 83436, + [SMALL_STATE(1158)] = 83480, + [SMALL_STATE(1159)] = 83526, + [SMALL_STATE(1160)] = 83572, + [SMALL_STATE(1161)] = 83615, + [SMALL_STATE(1162)] = 83658, + [SMALL_STATE(1163)] = 83701, + [SMALL_STATE(1164)] = 83744, + [SMALL_STATE(1165)] = 83787, + [SMALL_STATE(1166)] = 83830, + [SMALL_STATE(1167)] = 83873, + [SMALL_STATE(1168)] = 83916, + [SMALL_STATE(1169)] = 83959, + [SMALL_STATE(1170)] = 84002, + [SMALL_STATE(1171)] = 84053, + [SMALL_STATE(1172)] = 84096, + [SMALL_STATE(1173)] = 84139, + [SMALL_STATE(1174)] = 84182, + [SMALL_STATE(1175)] = 84229, + [SMALL_STATE(1176)] = 84276, + [SMALL_STATE(1177)] = 84319, + [SMALL_STATE(1178)] = 84362, + [SMALL_STATE(1179)] = 84409, + [SMALL_STATE(1180)] = 84452, + [SMALL_STATE(1181)] = 84495, + [SMALL_STATE(1182)] = 84546, + [SMALL_STATE(1183)] = 84589, + [SMALL_STATE(1184)] = 84632, + [SMALL_STATE(1185)] = 84675, + [SMALL_STATE(1186)] = 84718, + [SMALL_STATE(1187)] = 84761, + [SMALL_STATE(1188)] = 84804, + [SMALL_STATE(1189)] = 84847, + [SMALL_STATE(1190)] = 84890, + [SMALL_STATE(1191)] = 84933, + [SMALL_STATE(1192)] = 84976, + [SMALL_STATE(1193)] = 85023, + [SMALL_STATE(1194)] = 85066, + [SMALL_STATE(1195)] = 85109, + [SMALL_STATE(1196)] = 85156, + [SMALL_STATE(1197)] = 85199, + [SMALL_STATE(1198)] = 85242, + [SMALL_STATE(1199)] = 85285, + [SMALL_STATE(1200)] = 85328, + [SMALL_STATE(1201)] = 85371, + [SMALL_STATE(1202)] = 85414, + [SMALL_STATE(1203)] = 85457, + [SMALL_STATE(1204)] = 85500, + [SMALL_STATE(1205)] = 85543, + [SMALL_STATE(1206)] = 85590, + [SMALL_STATE(1207)] = 85637, + [SMALL_STATE(1208)] = 85680, + [SMALL_STATE(1209)] = 85723, + [SMALL_STATE(1210)] = 85766, + [SMALL_STATE(1211)] = 85809, + [SMALL_STATE(1212)] = 85854, + [SMALL_STATE(1213)] = 85899, + [SMALL_STATE(1214)] = 85942, + [SMALL_STATE(1215)] = 85985, + [SMALL_STATE(1216)] = 86028, + [SMALL_STATE(1217)] = 86071, + [SMALL_STATE(1218)] = 86114, + [SMALL_STATE(1219)] = 86157, + [SMALL_STATE(1220)] = 86232, + [SMALL_STATE(1221)] = 86275, + [SMALL_STATE(1222)] = 86318, + [SMALL_STATE(1223)] = 86361, + [SMALL_STATE(1224)] = 86404, + [SMALL_STATE(1225)] = 86447, + [SMALL_STATE(1226)] = 86490, + [SMALL_STATE(1227)] = 86533, + [SMALL_STATE(1228)] = 86576, + [SMALL_STATE(1229)] = 86619, + [SMALL_STATE(1230)] = 86662, + [SMALL_STATE(1231)] = 86705, + [SMALL_STATE(1232)] = 86748, + [SMALL_STATE(1233)] = 86791, + [SMALL_STATE(1234)] = 86838, + [SMALL_STATE(1235)] = 86881, + [SMALL_STATE(1236)] = 86924, + [SMALL_STATE(1237)] = 86971, + [SMALL_STATE(1238)] = 87014, + [SMALL_STATE(1239)] = 87057, + [SMALL_STATE(1240)] = 87100, + [SMALL_STATE(1241)] = 87147, + [SMALL_STATE(1242)] = 87190, + [SMALL_STATE(1243)] = 87235, + [SMALL_STATE(1244)] = 87280, + [SMALL_STATE(1245)] = 87323, + [SMALL_STATE(1246)] = 87366, + [SMALL_STATE(1247)] = 87409, + [SMALL_STATE(1248)] = 87452, + [SMALL_STATE(1249)] = 87495, + [SMALL_STATE(1250)] = 87538, + [SMALL_STATE(1251)] = 87583, + [SMALL_STATE(1252)] = 87626, + [SMALL_STATE(1253)] = 87669, + [SMALL_STATE(1254)] = 87712, + [SMALL_STATE(1255)] = 87757, + [SMALL_STATE(1256)] = 87800, + [SMALL_STATE(1257)] = 87843, + [SMALL_STATE(1258)] = 87886, + [SMALL_STATE(1259)] = 87933, + [SMALL_STATE(1260)] = 87976, + [SMALL_STATE(1261)] = 88019, + [SMALL_STATE(1262)] = 88066, + [SMALL_STATE(1263)] = 88109, + [SMALL_STATE(1264)] = 88152, + [SMALL_STATE(1265)] = 88195, + [SMALL_STATE(1266)] = 88238, + [SMALL_STATE(1267)] = 88281, + [SMALL_STATE(1268)] = 88324, + [SMALL_STATE(1269)] = 88369, + [SMALL_STATE(1270)] = 88412, + [SMALL_STATE(1271)] = 88455, + [SMALL_STATE(1272)] = 88500, + [SMALL_STATE(1273)] = 88543, + [SMALL_STATE(1274)] = 88588, + [SMALL_STATE(1275)] = 88631, + [SMALL_STATE(1276)] = 88676, + [SMALL_STATE(1277)] = 88721, + [SMALL_STATE(1278)] = 88768, + [SMALL_STATE(1279)] = 88811, + [SMALL_STATE(1280)] = 88854, + [SMALL_STATE(1281)] = 88897, + [SMALL_STATE(1282)] = 88942, + [SMALL_STATE(1283)] = 88985, + [SMALL_STATE(1284)] = 89028, + [SMALL_STATE(1285)] = 89071, + [SMALL_STATE(1286)] = 89114, + [SMALL_STATE(1287)] = 89157, + [SMALL_STATE(1288)] = 89200, + [SMALL_STATE(1289)] = 89243, + [SMALL_STATE(1290)] = 89286, + [SMALL_STATE(1291)] = 89329, + [SMALL_STATE(1292)] = 89372, + [SMALL_STATE(1293)] = 89415, + [SMALL_STATE(1294)] = 89462, + [SMALL_STATE(1295)] = 89505, + [SMALL_STATE(1296)] = 89550, + [SMALL_STATE(1297)] = 89593, + [SMALL_STATE(1298)] = 89636, + [SMALL_STATE(1299)] = 89679, + [SMALL_STATE(1300)] = 89722, + [SMALL_STATE(1301)] = 89765, + [SMALL_STATE(1302)] = 89808, + [SMALL_STATE(1303)] = 89851, + [SMALL_STATE(1304)] = 89896, + [SMALL_STATE(1305)] = 89941, + [SMALL_STATE(1306)] = 89984, + [SMALL_STATE(1307)] = 90027, + [SMALL_STATE(1308)] = 90070, + [SMALL_STATE(1309)] = 90113, + [SMALL_STATE(1310)] = 90156, + [SMALL_STATE(1311)] = 90199, + [SMALL_STATE(1312)] = 90242, + [SMALL_STATE(1313)] = 90287, + [SMALL_STATE(1314)] = 90332, + [SMALL_STATE(1315)] = 90375, + [SMALL_STATE(1316)] = 90422, + [SMALL_STATE(1317)] = 90465, + [SMALL_STATE(1318)] = 90508, + [SMALL_STATE(1319)] = 90553, + [SMALL_STATE(1320)] = 90598, + [SMALL_STATE(1321)] = 90641, + [SMALL_STATE(1322)] = 90684, + [SMALL_STATE(1323)] = 90727, + [SMALL_STATE(1324)] = 90770, + [SMALL_STATE(1325)] = 90814, [SMALL_STATE(1326)] = 90866, - [SMALL_STATE(1327)] = 90908, - [SMALL_STATE(1328)] = 90954, - [SMALL_STATE(1329)] = 91014, + [SMALL_STATE(1327)] = 90924, + [SMALL_STATE(1328)] = 90980, + [SMALL_STATE(1329)] = 91032, [SMALL_STATE(1330)] = 91076, - [SMALL_STATE(1331)] = 91128, - [SMALL_STATE(1332)] = 91176, - [SMALL_STATE(1333)] = 91220, - [SMALL_STATE(1334)] = 91262, - [SMALL_STATE(1335)] = 91306, - [SMALL_STATE(1336)] = 91350, - [SMALL_STATE(1337)] = 91416, - [SMALL_STATE(1338)] = 91460, - [SMALL_STATE(1339)] = 91502, - [SMALL_STATE(1340)] = 91544, - [SMALL_STATE(1341)] = 91588, - [SMALL_STATE(1342)] = 91640, - [SMALL_STATE(1343)] = 91682, - [SMALL_STATE(1344)] = 91724, - [SMALL_STATE(1345)] = 91766, - [SMALL_STATE(1346)] = 91810, - [SMALL_STATE(1347)] = 91874, - [SMALL_STATE(1348)] = 91916, - [SMALL_STATE(1349)] = 91958, - [SMALL_STATE(1350)] = 92000, - [SMALL_STATE(1351)] = 92042, - [SMALL_STATE(1352)] = 92084, - [SMALL_STATE(1353)] = 92126, - [SMALL_STATE(1354)] = 92168, - [SMALL_STATE(1355)] = 92210, - [SMALL_STATE(1356)] = 92252, - [SMALL_STATE(1357)] = 92294, - [SMALL_STATE(1358)] = 92336, - [SMALL_STATE(1359)] = 92402, - [SMALL_STATE(1360)] = 92454, - [SMALL_STATE(1361)] = 92498, - [SMALL_STATE(1362)] = 92542, - [SMALL_STATE(1363)] = 92584, - [SMALL_STATE(1364)] = 92628, - [SMALL_STATE(1365)] = 92694, - [SMALL_STATE(1366)] = 92750, - [SMALL_STATE(1367)] = 92792, - [SMALL_STATE(1368)] = 92844, - [SMALL_STATE(1369)] = 92886, - [SMALL_STATE(1370)] = 92928, - [SMALL_STATE(1371)] = 92970, - [SMALL_STATE(1372)] = 93012, - [SMALL_STATE(1373)] = 93054, - [SMALL_STATE(1374)] = 93096, - [SMALL_STATE(1375)] = 93146, - [SMALL_STATE(1376)] = 93188, - [SMALL_STATE(1377)] = 93230, - [SMALL_STATE(1378)] = 93272, - [SMALL_STATE(1379)] = 93314, - [SMALL_STATE(1380)] = 93356, - [SMALL_STATE(1381)] = 93398, - [SMALL_STATE(1382)] = 93444, - [SMALL_STATE(1383)] = 93486, - [SMALL_STATE(1384)] = 93527, - [SMALL_STATE(1385)] = 93570, - [SMALL_STATE(1386)] = 93611, - [SMALL_STATE(1387)] = 93654, - [SMALL_STATE(1388)] = 93695, - [SMALL_STATE(1389)] = 93736, - [SMALL_STATE(1390)] = 93777, - [SMALL_STATE(1391)] = 93820, - [SMALL_STATE(1392)] = 93861, - [SMALL_STATE(1393)] = 93904, - [SMALL_STATE(1394)] = 93945, - [SMALL_STATE(1395)] = 93988, - [SMALL_STATE(1396)] = 94031, - [SMALL_STATE(1397)] = 94074, - [SMALL_STATE(1398)] = 94117, - [SMALL_STATE(1399)] = 94160, - [SMALL_STATE(1400)] = 94201, - [SMALL_STATE(1401)] = 94242, - [SMALL_STATE(1402)] = 94283, - [SMALL_STATE(1403)] = 94324, - [SMALL_STATE(1404)] = 94365, - [SMALL_STATE(1405)] = 94397, + [SMALL_STATE(1331)] = 91138, + [SMALL_STATE(1332)] = 91202, + [SMALL_STATE(1333)] = 91246, + [SMALL_STATE(1334)] = 91294, + [SMALL_STATE(1335)] = 91360, + [SMALL_STATE(1336)] = 91402, + [SMALL_STATE(1337)] = 91462, + [SMALL_STATE(1338)] = 91504, + [SMALL_STATE(1339)] = 91546, + [SMALL_STATE(1340)] = 91588, + [SMALL_STATE(1341)] = 91630, + [SMALL_STATE(1342)] = 91672, + [SMALL_STATE(1343)] = 91716, + [SMALL_STATE(1344)] = 91758, + [SMALL_STATE(1345)] = 91800, + [SMALL_STATE(1346)] = 91842, + [SMALL_STATE(1347)] = 91884, + [SMALL_STATE(1348)] = 91926, + [SMALL_STATE(1349)] = 91968, + [SMALL_STATE(1350)] = 92010, + [SMALL_STATE(1351)] = 92052, + [SMALL_STATE(1352)] = 92094, + [SMALL_STATE(1353)] = 92160, + [SMALL_STATE(1354)] = 92202, + [SMALL_STATE(1355)] = 92246, + [SMALL_STATE(1356)] = 92290, + [SMALL_STATE(1357)] = 92336, + [SMALL_STATE(1358)] = 92378, + [SMALL_STATE(1359)] = 92420, + [SMALL_STATE(1360)] = 92462, + [SMALL_STATE(1361)] = 92504, + [SMALL_STATE(1362)] = 92546, + [SMALL_STATE(1363)] = 92588, + [SMALL_STATE(1364)] = 92654, + [SMALL_STATE(1365)] = 92696, + [SMALL_STATE(1366)] = 92738, + [SMALL_STATE(1367)] = 92780, + [SMALL_STATE(1368)] = 92822, + [SMALL_STATE(1369)] = 92866, + [SMALL_STATE(1370)] = 92908, + [SMALL_STATE(1371)] = 92952, + [SMALL_STATE(1372)] = 92994, + [SMALL_STATE(1373)] = 93046, + [SMALL_STATE(1374)] = 93088, + [SMALL_STATE(1375)] = 93130, + [SMALL_STATE(1376)] = 93182, + [SMALL_STATE(1377)] = 93226, + [SMALL_STATE(1378)] = 93276, + [SMALL_STATE(1379)] = 93322, + [SMALL_STATE(1380)] = 93364, + [SMALL_STATE(1381)] = 93410, + [SMALL_STATE(1382)] = 93452, + [SMALL_STATE(1383)] = 93494, + [SMALL_STATE(1384)] = 93537, + [SMALL_STATE(1385)] = 93578, + [SMALL_STATE(1386)] = 93621, + [SMALL_STATE(1387)] = 93664, + [SMALL_STATE(1388)] = 93707, + [SMALL_STATE(1389)] = 93748, + [SMALL_STATE(1390)] = 93789, + [SMALL_STATE(1391)] = 93832, + [SMALL_STATE(1392)] = 93873, + [SMALL_STATE(1393)] = 93914, + [SMALL_STATE(1394)] = 93955, + [SMALL_STATE(1395)] = 93996, + [SMALL_STATE(1396)] = 94037, + [SMALL_STATE(1397)] = 94078, + [SMALL_STATE(1398)] = 94119, + [SMALL_STATE(1399)] = 94162, + [SMALL_STATE(1400)] = 94205, + [SMALL_STATE(1401)] = 94248, + [SMALL_STATE(1402)] = 94291, + [SMALL_STATE(1403)] = 94332, + [SMALL_STATE(1404)] = 94373, + [SMALL_STATE(1405)] = 94405, [SMALL_STATE(1406)] = 94437, [SMALL_STATE(1407)] = 94469, [SMALL_STATE(1408)] = 94501, [SMALL_STATE(1409)] = 94533, - [SMALL_STATE(1410)] = 94573, + [SMALL_STATE(1410)] = 94565, [SMALL_STATE(1411)] = 94605, - [SMALL_STATE(1412)] = 94637, - [SMALL_STATE(1413)] = 94674, - [SMALL_STATE(1414)] = 94713, - [SMALL_STATE(1415)] = 94752, - [SMALL_STATE(1416)] = 94791, - [SMALL_STATE(1417)] = 94830, - [SMALL_STATE(1418)] = 94867, - [SMALL_STATE(1419)] = 94906, - [SMALL_STATE(1420)] = 94945, - [SMALL_STATE(1421)] = 94975, - [SMALL_STATE(1422)] = 95011, - [SMALL_STATE(1423)] = 95041, - [SMALL_STATE(1424)] = 95079, - [SMALL_STATE(1425)] = 95109, - [SMALL_STATE(1426)] = 95145, - [SMALL_STATE(1427)] = 95175, - [SMALL_STATE(1428)] = 95213, - [SMALL_STATE(1429)] = 95251, - [SMALL_STATE(1430)] = 95281, - [SMALL_STATE(1431)] = 95311, - [SMALL_STATE(1432)] = 95341, - [SMALL_STATE(1433)] = 95371, - [SMALL_STATE(1434)] = 95409, - [SMALL_STATE(1435)] = 95438, - [SMALL_STATE(1436)] = 95467, - [SMALL_STATE(1437)] = 95506, - [SMALL_STATE(1438)] = 95543, - [SMALL_STATE(1439)] = 95590, - [SMALL_STATE(1440)] = 95635, - [SMALL_STATE(1441)] = 95678, - [SMALL_STATE(1442)] = 95725, - [SMALL_STATE(1443)] = 95762, - [SMALL_STATE(1444)] = 95809, - [SMALL_STATE(1445)] = 95856, - [SMALL_STATE(1446)] = 95885, - [SMALL_STATE(1447)] = 95932, - [SMALL_STATE(1448)] = 95961, - [SMALL_STATE(1449)] = 95990, - [SMALL_STATE(1450)] = 96031, - [SMALL_STATE(1451)] = 96060, - [SMALL_STATE(1452)] = 96107, - [SMALL_STATE(1453)] = 96154, - [SMALL_STATE(1454)] = 96179, - [SMALL_STATE(1455)] = 96204, - [SMALL_STATE(1456)] = 96233, - [SMALL_STATE(1457)] = 96262, - [SMALL_STATE(1458)] = 96291, - [SMALL_STATE(1459)] = 96320, - [SMALL_STATE(1460)] = 96367, - [SMALL_STATE(1461)] = 96396, - [SMALL_STATE(1462)] = 96425, - [SMALL_STATE(1463)] = 96454, - [SMALL_STATE(1464)] = 96495, - [SMALL_STATE(1465)] = 96520, - [SMALL_STATE(1466)] = 96545, - [SMALL_STATE(1467)] = 96574, - [SMALL_STATE(1468)] = 96621, - [SMALL_STATE(1469)] = 96668, - [SMALL_STATE(1470)] = 96697, - [SMALL_STATE(1471)] = 96726, - [SMALL_STATE(1472)] = 96755, - [SMALL_STATE(1473)] = 96784, - [SMALL_STATE(1474)] = 96831, - [SMALL_STATE(1475)] = 96860, - [SMALL_STATE(1476)] = 96897, - [SMALL_STATE(1477)] = 96934, - [SMALL_STATE(1478)] = 96963, - [SMALL_STATE(1479)] = 96992, - [SMALL_STATE(1480)] = 97021, - [SMALL_STATE(1481)] = 97050, - [SMALL_STATE(1482)] = 97079, - [SMALL_STATE(1483)] = 97103, - [SMALL_STATE(1484)] = 97129, - [SMALL_STATE(1485)] = 97175, - [SMALL_STATE(1486)] = 97221, - [SMALL_STATE(1487)] = 97263, - [SMALL_STATE(1488)] = 97287, - [SMALL_STATE(1489)] = 97333, - [SMALL_STATE(1490)] = 97361, - [SMALL_STATE(1491)] = 97407, - [SMALL_STATE(1492)] = 97431, - [SMALL_STATE(1493)] = 97477, - [SMALL_STATE(1494)] = 97523, - [SMALL_STATE(1495)] = 97555, - [SMALL_STATE(1496)] = 97587, - [SMALL_STATE(1497)] = 97633, - [SMALL_STATE(1498)] = 97679, - [SMALL_STATE(1499)] = 97709, - [SMALL_STATE(1500)] = 97755, - [SMALL_STATE(1501)] = 97783, - [SMALL_STATE(1502)] = 97829, - [SMALL_STATE(1503)] = 97875, - [SMALL_STATE(1504)] = 97921, - [SMALL_STATE(1505)] = 97945, - [SMALL_STATE(1506)] = 97991, - [SMALL_STATE(1507)] = 98024, - [SMALL_STATE(1508)] = 98067, - [SMALL_STATE(1509)] = 98100, - [SMALL_STATE(1510)] = 98140, - [SMALL_STATE(1511)] = 98180, - [SMALL_STATE(1512)] = 98216, - [SMALL_STATE(1513)] = 98246, - [SMALL_STATE(1514)] = 98286, - [SMALL_STATE(1515)] = 98312, - [SMALL_STATE(1516)] = 98352, - [SMALL_STATE(1517)] = 98389, - [SMALL_STATE(1518)] = 98426, - [SMALL_STATE(1519)] = 98457, - [SMALL_STATE(1520)] = 98484, - [SMALL_STATE(1521)] = 98511, - [SMALL_STATE(1522)] = 98542, - [SMALL_STATE(1523)] = 98564, - [SMALL_STATE(1524)] = 98586, - [SMALL_STATE(1525)] = 98616, - [SMALL_STATE(1526)] = 98638, - [SMALL_STATE(1527)] = 98657, - [SMALL_STATE(1528)] = 98698, - [SMALL_STATE(1529)] = 98739, - [SMALL_STATE(1530)] = 98758, - [SMALL_STATE(1531)] = 98777, - [SMALL_STATE(1532)] = 98818, - [SMALL_STATE(1533)] = 98859, - [SMALL_STATE(1534)] = 98900, - [SMALL_STATE(1535)] = 98941, - [SMALL_STATE(1536)] = 98982, - [SMALL_STATE(1537)] = 99007, - [SMALL_STATE(1538)] = 99048, - [SMALL_STATE(1539)] = 99086, - [SMALL_STATE(1540)] = 99118, - [SMALL_STATE(1541)] = 99142, - [SMALL_STATE(1542)] = 99166, - [SMALL_STATE(1543)] = 99190, - [SMALL_STATE(1544)] = 99214, - [SMALL_STATE(1545)] = 99252, - [SMALL_STATE(1546)] = 99290, - [SMALL_STATE(1547)] = 99312, - [SMALL_STATE(1548)] = 99350, - [SMALL_STATE(1549)] = 99388, - [SMALL_STATE(1550)] = 99416, - [SMALL_STATE(1551)] = 99454, - [SMALL_STATE(1552)] = 99480, - [SMALL_STATE(1553)] = 99518, - [SMALL_STATE(1554)] = 99556, - [SMALL_STATE(1555)] = 99594, - [SMALL_STATE(1556)] = 99622, - [SMALL_STATE(1557)] = 99660, - [SMALL_STATE(1558)] = 99698, - [SMALL_STATE(1559)] = 99724, - [SMALL_STATE(1560)] = 99762, - [SMALL_STATE(1561)] = 99800, - [SMALL_STATE(1562)] = 99826, - [SMALL_STATE(1563)] = 99864, - [SMALL_STATE(1564)] = 99888, - [SMALL_STATE(1565)] = 99926, - [SMALL_STATE(1566)] = 99964, - [SMALL_STATE(1567)] = 99988, - [SMALL_STATE(1568)] = 100026, - [SMALL_STATE(1569)] = 100064, - [SMALL_STATE(1570)] = 100102, - [SMALL_STATE(1571)] = 100130, - [SMALL_STATE(1572)] = 100168, - [SMALL_STATE(1573)] = 100206, - [SMALL_STATE(1574)] = 100244, - [SMALL_STATE(1575)] = 100264, - [SMALL_STATE(1576)] = 100302, - [SMALL_STATE(1577)] = 100340, - [SMALL_STATE(1578)] = 100378, - [SMALL_STATE(1579)] = 100403, - [SMALL_STATE(1580)] = 100430, - [SMALL_STATE(1581)] = 100449, - [SMALL_STATE(1582)] = 100474, - [SMALL_STATE(1583)] = 100503, - [SMALL_STATE(1584)] = 100532, - [SMALL_STATE(1585)] = 100561, - [SMALL_STATE(1586)] = 100590, - [SMALL_STATE(1587)] = 100615, - [SMALL_STATE(1588)] = 100640, - [SMALL_STATE(1589)] = 100669, - [SMALL_STATE(1590)] = 100698, - [SMALL_STATE(1591)] = 100717, - [SMALL_STATE(1592)] = 100746, - [SMALL_STATE(1593)] = 100775, - [SMALL_STATE(1594)] = 100792, - [SMALL_STATE(1595)] = 100821, - [SMALL_STATE(1596)] = 100850, - [SMALL_STATE(1597)] = 100879, - [SMALL_STATE(1598)] = 100908, - [SMALL_STATE(1599)] = 100935, - [SMALL_STATE(1600)] = 100964, - [SMALL_STATE(1601)] = 100993, - [SMALL_STATE(1602)] = 101010, - [SMALL_STATE(1603)] = 101039, - [SMALL_STATE(1604)] = 101068, - [SMALL_STATE(1605)] = 101097, - [SMALL_STATE(1606)] = 101126, - [SMALL_STATE(1607)] = 101145, - [SMALL_STATE(1608)] = 101162, - [SMALL_STATE(1609)] = 101183, - [SMALL_STATE(1610)] = 101212, - [SMALL_STATE(1611)] = 101235, - [SMALL_STATE(1612)] = 101252, - [SMALL_STATE(1613)] = 101281, - [SMALL_STATE(1614)] = 101298, - [SMALL_STATE(1615)] = 101323, - [SMALL_STATE(1616)] = 101340, - [SMALL_STATE(1617)] = 101369, - [SMALL_STATE(1618)] = 101388, - [SMALL_STATE(1619)] = 101415, - [SMALL_STATE(1620)] = 101437, - [SMALL_STATE(1621)] = 101455, - [SMALL_STATE(1622)] = 101477, - [SMALL_STATE(1623)] = 101501, - [SMALL_STATE(1624)] = 101521, - [SMALL_STATE(1625)] = 101537, - [SMALL_STATE(1626)] = 101561, - [SMALL_STATE(1627)] = 101585, - [SMALL_STATE(1628)] = 101609, - [SMALL_STATE(1629)] = 101633, - [SMALL_STATE(1630)] = 101653, - [SMALL_STATE(1631)] = 101671, - [SMALL_STATE(1632)] = 101687, - [SMALL_STATE(1633)] = 101707, - [SMALL_STATE(1634)] = 101729, - [SMALL_STATE(1635)] = 101753, - [SMALL_STATE(1636)] = 101769, - [SMALL_STATE(1637)] = 101793, - [SMALL_STATE(1638)] = 101809, - [SMALL_STATE(1639)] = 101825, - [SMALL_STATE(1640)] = 101849, - [SMALL_STATE(1641)] = 101871, - [SMALL_STATE(1642)] = 101889, - [SMALL_STATE(1643)] = 101909, - [SMALL_STATE(1644)] = 101927, - [SMALL_STATE(1645)] = 101951, - [SMALL_STATE(1646)] = 101981, - [SMALL_STATE(1647)] = 102005, - [SMALL_STATE(1648)] = 102029, - [SMALL_STATE(1649)] = 102053, - [SMALL_STATE(1650)] = 102077, - [SMALL_STATE(1651)] = 102101, - [SMALL_STATE(1652)] = 102123, - [SMALL_STATE(1653)] = 102139, - [SMALL_STATE(1654)] = 102157, - [SMALL_STATE(1655)] = 102181, - [SMALL_STATE(1656)] = 102199, - [SMALL_STATE(1657)] = 102223, - [SMALL_STATE(1658)] = 102243, - [SMALL_STATE(1659)] = 102272, - [SMALL_STATE(1660)] = 102297, - [SMALL_STATE(1661)] = 102320, - [SMALL_STATE(1662)] = 102345, - [SMALL_STATE(1663)] = 102370, - [SMALL_STATE(1664)] = 102391, - [SMALL_STATE(1665)] = 102410, - [SMALL_STATE(1666)] = 102437, - [SMALL_STATE(1667)] = 102466, - [SMALL_STATE(1668)] = 102483, - [SMALL_STATE(1669)] = 102506, - [SMALL_STATE(1670)] = 102529, - [SMALL_STATE(1671)] = 102552, - [SMALL_STATE(1672)] = 102577, - [SMALL_STATE(1673)] = 102602, - [SMALL_STATE(1674)] = 102629, - [SMALL_STATE(1675)] = 102654, - [SMALL_STATE(1676)] = 102683, - [SMALL_STATE(1677)] = 102700, - [SMALL_STATE(1678)] = 102717, - [SMALL_STATE(1679)] = 102746, - [SMALL_STATE(1680)] = 102767, - [SMALL_STATE(1681)] = 102788, - [SMALL_STATE(1682)] = 102817, - [SMALL_STATE(1683)] = 102842, - [SMALL_STATE(1684)] = 102863, - [SMALL_STATE(1685)] = 102884, - [SMALL_STATE(1686)] = 102901, - [SMALL_STATE(1687)] = 102918, - [SMALL_STATE(1688)] = 102939, - [SMALL_STATE(1689)] = 102956, - [SMALL_STATE(1690)] = 102981, - [SMALL_STATE(1691)] = 103010, - [SMALL_STATE(1692)] = 103033, - [SMALL_STATE(1693)] = 103054, - [SMALL_STATE(1694)] = 103075, - [SMALL_STATE(1695)] = 103096, - [SMALL_STATE(1696)] = 103113, - [SMALL_STATE(1697)] = 103132, - [SMALL_STATE(1698)] = 103159, - [SMALL_STATE(1699)] = 103182, - [SMALL_STATE(1700)] = 103205, - [SMALL_STATE(1701)] = 103232, - [SMALL_STATE(1702)] = 103259, - [SMALL_STATE(1703)] = 103284, - [SMALL_STATE(1704)] = 103309, - [SMALL_STATE(1705)] = 103338, - [SMALL_STATE(1706)] = 103365, - [SMALL_STATE(1707)] = 103392, - [SMALL_STATE(1708)] = 103417, - [SMALL_STATE(1709)] = 103442, - [SMALL_STATE(1710)] = 103465, - [SMALL_STATE(1711)] = 103482, - [SMALL_STATE(1712)] = 103507, - [SMALL_STATE(1713)] = 103532, - [SMALL_STATE(1714)] = 103557, - [SMALL_STATE(1715)] = 103582, - [SMALL_STATE(1716)] = 103599, - [SMALL_STATE(1717)] = 103622, - [SMALL_STATE(1718)] = 103651, - [SMALL_STATE(1719)] = 103678, - [SMALL_STATE(1720)] = 103703, - [SMALL_STATE(1721)] = 103722, - [SMALL_STATE(1722)] = 103739, - [SMALL_STATE(1723)] = 103760, - [SMALL_STATE(1724)] = 103781, - [SMALL_STATE(1725)] = 103804, - [SMALL_STATE(1726)] = 103829, - [SMALL_STATE(1727)] = 103858, - [SMALL_STATE(1728)] = 103881, - [SMALL_STATE(1729)] = 103898, - [SMALL_STATE(1730)] = 103919, - [SMALL_STATE(1731)] = 103940, - [SMALL_STATE(1732)] = 103969, - [SMALL_STATE(1733)] = 103986, - [SMALL_STATE(1734)] = 104011, - [SMALL_STATE(1735)] = 104034, - [SMALL_STATE(1736)] = 104057, - [SMALL_STATE(1737)] = 104074, - [SMALL_STATE(1738)] = 104095, - [SMALL_STATE(1739)] = 104121, - [SMALL_STATE(1740)] = 104143, - [SMALL_STATE(1741)] = 104159, - [SMALL_STATE(1742)] = 104185, - [SMALL_STATE(1743)] = 104205, - [SMALL_STATE(1744)] = 104221, - [SMALL_STATE(1745)] = 104243, - [SMALL_STATE(1746)] = 104269, - [SMALL_STATE(1747)] = 104295, - [SMALL_STATE(1748)] = 104321, - [SMALL_STATE(1749)] = 104343, - [SMALL_STATE(1750)] = 104367, - [SMALL_STATE(1751)] = 104391, - [SMALL_STATE(1752)] = 104413, - [SMALL_STATE(1753)] = 104439, - [SMALL_STATE(1754)] = 104461, - [SMALL_STATE(1755)] = 104487, - [SMALL_STATE(1756)] = 104507, - [SMALL_STATE(1757)] = 104529, - [SMALL_STATE(1758)] = 104555, - [SMALL_STATE(1759)] = 104577, - [SMALL_STATE(1760)] = 104601, - [SMALL_STATE(1761)] = 104617, - [SMALL_STATE(1762)] = 104643, - [SMALL_STATE(1763)] = 104665, - [SMALL_STATE(1764)] = 104687, - [SMALL_STATE(1765)] = 104711, - [SMALL_STATE(1766)] = 104737, - [SMALL_STATE(1767)] = 104759, - [SMALL_STATE(1768)] = 104781, - [SMALL_STATE(1769)] = 104803, - [SMALL_STATE(1770)] = 104825, - [SMALL_STATE(1771)] = 104845, - [SMALL_STATE(1772)] = 104871, - [SMALL_STATE(1773)] = 104897, - [SMALL_STATE(1774)] = 104923, - [SMALL_STATE(1775)] = 104949, - [SMALL_STATE(1776)] = 104971, - [SMALL_STATE(1777)] = 104992, - [SMALL_STATE(1778)] = 105013, - [SMALL_STATE(1779)] = 105030, - [SMALL_STATE(1780)] = 105051, - [SMALL_STATE(1781)] = 105074, - [SMALL_STATE(1782)] = 105087, - [SMALL_STATE(1783)] = 105100, - [SMALL_STATE(1784)] = 105119, - [SMALL_STATE(1785)] = 105140, - [SMALL_STATE(1786)] = 105161, - [SMALL_STATE(1787)] = 105182, - [SMALL_STATE(1788)] = 105203, - [SMALL_STATE(1789)] = 105224, - [SMALL_STATE(1790)] = 105245, - [SMALL_STATE(1791)] = 105268, - [SMALL_STATE(1792)] = 105289, - [SMALL_STATE(1793)] = 105306, - [SMALL_STATE(1794)] = 105323, - [SMALL_STATE(1795)] = 105336, - [SMALL_STATE(1796)] = 105349, - [SMALL_STATE(1797)] = 105370, - [SMALL_STATE(1798)] = 105393, - [SMALL_STATE(1799)] = 105416, - [SMALL_STATE(1800)] = 105429, - [SMALL_STATE(1801)] = 105442, - [SMALL_STATE(1802)] = 105459, - [SMALL_STATE(1803)] = 105480, - [SMALL_STATE(1804)] = 105497, - [SMALL_STATE(1805)] = 105514, - [SMALL_STATE(1806)] = 105535, - [SMALL_STATE(1807)] = 105556, - [SMALL_STATE(1808)] = 105573, - [SMALL_STATE(1809)] = 105590, - [SMALL_STATE(1810)] = 105603, - [SMALL_STATE(1811)] = 105624, - [SMALL_STATE(1812)] = 105645, - [SMALL_STATE(1813)] = 105662, - [SMALL_STATE(1814)] = 105683, - [SMALL_STATE(1815)] = 105704, - [SMALL_STATE(1816)] = 105721, - [SMALL_STATE(1817)] = 105738, - [SMALL_STATE(1818)] = 105759, - [SMALL_STATE(1819)] = 105772, - [SMALL_STATE(1820)] = 105793, - [SMALL_STATE(1821)] = 105806, - [SMALL_STATE(1822)] = 105823, - [SMALL_STATE(1823)] = 105840, - [SMALL_STATE(1824)] = 105857, - [SMALL_STATE(1825)] = 105878, - [SMALL_STATE(1826)] = 105895, - [SMALL_STATE(1827)] = 105918, - [SMALL_STATE(1828)] = 105939, - [SMALL_STATE(1829)] = 105960, - [SMALL_STATE(1830)] = 105981, - [SMALL_STATE(1831)] = 106002, - [SMALL_STATE(1832)] = 106023, - [SMALL_STATE(1833)] = 106044, - [SMALL_STATE(1834)] = 106057, - [SMALL_STATE(1835)] = 106076, - [SMALL_STATE(1836)] = 106089, - [SMALL_STATE(1837)] = 106102, - [SMALL_STATE(1838)] = 106119, - [SMALL_STATE(1839)] = 106140, - [SMALL_STATE(1840)] = 106157, - [SMALL_STATE(1841)] = 106174, - [SMALL_STATE(1842)] = 106195, - [SMALL_STATE(1843)] = 106212, - [SMALL_STATE(1844)] = 106229, - [SMALL_STATE(1845)] = 106250, - [SMALL_STATE(1846)] = 106271, - [SMALL_STATE(1847)] = 106292, - [SMALL_STATE(1848)] = 106315, - [SMALL_STATE(1849)] = 106328, - [SMALL_STATE(1850)] = 106351, - [SMALL_STATE(1851)] = 106368, - [SMALL_STATE(1852)] = 106381, - [SMALL_STATE(1853)] = 106398, - [SMALL_STATE(1854)] = 106415, - [SMALL_STATE(1855)] = 106432, - [SMALL_STATE(1856)] = 106449, - [SMALL_STATE(1857)] = 106472, - [SMALL_STATE(1858)] = 106495, - [SMALL_STATE(1859)] = 106512, - [SMALL_STATE(1860)] = 106529, - [SMALL_STATE(1861)] = 106548, - [SMALL_STATE(1862)] = 106567, - [SMALL_STATE(1863)] = 106584, - [SMALL_STATE(1864)] = 106601, - [SMALL_STATE(1865)] = 106618, - [SMALL_STATE(1866)] = 106635, - [SMALL_STATE(1867)] = 106647, - [SMALL_STATE(1868)] = 106665, - [SMALL_STATE(1869)] = 106685, - [SMALL_STATE(1870)] = 106697, - [SMALL_STATE(1871)] = 106715, - [SMALL_STATE(1872)] = 106731, - [SMALL_STATE(1873)] = 106743, - [SMALL_STATE(1874)] = 106763, - [SMALL_STATE(1875)] = 106783, - [SMALL_STATE(1876)] = 106803, - [SMALL_STATE(1877)] = 106815, - [SMALL_STATE(1878)] = 106827, - [SMALL_STATE(1879)] = 106839, - [SMALL_STATE(1880)] = 106859, - [SMALL_STATE(1881)] = 106879, - [SMALL_STATE(1882)] = 106899, - [SMALL_STATE(1883)] = 106911, - [SMALL_STATE(1884)] = 106927, - [SMALL_STATE(1885)] = 106939, - [SMALL_STATE(1886)] = 106951, - [SMALL_STATE(1887)] = 106963, - [SMALL_STATE(1888)] = 106975, - [SMALL_STATE(1889)] = 106987, - [SMALL_STATE(1890)] = 106999, - [SMALL_STATE(1891)] = 107011, - [SMALL_STATE(1892)] = 107031, - [SMALL_STATE(1893)] = 107043, - [SMALL_STATE(1894)] = 107055, - [SMALL_STATE(1895)] = 107073, - [SMALL_STATE(1896)] = 107093, - [SMALL_STATE(1897)] = 107113, - [SMALL_STATE(1898)] = 107133, - [SMALL_STATE(1899)] = 107149, - [SMALL_STATE(1900)] = 107161, - [SMALL_STATE(1901)] = 107181, - [SMALL_STATE(1902)] = 107201, - [SMALL_STATE(1903)] = 107213, - [SMALL_STATE(1904)] = 107233, - [SMALL_STATE(1905)] = 107247, - [SMALL_STATE(1906)] = 107267, - [SMALL_STATE(1907)] = 107279, - [SMALL_STATE(1908)] = 107291, - [SMALL_STATE(1909)] = 107303, - [SMALL_STATE(1910)] = 107323, - [SMALL_STATE(1911)] = 107337, - [SMALL_STATE(1912)] = 107357, - [SMALL_STATE(1913)] = 107371, - [SMALL_STATE(1914)] = 107391, - [SMALL_STATE(1915)] = 107411, - [SMALL_STATE(1916)] = 107431, - [SMALL_STATE(1917)] = 107447, - [SMALL_STATE(1918)] = 107467, - [SMALL_STATE(1919)] = 107487, - [SMALL_STATE(1920)] = 107507, - [SMALL_STATE(1921)] = 107527, - [SMALL_STATE(1922)] = 107539, - [SMALL_STATE(1923)] = 107559, - [SMALL_STATE(1924)] = 107579, - [SMALL_STATE(1925)] = 107599, - [SMALL_STATE(1926)] = 107611, - [SMALL_STATE(1927)] = 107623, - [SMALL_STATE(1928)] = 107635, - [SMALL_STATE(1929)] = 107653, - [SMALL_STATE(1930)] = 107667, - [SMALL_STATE(1931)] = 107679, - [SMALL_STATE(1932)] = 107695, - [SMALL_STATE(1933)] = 107711, - [SMALL_STATE(1934)] = 107731, - [SMALL_STATE(1935)] = 107749, - [SMALL_STATE(1936)] = 107761, - [SMALL_STATE(1937)] = 107781, - [SMALL_STATE(1938)] = 107799, - [SMALL_STATE(1939)] = 107811, - [SMALL_STATE(1940)] = 107823, - [SMALL_STATE(1941)] = 107841, - [SMALL_STATE(1942)] = 107853, - [SMALL_STATE(1943)] = 107865, - [SMALL_STATE(1944)] = 107885, - [SMALL_STATE(1945)] = 107903, - [SMALL_STATE(1946)] = 107919, - [SMALL_STATE(1947)] = 107939, - [SMALL_STATE(1948)] = 107951, - [SMALL_STATE(1949)] = 107969, - [SMALL_STATE(1950)] = 107987, - [SMALL_STATE(1951)] = 108005, - [SMALL_STATE(1952)] = 108025, - [SMALL_STATE(1953)] = 108039, - [SMALL_STATE(1954)] = 108053, - [SMALL_STATE(1955)] = 108073, - [SMALL_STATE(1956)] = 108093, - [SMALL_STATE(1957)] = 108113, - [SMALL_STATE(1958)] = 108128, - [SMALL_STATE(1959)] = 108145, - [SMALL_STATE(1960)] = 108160, - [SMALL_STATE(1961)] = 108175, - [SMALL_STATE(1962)] = 108190, - [SMALL_STATE(1963)] = 108205, - [SMALL_STATE(1964)] = 108220, - [SMALL_STATE(1965)] = 108235, - [SMALL_STATE(1966)] = 108250, - [SMALL_STATE(1967)] = 108265, - [SMALL_STATE(1968)] = 108282, - [SMALL_STATE(1969)] = 108297, - [SMALL_STATE(1970)] = 108312, - [SMALL_STATE(1971)] = 108329, - [SMALL_STATE(1972)] = 108344, - [SMALL_STATE(1973)] = 108359, - [SMALL_STATE(1974)] = 108374, - [SMALL_STATE(1975)] = 108391, - [SMALL_STATE(1976)] = 108406, - [SMALL_STATE(1977)] = 108423, - [SMALL_STATE(1978)] = 108440, - [SMALL_STATE(1979)] = 108457, - [SMALL_STATE(1980)] = 108474, - [SMALL_STATE(1981)] = 108487, - [SMALL_STATE(1982)] = 108504, - [SMALL_STATE(1983)] = 108521, - [SMALL_STATE(1984)] = 108536, - [SMALL_STATE(1985)] = 108551, - [SMALL_STATE(1986)] = 108564, - [SMALL_STATE(1987)] = 108581, - [SMALL_STATE(1988)] = 108596, - [SMALL_STATE(1989)] = 108611, - [SMALL_STATE(1990)] = 108626, - [SMALL_STATE(1991)] = 108641, - [SMALL_STATE(1992)] = 108656, - [SMALL_STATE(1993)] = 108671, - [SMALL_STATE(1994)] = 108682, - [SMALL_STATE(1995)] = 108695, - [SMALL_STATE(1996)] = 108712, - [SMALL_STATE(1997)] = 108729, - [SMALL_STATE(1998)] = 108746, - [SMALL_STATE(1999)] = 108763, - [SMALL_STATE(2000)] = 108780, - [SMALL_STATE(2001)] = 108795, - [SMALL_STATE(2002)] = 108808, - [SMALL_STATE(2003)] = 108823, - [SMALL_STATE(2004)] = 108840, - [SMALL_STATE(2005)] = 108855, - [SMALL_STATE(2006)] = 108869, - [SMALL_STATE(2007)] = 108883, - [SMALL_STATE(2008)] = 108897, - [SMALL_STATE(2009)] = 108911, - [SMALL_STATE(2010)] = 108925, - [SMALL_STATE(2011)] = 108939, - [SMALL_STATE(2012)] = 108953, - [SMALL_STATE(2013)] = 108967, - [SMALL_STATE(2014)] = 108981, - [SMALL_STATE(2015)] = 108995, - [SMALL_STATE(2016)] = 109009, - [SMALL_STATE(2017)] = 109023, - [SMALL_STATE(2018)] = 109037, - [SMALL_STATE(2019)] = 109049, - [SMALL_STATE(2020)] = 109063, - [SMALL_STATE(2021)] = 109077, - [SMALL_STATE(2022)] = 109091, - [SMALL_STATE(2023)] = 109105, - [SMALL_STATE(2024)] = 109119, - [SMALL_STATE(2025)] = 109133, - [SMALL_STATE(2026)] = 109147, - [SMALL_STATE(2027)] = 109159, - [SMALL_STATE(2028)] = 109169, - [SMALL_STATE(2029)] = 109183, - [SMALL_STATE(2030)] = 109197, - [SMALL_STATE(2031)] = 109211, - [SMALL_STATE(2032)] = 109225, - [SMALL_STATE(2033)] = 109239, - [SMALL_STATE(2034)] = 109253, - [SMALL_STATE(2035)] = 109263, - [SMALL_STATE(2036)] = 109277, - [SMALL_STATE(2037)] = 109291, - [SMALL_STATE(2038)] = 109305, - [SMALL_STATE(2039)] = 109319, - [SMALL_STATE(2040)] = 109333, - [SMALL_STATE(2041)] = 109347, - [SMALL_STATE(2042)] = 109361, - [SMALL_STATE(2043)] = 109375, - [SMALL_STATE(2044)] = 109389, - [SMALL_STATE(2045)] = 109403, - [SMALL_STATE(2046)] = 109417, - [SMALL_STATE(2047)] = 109431, - [SMALL_STATE(2048)] = 109445, - [SMALL_STATE(2049)] = 109459, - [SMALL_STATE(2050)] = 109473, - [SMALL_STATE(2051)] = 109485, - [SMALL_STATE(2052)] = 109499, - [SMALL_STATE(2053)] = 109513, - [SMALL_STATE(2054)] = 109527, - [SMALL_STATE(2055)] = 109541, - [SMALL_STATE(2056)] = 109555, - [SMALL_STATE(2057)] = 109569, - [SMALL_STATE(2058)] = 109583, - [SMALL_STATE(2059)] = 109597, - [SMALL_STATE(2060)] = 109611, - [SMALL_STATE(2061)] = 109625, - [SMALL_STATE(2062)] = 109639, - [SMALL_STATE(2063)] = 109653, - [SMALL_STATE(2064)] = 109665, - [SMALL_STATE(2065)] = 109679, - [SMALL_STATE(2066)] = 109693, - [SMALL_STATE(2067)] = 109707, - [SMALL_STATE(2068)] = 109721, - [SMALL_STATE(2069)] = 109735, - [SMALL_STATE(2070)] = 109749, - [SMALL_STATE(2071)] = 109763, - [SMALL_STATE(2072)] = 109777, - [SMALL_STATE(2073)] = 109789, - [SMALL_STATE(2074)] = 109803, - [SMALL_STATE(2075)] = 109817, - [SMALL_STATE(2076)] = 109831, - [SMALL_STATE(2077)] = 109845, - [SMALL_STATE(2078)] = 109859, - [SMALL_STATE(2079)] = 109873, - [SMALL_STATE(2080)] = 109887, - [SMALL_STATE(2081)] = 109901, - [SMALL_STATE(2082)] = 109915, - [SMALL_STATE(2083)] = 109929, - [SMALL_STATE(2084)] = 109943, - [SMALL_STATE(2085)] = 109957, - [SMALL_STATE(2086)] = 109971, - [SMALL_STATE(2087)] = 109985, - [SMALL_STATE(2088)] = 109999, - [SMALL_STATE(2089)] = 110013, - [SMALL_STATE(2090)] = 110023, - [SMALL_STATE(2091)] = 110037, - [SMALL_STATE(2092)] = 110051, - [SMALL_STATE(2093)] = 110065, - [SMALL_STATE(2094)] = 110079, - [SMALL_STATE(2095)] = 110091, - [SMALL_STATE(2096)] = 110105, - [SMALL_STATE(2097)] = 110119, - [SMALL_STATE(2098)] = 110133, - [SMALL_STATE(2099)] = 110147, - [SMALL_STATE(2100)] = 110157, - [SMALL_STATE(2101)] = 110171, - [SMALL_STATE(2102)] = 110185, - [SMALL_STATE(2103)] = 110199, - [SMALL_STATE(2104)] = 110213, - [SMALL_STATE(2105)] = 110227, - [SMALL_STATE(2106)] = 110241, - [SMALL_STATE(2107)] = 110255, - [SMALL_STATE(2108)] = 110269, - [SMALL_STATE(2109)] = 110283, - [SMALL_STATE(2110)] = 110297, - [SMALL_STATE(2111)] = 110309, - [SMALL_STATE(2112)] = 110323, - [SMALL_STATE(2113)] = 110337, - [SMALL_STATE(2114)] = 110351, - [SMALL_STATE(2115)] = 110365, - [SMALL_STATE(2116)] = 110379, - [SMALL_STATE(2117)] = 110393, - [SMALL_STATE(2118)] = 110407, - [SMALL_STATE(2119)] = 110421, - [SMALL_STATE(2120)] = 110435, - [SMALL_STATE(2121)] = 110449, - [SMALL_STATE(2122)] = 110459, - [SMALL_STATE(2123)] = 110473, - [SMALL_STATE(2124)] = 110487, - [SMALL_STATE(2125)] = 110501, - [SMALL_STATE(2126)] = 110515, - [SMALL_STATE(2127)] = 110525, - [SMALL_STATE(2128)] = 110539, - [SMALL_STATE(2129)] = 110553, - [SMALL_STATE(2130)] = 110563, - [SMALL_STATE(2131)] = 110577, - [SMALL_STATE(2132)] = 110591, - [SMALL_STATE(2133)] = 110603, - [SMALL_STATE(2134)] = 110617, - [SMALL_STATE(2135)] = 110631, - [SMALL_STATE(2136)] = 110645, - [SMALL_STATE(2137)] = 110659, - [SMALL_STATE(2138)] = 110673, - [SMALL_STATE(2139)] = 110687, - [SMALL_STATE(2140)] = 110699, - [SMALL_STATE(2141)] = 110713, - [SMALL_STATE(2142)] = 110725, - [SMALL_STATE(2143)] = 110739, - [SMALL_STATE(2144)] = 110753, - [SMALL_STATE(2145)] = 110767, - [SMALL_STATE(2146)] = 110781, - [SMALL_STATE(2147)] = 110795, - [SMALL_STATE(2148)] = 110809, - [SMALL_STATE(2149)] = 110823, - [SMALL_STATE(2150)] = 110837, - [SMALL_STATE(2151)] = 110851, - [SMALL_STATE(2152)] = 110865, - [SMALL_STATE(2153)] = 110879, - [SMALL_STATE(2154)] = 110891, - [SMALL_STATE(2155)] = 110905, - [SMALL_STATE(2156)] = 110915, - [SMALL_STATE(2157)] = 110929, - [SMALL_STATE(2158)] = 110943, - [SMALL_STATE(2159)] = 110957, - [SMALL_STATE(2160)] = 110969, - [SMALL_STATE(2161)] = 110983, - [SMALL_STATE(2162)] = 110997, - [SMALL_STATE(2163)] = 111009, - [SMALL_STATE(2164)] = 111023, - [SMALL_STATE(2165)] = 111037, - [SMALL_STATE(2166)] = 111051, - [SMALL_STATE(2167)] = 111065, - [SMALL_STATE(2168)] = 111079, - [SMALL_STATE(2169)] = 111091, - [SMALL_STATE(2170)] = 111105, - [SMALL_STATE(2171)] = 111119, - [SMALL_STATE(2172)] = 111133, - [SMALL_STATE(2173)] = 111147, - [SMALL_STATE(2174)] = 111157, - [SMALL_STATE(2175)] = 111171, - [SMALL_STATE(2176)] = 111185, - [SMALL_STATE(2177)] = 111197, - [SMALL_STATE(2178)] = 111211, - [SMALL_STATE(2179)] = 111225, - [SMALL_STATE(2180)] = 111239, - [SMALL_STATE(2181)] = 111253, - [SMALL_STATE(2182)] = 111263, - [SMALL_STATE(2183)] = 111277, - [SMALL_STATE(2184)] = 111287, - [SMALL_STATE(2185)] = 111299, - [SMALL_STATE(2186)] = 111313, - [SMALL_STATE(2187)] = 111327, - [SMALL_STATE(2188)] = 111341, - [SMALL_STATE(2189)] = 111355, - [SMALL_STATE(2190)] = 111367, - [SMALL_STATE(2191)] = 111381, - [SMALL_STATE(2192)] = 111395, - [SMALL_STATE(2193)] = 111409, - [SMALL_STATE(2194)] = 111423, - [SMALL_STATE(2195)] = 111437, - [SMALL_STATE(2196)] = 111451, - [SMALL_STATE(2197)] = 111465, - [SMALL_STATE(2198)] = 111479, - [SMALL_STATE(2199)] = 111493, - [SMALL_STATE(2200)] = 111507, - [SMALL_STATE(2201)] = 111521, - [SMALL_STATE(2202)] = 111535, - [SMALL_STATE(2203)] = 111549, - [SMALL_STATE(2204)] = 111563, - [SMALL_STATE(2205)] = 111577, - [SMALL_STATE(2206)] = 111591, - [SMALL_STATE(2207)] = 111605, - [SMALL_STATE(2208)] = 111619, - [SMALL_STATE(2209)] = 111633, - [SMALL_STATE(2210)] = 111647, - [SMALL_STATE(2211)] = 111661, - [SMALL_STATE(2212)] = 111675, - [SMALL_STATE(2213)] = 111689, - [SMALL_STATE(2214)] = 111701, - [SMALL_STATE(2215)] = 111715, - [SMALL_STATE(2216)] = 111729, - [SMALL_STATE(2217)] = 111743, - [SMALL_STATE(2218)] = 111757, - [SMALL_STATE(2219)] = 111771, - [SMALL_STATE(2220)] = 111783, - [SMALL_STATE(2221)] = 111797, - [SMALL_STATE(2222)] = 111811, - [SMALL_STATE(2223)] = 111825, - [SMALL_STATE(2224)] = 111837, - [SMALL_STATE(2225)] = 111851, - [SMALL_STATE(2226)] = 111865, - [SMALL_STATE(2227)] = 111877, - [SMALL_STATE(2228)] = 111891, - [SMALL_STATE(2229)] = 111902, - [SMALL_STATE(2230)] = 111911, - [SMALL_STATE(2231)] = 111922, - [SMALL_STATE(2232)] = 111931, - [SMALL_STATE(2233)] = 111942, - [SMALL_STATE(2234)] = 111953, - [SMALL_STATE(2235)] = 111964, - [SMALL_STATE(2236)] = 111973, - [SMALL_STATE(2237)] = 111984, - [SMALL_STATE(2238)] = 111993, - [SMALL_STATE(2239)] = 112002, - [SMALL_STATE(2240)] = 112011, - [SMALL_STATE(2241)] = 112022, - [SMALL_STATE(2242)] = 112031, - [SMALL_STATE(2243)] = 112042, - [SMALL_STATE(2244)] = 112053, - [SMALL_STATE(2245)] = 112062, - [SMALL_STATE(2246)] = 112071, - [SMALL_STATE(2247)] = 112082, - [SMALL_STATE(2248)] = 112093, - [SMALL_STATE(2249)] = 112102, - [SMALL_STATE(2250)] = 112111, - [SMALL_STATE(2251)] = 112120, - [SMALL_STATE(2252)] = 112129, - [SMALL_STATE(2253)] = 112138, - [SMALL_STATE(2254)] = 112147, - [SMALL_STATE(2255)] = 112158, - [SMALL_STATE(2256)] = 112167, - [SMALL_STATE(2257)] = 112176, - [SMALL_STATE(2258)] = 112185, - [SMALL_STATE(2259)] = 112196, - [SMALL_STATE(2260)] = 112205, - [SMALL_STATE(2261)] = 112216, - [SMALL_STATE(2262)] = 112225, - [SMALL_STATE(2263)] = 112236, - [SMALL_STATE(2264)] = 112247, - [SMALL_STATE(2265)] = 112256, - [SMALL_STATE(2266)] = 112265, - [SMALL_STATE(2267)] = 112274, - [SMALL_STATE(2268)] = 112283, - [SMALL_STATE(2269)] = 112294, - [SMALL_STATE(2270)] = 112303, - [SMALL_STATE(2271)] = 112312, - [SMALL_STATE(2272)] = 112323, - [SMALL_STATE(2273)] = 112332, - [SMALL_STATE(2274)] = 112341, - [SMALL_STATE(2275)] = 112350, - [SMALL_STATE(2276)] = 112359, - [SMALL_STATE(2277)] = 112368, - [SMALL_STATE(2278)] = 112377, - [SMALL_STATE(2279)] = 112388, - [SMALL_STATE(2280)] = 112399, - [SMALL_STATE(2281)] = 112408, - [SMALL_STATE(2282)] = 112419, - [SMALL_STATE(2283)] = 112428, - [SMALL_STATE(2284)] = 112437, - [SMALL_STATE(2285)] = 112446, - [SMALL_STATE(2286)] = 112457, - [SMALL_STATE(2287)] = 112468, - [SMALL_STATE(2288)] = 112477, - [SMALL_STATE(2289)] = 112486, - [SMALL_STATE(2290)] = 112495, - [SMALL_STATE(2291)] = 112504, - [SMALL_STATE(2292)] = 112513, - [SMALL_STATE(2293)] = 112522, - [SMALL_STATE(2294)] = 112533, - [SMALL_STATE(2295)] = 112544, - [SMALL_STATE(2296)] = 112555, - [SMALL_STATE(2297)] = 112566, - [SMALL_STATE(2298)] = 112577, - [SMALL_STATE(2299)] = 112588, - [SMALL_STATE(2300)] = 112599, - [SMALL_STATE(2301)] = 112608, - [SMALL_STATE(2302)] = 112619, - [SMALL_STATE(2303)] = 112630, - [SMALL_STATE(2304)] = 112641, - [SMALL_STATE(2305)] = 112650, - [SMALL_STATE(2306)] = 112661, - [SMALL_STATE(2307)] = 112672, - [SMALL_STATE(2308)] = 112683, - [SMALL_STATE(2309)] = 112694, - [SMALL_STATE(2310)] = 112705, - [SMALL_STATE(2311)] = 112714, - [SMALL_STATE(2312)] = 112725, - [SMALL_STATE(2313)] = 112734, - [SMALL_STATE(2314)] = 112745, - [SMALL_STATE(2315)] = 112756, - [SMALL_STATE(2316)] = 112767, - [SMALL_STATE(2317)] = 112778, - [SMALL_STATE(2318)] = 112789, - [SMALL_STATE(2319)] = 112798, - [SMALL_STATE(2320)] = 112807, - [SMALL_STATE(2321)] = 112816, - [SMALL_STATE(2322)] = 112827, - [SMALL_STATE(2323)] = 112836, - [SMALL_STATE(2324)] = 112845, - [SMALL_STATE(2325)] = 112854, - [SMALL_STATE(2326)] = 112863, - [SMALL_STATE(2327)] = 112872, - [SMALL_STATE(2328)] = 112881, - [SMALL_STATE(2329)] = 112890, - [SMALL_STATE(2330)] = 112899, - [SMALL_STATE(2331)] = 112908, - [SMALL_STATE(2332)] = 112917, - [SMALL_STATE(2333)] = 112928, - [SMALL_STATE(2334)] = 112937, - [SMALL_STATE(2335)] = 112948, - [SMALL_STATE(2336)] = 112959, - [SMALL_STATE(2337)] = 112970, - [SMALL_STATE(2338)] = 112981, - [SMALL_STATE(2339)] = 112992, - [SMALL_STATE(2340)] = 113003, - [SMALL_STATE(2341)] = 113012, - [SMALL_STATE(2342)] = 113023, - [SMALL_STATE(2343)] = 113034, - [SMALL_STATE(2344)] = 113045, - [SMALL_STATE(2345)] = 113053, - [SMALL_STATE(2346)] = 113061, - [SMALL_STATE(2347)] = 113069, - [SMALL_STATE(2348)] = 113077, - [SMALL_STATE(2349)] = 113085, - [SMALL_STATE(2350)] = 113093, - [SMALL_STATE(2351)] = 113101, - [SMALL_STATE(2352)] = 113109, - [SMALL_STATE(2353)] = 113117, - [SMALL_STATE(2354)] = 113125, - [SMALL_STATE(2355)] = 113133, - [SMALL_STATE(2356)] = 113141, - [SMALL_STATE(2357)] = 113149, - [SMALL_STATE(2358)] = 113157, - [SMALL_STATE(2359)] = 113165, - [SMALL_STATE(2360)] = 113173, - [SMALL_STATE(2361)] = 113181, - [SMALL_STATE(2362)] = 113189, - [SMALL_STATE(2363)] = 113197, - [SMALL_STATE(2364)] = 113205, - [SMALL_STATE(2365)] = 113213, - [SMALL_STATE(2366)] = 113221, - [SMALL_STATE(2367)] = 113229, - [SMALL_STATE(2368)] = 113237, - [SMALL_STATE(2369)] = 113245, - [SMALL_STATE(2370)] = 113253, - [SMALL_STATE(2371)] = 113261, - [SMALL_STATE(2372)] = 113269, - [SMALL_STATE(2373)] = 113277, - [SMALL_STATE(2374)] = 113285, - [SMALL_STATE(2375)] = 113293, - [SMALL_STATE(2376)] = 113301, - [SMALL_STATE(2377)] = 113309, - [SMALL_STATE(2378)] = 113317, - [SMALL_STATE(2379)] = 113325, - [SMALL_STATE(2380)] = 113333, - [SMALL_STATE(2381)] = 113341, - [SMALL_STATE(2382)] = 113349, - [SMALL_STATE(2383)] = 113357, - [SMALL_STATE(2384)] = 113365, - [SMALL_STATE(2385)] = 113373, - [SMALL_STATE(2386)] = 113381, - [SMALL_STATE(2387)] = 113389, - [SMALL_STATE(2388)] = 113397, - [SMALL_STATE(2389)] = 113405, - [SMALL_STATE(2390)] = 113413, - [SMALL_STATE(2391)] = 113421, - [SMALL_STATE(2392)] = 113429, - [SMALL_STATE(2393)] = 113437, - [SMALL_STATE(2394)] = 113445, - [SMALL_STATE(2395)] = 113453, - [SMALL_STATE(2396)] = 113461, - [SMALL_STATE(2397)] = 113469, - [SMALL_STATE(2398)] = 113477, - [SMALL_STATE(2399)] = 113485, - [SMALL_STATE(2400)] = 113493, - [SMALL_STATE(2401)] = 113501, - [SMALL_STATE(2402)] = 113509, - [SMALL_STATE(2403)] = 113517, - [SMALL_STATE(2404)] = 113525, - [SMALL_STATE(2405)] = 113533, - [SMALL_STATE(2406)] = 113541, - [SMALL_STATE(2407)] = 113549, - [SMALL_STATE(2408)] = 113557, - [SMALL_STATE(2409)] = 113565, - [SMALL_STATE(2410)] = 113573, - [SMALL_STATE(2411)] = 113581, - [SMALL_STATE(2412)] = 113589, - [SMALL_STATE(2413)] = 113597, - [SMALL_STATE(2414)] = 113605, - [SMALL_STATE(2415)] = 113613, - [SMALL_STATE(2416)] = 113621, - [SMALL_STATE(2417)] = 113629, - [SMALL_STATE(2418)] = 113637, - [SMALL_STATE(2419)] = 113645, - [SMALL_STATE(2420)] = 113653, - [SMALL_STATE(2421)] = 113661, - [SMALL_STATE(2422)] = 113669, - [SMALL_STATE(2423)] = 113677, - [SMALL_STATE(2424)] = 113685, - [SMALL_STATE(2425)] = 113693, - [SMALL_STATE(2426)] = 113701, - [SMALL_STATE(2427)] = 113709, - [SMALL_STATE(2428)] = 113717, - [SMALL_STATE(2429)] = 113725, - [SMALL_STATE(2430)] = 113733, - [SMALL_STATE(2431)] = 113741, - [SMALL_STATE(2432)] = 113749, - [SMALL_STATE(2433)] = 113757, - [SMALL_STATE(2434)] = 113765, - [SMALL_STATE(2435)] = 113773, - [SMALL_STATE(2436)] = 113781, - [SMALL_STATE(2437)] = 113789, - [SMALL_STATE(2438)] = 113797, - [SMALL_STATE(2439)] = 113805, - [SMALL_STATE(2440)] = 113813, - [SMALL_STATE(2441)] = 113821, - [SMALL_STATE(2442)] = 113829, - [SMALL_STATE(2443)] = 113837, - [SMALL_STATE(2444)] = 113845, - [SMALL_STATE(2445)] = 113853, - [SMALL_STATE(2446)] = 113861, - [SMALL_STATE(2447)] = 113869, - [SMALL_STATE(2448)] = 113877, - [SMALL_STATE(2449)] = 113885, - [SMALL_STATE(2450)] = 113893, - [SMALL_STATE(2451)] = 113901, - [SMALL_STATE(2452)] = 113909, - [SMALL_STATE(2453)] = 113917, - [SMALL_STATE(2454)] = 113925, - [SMALL_STATE(2455)] = 113933, - [SMALL_STATE(2456)] = 113941, - [SMALL_STATE(2457)] = 113949, - [SMALL_STATE(2458)] = 113957, - [SMALL_STATE(2459)] = 113965, - [SMALL_STATE(2460)] = 113973, - [SMALL_STATE(2461)] = 113981, - [SMALL_STATE(2462)] = 113989, - [SMALL_STATE(2463)] = 113997, - [SMALL_STATE(2464)] = 114005, - [SMALL_STATE(2465)] = 114013, - [SMALL_STATE(2466)] = 114021, - [SMALL_STATE(2467)] = 114029, - [SMALL_STATE(2468)] = 114037, - [SMALL_STATE(2469)] = 114045, - [SMALL_STATE(2470)] = 114053, - [SMALL_STATE(2471)] = 114061, - [SMALL_STATE(2472)] = 114069, - [SMALL_STATE(2473)] = 114077, - [SMALL_STATE(2474)] = 114085, - [SMALL_STATE(2475)] = 114093, - [SMALL_STATE(2476)] = 114101, - [SMALL_STATE(2477)] = 114109, - [SMALL_STATE(2478)] = 114117, - [SMALL_STATE(2479)] = 114125, - [SMALL_STATE(2480)] = 114133, - [SMALL_STATE(2481)] = 114141, - [SMALL_STATE(2482)] = 114149, - [SMALL_STATE(2483)] = 114157, - [SMALL_STATE(2484)] = 114165, - [SMALL_STATE(2485)] = 114173, - [SMALL_STATE(2486)] = 114181, - [SMALL_STATE(2487)] = 114189, - [SMALL_STATE(2488)] = 114197, - [SMALL_STATE(2489)] = 114205, - [SMALL_STATE(2490)] = 114213, - [SMALL_STATE(2491)] = 114221, - [SMALL_STATE(2492)] = 114229, - [SMALL_STATE(2493)] = 114237, - [SMALL_STATE(2494)] = 114245, - [SMALL_STATE(2495)] = 114253, - [SMALL_STATE(2496)] = 114261, - [SMALL_STATE(2497)] = 114269, - [SMALL_STATE(2498)] = 114277, - [SMALL_STATE(2499)] = 114285, - [SMALL_STATE(2500)] = 114293, - [SMALL_STATE(2501)] = 114301, - [SMALL_STATE(2502)] = 114309, - [SMALL_STATE(2503)] = 114317, - [SMALL_STATE(2504)] = 114325, - [SMALL_STATE(2505)] = 114333, - [SMALL_STATE(2506)] = 114341, - [SMALL_STATE(2507)] = 114349, - [SMALL_STATE(2508)] = 114357, - [SMALL_STATE(2509)] = 114365, - [SMALL_STATE(2510)] = 114373, - [SMALL_STATE(2511)] = 114381, - [SMALL_STATE(2512)] = 114389, - [SMALL_STATE(2513)] = 114397, - [SMALL_STATE(2514)] = 114405, - [SMALL_STATE(2515)] = 114413, - [SMALL_STATE(2516)] = 114421, - [SMALL_STATE(2517)] = 114429, - [SMALL_STATE(2518)] = 114437, - [SMALL_STATE(2519)] = 114445, - [SMALL_STATE(2520)] = 114453, - [SMALL_STATE(2521)] = 114461, - [SMALL_STATE(2522)] = 114469, - [SMALL_STATE(2523)] = 114477, - [SMALL_STATE(2524)] = 114485, - [SMALL_STATE(2525)] = 114493, - [SMALL_STATE(2526)] = 114501, - [SMALL_STATE(2527)] = 114509, - [SMALL_STATE(2528)] = 114517, - [SMALL_STATE(2529)] = 114525, - [SMALL_STATE(2530)] = 114533, - [SMALL_STATE(2531)] = 114541, - [SMALL_STATE(2532)] = 114549, - [SMALL_STATE(2533)] = 114557, - [SMALL_STATE(2534)] = 114565, - [SMALL_STATE(2535)] = 114573, - [SMALL_STATE(2536)] = 114581, - [SMALL_STATE(2537)] = 114589, - [SMALL_STATE(2538)] = 114597, - [SMALL_STATE(2539)] = 114605, - [SMALL_STATE(2540)] = 114613, - [SMALL_STATE(2541)] = 114621, - [SMALL_STATE(2542)] = 114629, - [SMALL_STATE(2543)] = 114637, - [SMALL_STATE(2544)] = 114645, - [SMALL_STATE(2545)] = 114653, - [SMALL_STATE(2546)] = 114661, - [SMALL_STATE(2547)] = 114669, - [SMALL_STATE(2548)] = 114677, - [SMALL_STATE(2549)] = 114685, - [SMALL_STATE(2550)] = 114693, - [SMALL_STATE(2551)] = 114701, - [SMALL_STATE(2552)] = 114709, - [SMALL_STATE(2553)] = 114717, - [SMALL_STATE(2554)] = 114725, - [SMALL_STATE(2555)] = 114733, - [SMALL_STATE(2556)] = 114741, - [SMALL_STATE(2557)] = 114749, - [SMALL_STATE(2558)] = 114757, - [SMALL_STATE(2559)] = 114765, - [SMALL_STATE(2560)] = 114773, - [SMALL_STATE(2561)] = 114781, - [SMALL_STATE(2562)] = 114789, - [SMALL_STATE(2563)] = 114797, - [SMALL_STATE(2564)] = 114805, - [SMALL_STATE(2565)] = 114813, - [SMALL_STATE(2566)] = 114821, - [SMALL_STATE(2567)] = 114829, - [SMALL_STATE(2568)] = 114837, - [SMALL_STATE(2569)] = 114845, - [SMALL_STATE(2570)] = 114853, - [SMALL_STATE(2571)] = 114861, - [SMALL_STATE(2572)] = 114869, - [SMALL_STATE(2573)] = 114877, - [SMALL_STATE(2574)] = 114885, - [SMALL_STATE(2575)] = 114893, - [SMALL_STATE(2576)] = 114901, - [SMALL_STATE(2577)] = 114909, - [SMALL_STATE(2578)] = 114917, - [SMALL_STATE(2579)] = 114925, - [SMALL_STATE(2580)] = 114933, - [SMALL_STATE(2581)] = 114941, + [SMALL_STATE(1412)] = 94645, + [SMALL_STATE(1413)] = 94684, + [SMALL_STATE(1414)] = 94723, + [SMALL_STATE(1415)] = 94760, + [SMALL_STATE(1416)] = 94799, + [SMALL_STATE(1417)] = 94838, + [SMALL_STATE(1418)] = 94875, + [SMALL_STATE(1419)] = 94914, + [SMALL_STATE(1420)] = 94953, + [SMALL_STATE(1421)] = 94983, + [SMALL_STATE(1422)] = 95013, + [SMALL_STATE(1423)] = 95051, + [SMALL_STATE(1424)] = 95081, + [SMALL_STATE(1425)] = 95111, + [SMALL_STATE(1426)] = 95147, + [SMALL_STATE(1427)] = 95177, + [SMALL_STATE(1428)] = 95207, + [SMALL_STATE(1429)] = 95245, + [SMALL_STATE(1430)] = 95283, + [SMALL_STATE(1431)] = 95313, + [SMALL_STATE(1432)] = 95351, + [SMALL_STATE(1433)] = 95387, + [SMALL_STATE(1434)] = 95417, + [SMALL_STATE(1435)] = 95442, + [SMALL_STATE(1436)] = 95489, + [SMALL_STATE(1437)] = 95518, + [SMALL_STATE(1438)] = 95547, + [SMALL_STATE(1439)] = 95576, + [SMALL_STATE(1440)] = 95623, + [SMALL_STATE(1441)] = 95660, + [SMALL_STATE(1442)] = 95701, + [SMALL_STATE(1443)] = 95730, + [SMALL_STATE(1444)] = 95759, + [SMALL_STATE(1445)] = 95798, + [SMALL_STATE(1446)] = 95835, + [SMALL_STATE(1447)] = 95882, + [SMALL_STATE(1448)] = 95927, + [SMALL_STATE(1449)] = 95970, + [SMALL_STATE(1450)] = 95999, + [SMALL_STATE(1451)] = 96046, + [SMALL_STATE(1452)] = 96093, + [SMALL_STATE(1453)] = 96130, + [SMALL_STATE(1454)] = 96167, + [SMALL_STATE(1455)] = 96214, + [SMALL_STATE(1456)] = 96239, + [SMALL_STATE(1457)] = 96268, + [SMALL_STATE(1458)] = 96293, + [SMALL_STATE(1459)] = 96322, + [SMALL_STATE(1460)] = 96351, + [SMALL_STATE(1461)] = 96398, + [SMALL_STATE(1462)] = 96427, + [SMALL_STATE(1463)] = 96468, + [SMALL_STATE(1464)] = 96497, + [SMALL_STATE(1465)] = 96526, + [SMALL_STATE(1466)] = 96555, + [SMALL_STATE(1467)] = 96602, + [SMALL_STATE(1468)] = 96627, + [SMALL_STATE(1469)] = 96656, + [SMALL_STATE(1470)] = 96685, + [SMALL_STATE(1471)] = 96714, + [SMALL_STATE(1472)] = 96743, + [SMALL_STATE(1473)] = 96772, + [SMALL_STATE(1474)] = 96801, + [SMALL_STATE(1475)] = 96848, + [SMALL_STATE(1476)] = 96877, + [SMALL_STATE(1477)] = 96906, + [SMALL_STATE(1478)] = 96953, + [SMALL_STATE(1479)] = 96982, + [SMALL_STATE(1480)] = 97009, + [SMALL_STATE(1481)] = 97038, + [SMALL_STATE(1482)] = 97067, + [SMALL_STATE(1483)] = 97114, + [SMALL_STATE(1484)] = 97160, + [SMALL_STATE(1485)] = 97206, + [SMALL_STATE(1486)] = 97252, + [SMALL_STATE(1487)] = 97280, + [SMALL_STATE(1488)] = 97322, + [SMALL_STATE(1489)] = 97346, + [SMALL_STATE(1490)] = 97392, + [SMALL_STATE(1491)] = 97424, + [SMALL_STATE(1492)] = 97470, + [SMALL_STATE(1493)] = 97494, + [SMALL_STATE(1494)] = 97518, + [SMALL_STATE(1495)] = 97548, + [SMALL_STATE(1496)] = 97594, + [SMALL_STATE(1497)] = 97640, + [SMALL_STATE(1498)] = 97686, + [SMALL_STATE(1499)] = 97732, + [SMALL_STATE(1500)] = 97760, + [SMALL_STATE(1501)] = 97806, + [SMALL_STATE(1502)] = 97852, + [SMALL_STATE(1503)] = 97898, + [SMALL_STATE(1504)] = 97922, + [SMALL_STATE(1505)] = 97954, + [SMALL_STATE(1506)] = 98000, + [SMALL_STATE(1507)] = 98043, + [SMALL_STATE(1508)] = 98076, + [SMALL_STATE(1509)] = 98109, + [SMALL_STATE(1510)] = 98149, + [SMALL_STATE(1511)] = 98179, + [SMALL_STATE(1512)] = 98219, + [SMALL_STATE(1513)] = 98245, + [SMALL_STATE(1514)] = 98281, + [SMALL_STATE(1515)] = 98321, + [SMALL_STATE(1516)] = 98361, + [SMALL_STATE(1517)] = 98398, + [SMALL_STATE(1518)] = 98429, + [SMALL_STATE(1519)] = 98460, + [SMALL_STATE(1520)] = 98487, + [SMALL_STATE(1521)] = 98524, + [SMALL_STATE(1522)] = 98551, + [SMALL_STATE(1523)] = 98573, + [SMALL_STATE(1524)] = 98595, + [SMALL_STATE(1525)] = 98617, + [SMALL_STATE(1526)] = 98647, + [SMALL_STATE(1527)] = 98666, + [SMALL_STATE(1528)] = 98691, + [SMALL_STATE(1529)] = 98732, + [SMALL_STATE(1530)] = 98773, + [SMALL_STATE(1531)] = 98814, + [SMALL_STATE(1532)] = 98833, + [SMALL_STATE(1533)] = 98852, + [SMALL_STATE(1534)] = 98893, + [SMALL_STATE(1535)] = 98934, + [SMALL_STATE(1536)] = 98975, + [SMALL_STATE(1537)] = 99016, + [SMALL_STATE(1538)] = 99057, + [SMALL_STATE(1539)] = 99095, + [SMALL_STATE(1540)] = 99133, + [SMALL_STATE(1541)] = 99171, + [SMALL_STATE(1542)] = 99209, + [SMALL_STATE(1543)] = 99247, + [SMALL_STATE(1544)] = 99279, + [SMALL_STATE(1545)] = 99317, + [SMALL_STATE(1546)] = 99345, + [SMALL_STATE(1547)] = 99383, + [SMALL_STATE(1548)] = 99421, + [SMALL_STATE(1549)] = 99459, + [SMALL_STATE(1550)] = 99487, + [SMALL_STATE(1551)] = 99513, + [SMALL_STATE(1552)] = 99551, + [SMALL_STATE(1553)] = 99575, + [SMALL_STATE(1554)] = 99599, + [SMALL_STATE(1555)] = 99637, + [SMALL_STATE(1556)] = 99661, + [SMALL_STATE(1557)] = 99685, + [SMALL_STATE(1558)] = 99723, + [SMALL_STATE(1559)] = 99749, + [SMALL_STATE(1560)] = 99787, + [SMALL_STATE(1561)] = 99813, + [SMALL_STATE(1562)] = 99851, + [SMALL_STATE(1563)] = 99879, + [SMALL_STATE(1564)] = 99917, + [SMALL_STATE(1565)] = 99955, + [SMALL_STATE(1566)] = 99975, + [SMALL_STATE(1567)] = 100013, + [SMALL_STATE(1568)] = 100051, + [SMALL_STATE(1569)] = 100089, + [SMALL_STATE(1570)] = 100111, + [SMALL_STATE(1571)] = 100149, + [SMALL_STATE(1572)] = 100187, + [SMALL_STATE(1573)] = 100211, + [SMALL_STATE(1574)] = 100235, + [SMALL_STATE(1575)] = 100273, + [SMALL_STATE(1576)] = 100311, + [SMALL_STATE(1577)] = 100349, + [SMALL_STATE(1578)] = 100387, + [SMALL_STATE(1579)] = 100414, + [SMALL_STATE(1580)] = 100441, + [SMALL_STATE(1581)] = 100460, + [SMALL_STATE(1582)] = 100485, + [SMALL_STATE(1583)] = 100514, + [SMALL_STATE(1584)] = 100539, + [SMALL_STATE(1585)] = 100568, + [SMALL_STATE(1586)] = 100597, + [SMALL_STATE(1587)] = 100622, + [SMALL_STATE(1588)] = 100651, + [SMALL_STATE(1589)] = 100680, + [SMALL_STATE(1590)] = 100709, + [SMALL_STATE(1591)] = 100738, + [SMALL_STATE(1592)] = 100767, + [SMALL_STATE(1593)] = 100796, + [SMALL_STATE(1594)] = 100825, + [SMALL_STATE(1595)] = 100854, + [SMALL_STATE(1596)] = 100883, + [SMALL_STATE(1597)] = 100912, + [SMALL_STATE(1598)] = 100941, + [SMALL_STATE(1599)] = 100970, + [SMALL_STATE(1600)] = 100999, + [SMALL_STATE(1601)] = 101028, + [SMALL_STATE(1602)] = 101057, + [SMALL_STATE(1603)] = 101076, + [SMALL_STATE(1604)] = 101093, + [SMALL_STATE(1605)] = 101122, + [SMALL_STATE(1606)] = 101139, + [SMALL_STATE(1607)] = 101158, + [SMALL_STATE(1608)] = 101187, + [SMALL_STATE(1609)] = 101216, + [SMALL_STATE(1610)] = 101245, + [SMALL_STATE(1611)] = 101274, + [SMALL_STATE(1612)] = 101291, + [SMALL_STATE(1613)] = 101312, + [SMALL_STATE(1614)] = 101335, + [SMALL_STATE(1615)] = 101364, + [SMALL_STATE(1616)] = 101381, + [SMALL_STATE(1617)] = 101410, + [SMALL_STATE(1618)] = 101439, + [SMALL_STATE(1619)] = 101468, + [SMALL_STATE(1620)] = 101497, + [SMALL_STATE(1621)] = 101522, + [SMALL_STATE(1622)] = 101541, + [SMALL_STATE(1623)] = 101566, + [SMALL_STATE(1624)] = 101595, + [SMALL_STATE(1625)] = 101622, + [SMALL_STATE(1626)] = 101651, + [SMALL_STATE(1627)] = 101680, + [SMALL_STATE(1628)] = 101697, + [SMALL_STATE(1629)] = 101714, + [SMALL_STATE(1630)] = 101743, + [SMALL_STATE(1631)] = 101772, + [SMALL_STATE(1632)] = 101801, + [SMALL_STATE(1633)] = 101819, + [SMALL_STATE(1634)] = 101835, + [SMALL_STATE(1635)] = 101857, + [SMALL_STATE(1636)] = 101881, + [SMALL_STATE(1637)] = 101901, + [SMALL_STATE(1638)] = 101919, + [SMALL_STATE(1639)] = 101943, + [SMALL_STATE(1640)] = 101967, + [SMALL_STATE(1641)] = 101991, + [SMALL_STATE(1642)] = 102015, + [SMALL_STATE(1643)] = 102031, + [SMALL_STATE(1644)] = 102049, + [SMALL_STATE(1645)] = 102065, + [SMALL_STATE(1646)] = 102085, + [SMALL_STATE(1647)] = 102105, + [SMALL_STATE(1648)] = 102121, + [SMALL_STATE(1649)] = 102145, + [SMALL_STATE(1650)] = 102167, + [SMALL_STATE(1651)] = 102191, + [SMALL_STATE(1652)] = 102215, + [SMALL_STATE(1653)] = 102231, + [SMALL_STATE(1654)] = 102255, + [SMALL_STATE(1655)] = 102271, + [SMALL_STATE(1656)] = 102295, + [SMALL_STATE(1657)] = 102325, + [SMALL_STATE(1658)] = 102343, + [SMALL_STATE(1659)] = 102361, + [SMALL_STATE(1660)] = 102381, + [SMALL_STATE(1661)] = 102405, + [SMALL_STATE(1662)] = 102423, + [SMALL_STATE(1663)] = 102445, + [SMALL_STATE(1664)] = 102469, + [SMALL_STATE(1665)] = 102491, + [SMALL_STATE(1666)] = 102515, + [SMALL_STATE(1667)] = 102539, + [SMALL_STATE(1668)] = 102561, + [SMALL_STATE(1669)] = 102585, + [SMALL_STATE(1670)] = 102605, + [SMALL_STATE(1671)] = 102629, + [SMALL_STATE(1672)] = 102652, + [SMALL_STATE(1673)] = 102669, + [SMALL_STATE(1674)] = 102692, + [SMALL_STATE(1675)] = 102715, + [SMALL_STATE(1676)] = 102740, + [SMALL_STATE(1677)] = 102769, + [SMALL_STATE(1678)] = 102798, + [SMALL_STATE(1679)] = 102827, + [SMALL_STATE(1680)] = 102850, + [SMALL_STATE(1681)] = 102871, + [SMALL_STATE(1682)] = 102896, + [SMALL_STATE(1683)] = 102921, + [SMALL_STATE(1684)] = 102942, + [SMALL_STATE(1685)] = 102969, + [SMALL_STATE(1686)] = 102986, + [SMALL_STATE(1687)] = 103015, + [SMALL_STATE(1688)] = 103044, + [SMALL_STATE(1689)] = 103065, + [SMALL_STATE(1690)] = 103082, + [SMALL_STATE(1691)] = 103109, + [SMALL_STATE(1692)] = 103126, + [SMALL_STATE(1693)] = 103147, + [SMALL_STATE(1694)] = 103166, + [SMALL_STATE(1695)] = 103193, + [SMALL_STATE(1696)] = 103214, + [SMALL_STATE(1697)] = 103243, + [SMALL_STATE(1698)] = 103264, + [SMALL_STATE(1699)] = 103291, + [SMALL_STATE(1700)] = 103312, + [SMALL_STATE(1701)] = 103339, + [SMALL_STATE(1702)] = 103366, + [SMALL_STATE(1703)] = 103383, + [SMALL_STATE(1704)] = 103412, + [SMALL_STATE(1705)] = 103429, + [SMALL_STATE(1706)] = 103450, + [SMALL_STATE(1707)] = 103467, + [SMALL_STATE(1708)] = 103484, + [SMALL_STATE(1709)] = 103513, + [SMALL_STATE(1710)] = 103536, + [SMALL_STATE(1711)] = 103559, + [SMALL_STATE(1712)] = 103582, + [SMALL_STATE(1713)] = 103603, + [SMALL_STATE(1714)] = 103624, + [SMALL_STATE(1715)] = 103641, + [SMALL_STATE(1716)] = 103660, + [SMALL_STATE(1717)] = 103683, + [SMALL_STATE(1718)] = 103700, + [SMALL_STATE(1719)] = 103725, + [SMALL_STATE(1720)] = 103754, + [SMALL_STATE(1721)] = 103771, + [SMALL_STATE(1722)] = 103792, + [SMALL_STATE(1723)] = 103815, + [SMALL_STATE(1724)] = 103840, + [SMALL_STATE(1725)] = 103861, + [SMALL_STATE(1726)] = 103884, + [SMALL_STATE(1727)] = 103903, + [SMALL_STATE(1728)] = 103920, + [SMALL_STATE(1729)] = 103941, + [SMALL_STATE(1730)] = 103962, + [SMALL_STATE(1731)] = 103985, + [SMALL_STATE(1732)] = 104008, + [SMALL_STATE(1733)] = 104035, + [SMALL_STATE(1734)] = 104062, + [SMALL_STATE(1735)] = 104087, + [SMALL_STATE(1736)] = 104104, + [SMALL_STATE(1737)] = 104127, + [SMALL_STATE(1738)] = 104156, + [SMALL_STATE(1739)] = 104179, + [SMALL_STATE(1740)] = 104203, + [SMALL_STATE(1741)] = 104225, + [SMALL_STATE(1742)] = 104247, + [SMALL_STATE(1743)] = 104273, + [SMALL_STATE(1744)] = 104293, + [SMALL_STATE(1745)] = 104317, + [SMALL_STATE(1746)] = 104343, + [SMALL_STATE(1747)] = 104359, + [SMALL_STATE(1748)] = 104381, + [SMALL_STATE(1749)] = 104403, + [SMALL_STATE(1750)] = 104425, + [SMALL_STATE(1751)] = 104449, + [SMALL_STATE(1752)] = 104475, + [SMALL_STATE(1753)] = 104491, + [SMALL_STATE(1754)] = 104517, + [SMALL_STATE(1755)] = 104543, + [SMALL_STATE(1756)] = 104569, + [SMALL_STATE(1757)] = 104591, + [SMALL_STATE(1758)] = 104617, + [SMALL_STATE(1759)] = 104643, + [SMALL_STATE(1760)] = 104663, + [SMALL_STATE(1761)] = 104685, + [SMALL_STATE(1762)] = 104709, + [SMALL_STATE(1763)] = 104731, + [SMALL_STATE(1764)] = 104757, + [SMALL_STATE(1765)] = 104783, + [SMALL_STATE(1766)] = 104805, + [SMALL_STATE(1767)] = 104831, + [SMALL_STATE(1768)] = 104857, + [SMALL_STATE(1769)] = 104879, + [SMALL_STATE(1770)] = 104901, + [SMALL_STATE(1771)] = 104923, + [SMALL_STATE(1772)] = 104949, + [SMALL_STATE(1773)] = 104975, + [SMALL_STATE(1774)] = 104997, + [SMALL_STATE(1775)] = 105013, + [SMALL_STATE(1776)] = 105035, + [SMALL_STATE(1777)] = 105055, + [SMALL_STATE(1778)] = 105070, + [SMALL_STATE(1779)] = 105087, + [SMALL_STATE(1780)] = 105106, + [SMALL_STATE(1781)] = 105123, + [SMALL_STATE(1782)] = 105144, + [SMALL_STATE(1783)] = 105165, + [SMALL_STATE(1784)] = 105182, + [SMALL_STATE(1785)] = 105195, + [SMALL_STATE(1786)] = 105208, + [SMALL_STATE(1787)] = 105227, + [SMALL_STATE(1788)] = 105248, + [SMALL_STATE(1789)] = 105269, + [SMALL_STATE(1790)] = 105286, + [SMALL_STATE(1791)] = 105303, + [SMALL_STATE(1792)] = 105320, + [SMALL_STATE(1793)] = 105337, + [SMALL_STATE(1794)] = 105358, + [SMALL_STATE(1795)] = 105379, + [SMALL_STATE(1796)] = 105394, + [SMALL_STATE(1797)] = 105411, + [SMALL_STATE(1798)] = 105434, + [SMALL_STATE(1799)] = 105447, + [SMALL_STATE(1800)] = 105462, + [SMALL_STATE(1801)] = 105475, + [SMALL_STATE(1802)] = 105496, + [SMALL_STATE(1803)] = 105515, + [SMALL_STATE(1804)] = 105536, + [SMALL_STATE(1805)] = 105549, + [SMALL_STATE(1806)] = 105566, + [SMALL_STATE(1807)] = 105587, + [SMALL_STATE(1808)] = 105608, + [SMALL_STATE(1809)] = 105621, + [SMALL_STATE(1810)] = 105634, + [SMALL_STATE(1811)] = 105651, + [SMALL_STATE(1812)] = 105668, + [SMALL_STATE(1813)] = 105689, + [SMALL_STATE(1814)] = 105706, + [SMALL_STATE(1815)] = 105723, + [SMALL_STATE(1816)] = 105746, + [SMALL_STATE(1817)] = 105767, + [SMALL_STATE(1818)] = 105780, + [SMALL_STATE(1819)] = 105795, + [SMALL_STATE(1820)] = 105816, + [SMALL_STATE(1821)] = 105839, + [SMALL_STATE(1822)] = 105860, + [SMALL_STATE(1823)] = 105883, + [SMALL_STATE(1824)] = 105904, + [SMALL_STATE(1825)] = 105925, + [SMALL_STATE(1826)] = 105946, + [SMALL_STATE(1827)] = 105967, + [SMALL_STATE(1828)] = 105980, + [SMALL_STATE(1829)] = 106001, + [SMALL_STATE(1830)] = 106022, + [SMALL_STATE(1831)] = 106043, + [SMALL_STATE(1832)] = 106064, + [SMALL_STATE(1833)] = 106081, + [SMALL_STATE(1834)] = 106098, + [SMALL_STATE(1835)] = 106119, + [SMALL_STATE(1836)] = 106136, + [SMALL_STATE(1837)] = 106157, + [SMALL_STATE(1838)] = 106174, + [SMALL_STATE(1839)] = 106191, + [SMALL_STATE(1840)] = 106214, + [SMALL_STATE(1841)] = 106231, + [SMALL_STATE(1842)] = 106246, + [SMALL_STATE(1843)] = 106263, + [SMALL_STATE(1844)] = 106284, + [SMALL_STATE(1845)] = 106301, + [SMALL_STATE(1846)] = 106322, + [SMALL_STATE(1847)] = 106343, + [SMALL_STATE(1848)] = 106360, + [SMALL_STATE(1849)] = 106377, + [SMALL_STATE(1850)] = 106392, + [SMALL_STATE(1851)] = 106405, + [SMALL_STATE(1852)] = 106418, + [SMALL_STATE(1853)] = 106435, + [SMALL_STATE(1854)] = 106452, + [SMALL_STATE(1855)] = 106473, + [SMALL_STATE(1856)] = 106490, + [SMALL_STATE(1857)] = 106511, + [SMALL_STATE(1858)] = 106534, + [SMALL_STATE(1859)] = 106555, + [SMALL_STATE(1860)] = 106578, + [SMALL_STATE(1861)] = 106599, + [SMALL_STATE(1862)] = 106620, + [SMALL_STATE(1863)] = 106639, + [SMALL_STATE(1864)] = 106652, + [SMALL_STATE(1865)] = 106665, + [SMALL_STATE(1866)] = 106682, + [SMALL_STATE(1867)] = 106695, + [SMALL_STATE(1868)] = 106712, + [SMALL_STATE(1869)] = 106729, + [SMALL_STATE(1870)] = 106746, + [SMALL_STATE(1871)] = 106769, + [SMALL_STATE(1872)] = 106784, + [SMALL_STATE(1873)] = 106801, + [SMALL_STATE(1874)] = 106824, + [SMALL_STATE(1875)] = 106843, + [SMALL_STATE(1876)] = 106861, + [SMALL_STATE(1877)] = 106873, + [SMALL_STATE(1878)] = 106893, + [SMALL_STATE(1879)] = 106909, + [SMALL_STATE(1880)] = 106927, + [SMALL_STATE(1881)] = 106947, + [SMALL_STATE(1882)] = 106959, + [SMALL_STATE(1883)] = 106977, + [SMALL_STATE(1884)] = 106997, + [SMALL_STATE(1885)] = 107017, + [SMALL_STATE(1886)] = 107029, + [SMALL_STATE(1887)] = 107045, + [SMALL_STATE(1888)] = 107065, + [SMALL_STATE(1889)] = 107085, + [SMALL_STATE(1890)] = 107101, + [SMALL_STATE(1891)] = 107121, + [SMALL_STATE(1892)] = 107141, + [SMALL_STATE(1893)] = 107153, + [SMALL_STATE(1894)] = 107173, + [SMALL_STATE(1895)] = 107185, + [SMALL_STATE(1896)] = 107205, + [SMALL_STATE(1897)] = 107225, + [SMALL_STATE(1898)] = 107241, + [SMALL_STATE(1899)] = 107253, + [SMALL_STATE(1900)] = 107269, + [SMALL_STATE(1901)] = 107281, + [SMALL_STATE(1902)] = 107301, + [SMALL_STATE(1903)] = 107321, + [SMALL_STATE(1904)] = 107333, + [SMALL_STATE(1905)] = 107345, + [SMALL_STATE(1906)] = 107357, + [SMALL_STATE(1907)] = 107377, + [SMALL_STATE(1908)] = 107395, + [SMALL_STATE(1909)] = 107407, + [SMALL_STATE(1910)] = 107425, + [SMALL_STATE(1911)] = 107437, + [SMALL_STATE(1912)] = 107449, + [SMALL_STATE(1913)] = 107469, + [SMALL_STATE(1914)] = 107487, + [SMALL_STATE(1915)] = 107499, + [SMALL_STATE(1916)] = 107511, + [SMALL_STATE(1917)] = 107529, + [SMALL_STATE(1918)] = 107545, + [SMALL_STATE(1919)] = 107557, + [SMALL_STATE(1920)] = 107577, + [SMALL_STATE(1921)] = 107597, + [SMALL_STATE(1922)] = 107609, + [SMALL_STATE(1923)] = 107629, + [SMALL_STATE(1924)] = 107649, + [SMALL_STATE(1925)] = 107661, + [SMALL_STATE(1926)] = 107681, + [SMALL_STATE(1927)] = 107701, + [SMALL_STATE(1928)] = 107721, + [SMALL_STATE(1929)] = 107741, + [SMALL_STATE(1930)] = 107753, + [SMALL_STATE(1931)] = 107765, + [SMALL_STATE(1932)] = 107785, + [SMALL_STATE(1933)] = 107797, + [SMALL_STATE(1934)] = 107809, + [SMALL_STATE(1935)] = 107829, + [SMALL_STATE(1936)] = 107849, + [SMALL_STATE(1937)] = 107861, + [SMALL_STATE(1938)] = 107873, + [SMALL_STATE(1939)] = 107885, + [SMALL_STATE(1940)] = 107905, + [SMALL_STATE(1941)] = 107917, + [SMALL_STATE(1942)] = 107935, + [SMALL_STATE(1943)] = 107951, + [SMALL_STATE(1944)] = 107965, + [SMALL_STATE(1945)] = 107985, + [SMALL_STATE(1946)] = 108003, + [SMALL_STATE(1947)] = 108023, + [SMALL_STATE(1948)] = 108043, + [SMALL_STATE(1949)] = 108055, + [SMALL_STATE(1950)] = 108067, + [SMALL_STATE(1951)] = 108087, + [SMALL_STATE(1952)] = 108107, + [SMALL_STATE(1953)] = 108127, + [SMALL_STATE(1954)] = 108147, + [SMALL_STATE(1955)] = 108159, + [SMALL_STATE(1956)] = 108179, + [SMALL_STATE(1957)] = 108191, + [SMALL_STATE(1958)] = 108209, + [SMALL_STATE(1959)] = 108221, + [SMALL_STATE(1960)] = 108239, + [SMALL_STATE(1961)] = 108251, + [SMALL_STATE(1962)] = 108268, + [SMALL_STATE(1963)] = 108281, + [SMALL_STATE(1964)] = 108298, + [SMALL_STATE(1965)] = 108313, + [SMALL_STATE(1966)] = 108330, + [SMALL_STATE(1967)] = 108347, + [SMALL_STATE(1968)] = 108360, + [SMALL_STATE(1969)] = 108375, + [SMALL_STATE(1970)] = 108390, + [SMALL_STATE(1971)] = 108405, + [SMALL_STATE(1972)] = 108420, + [SMALL_STATE(1973)] = 108435, + [SMALL_STATE(1974)] = 108452, + [SMALL_STATE(1975)] = 108467, + [SMALL_STATE(1976)] = 108482, + [SMALL_STATE(1977)] = 108499, + [SMALL_STATE(1978)] = 108514, + [SMALL_STATE(1979)] = 108529, + [SMALL_STATE(1980)] = 108544, + [SMALL_STATE(1981)] = 108561, + [SMALL_STATE(1982)] = 108576, + [SMALL_STATE(1983)] = 108591, + [SMALL_STATE(1984)] = 108606, + [SMALL_STATE(1985)] = 108621, + [SMALL_STATE(1986)] = 108636, + [SMALL_STATE(1987)] = 108653, + [SMALL_STATE(1988)] = 108668, + [SMALL_STATE(1989)] = 108685, + [SMALL_STATE(1990)] = 108700, + [SMALL_STATE(1991)] = 108715, + [SMALL_STATE(1992)] = 108730, + [SMALL_STATE(1993)] = 108745, + [SMALL_STATE(1994)] = 108760, + [SMALL_STATE(1995)] = 108775, + [SMALL_STATE(1996)] = 108788, + [SMALL_STATE(1997)] = 108805, + [SMALL_STATE(1998)] = 108818, + [SMALL_STATE(1999)] = 108835, + [SMALL_STATE(2000)] = 108852, + [SMALL_STATE(2001)] = 108863, + [SMALL_STATE(2002)] = 108880, + [SMALL_STATE(2003)] = 108897, + [SMALL_STATE(2004)] = 108914, + [SMALL_STATE(2005)] = 108929, + [SMALL_STATE(2006)] = 108944, + [SMALL_STATE(2007)] = 108961, + [SMALL_STATE(2008)] = 108976, + [SMALL_STATE(2009)] = 108993, + [SMALL_STATE(2010)] = 109007, + [SMALL_STATE(2011)] = 109017, + [SMALL_STATE(2012)] = 109031, + [SMALL_STATE(2013)] = 109045, + [SMALL_STATE(2014)] = 109059, + [SMALL_STATE(2015)] = 109071, + [SMALL_STATE(2016)] = 109083, + [SMALL_STATE(2017)] = 109097, + [SMALL_STATE(2018)] = 109111, + [SMALL_STATE(2019)] = 109125, + [SMALL_STATE(2020)] = 109139, + [SMALL_STATE(2021)] = 109153, + [SMALL_STATE(2022)] = 109167, + [SMALL_STATE(2023)] = 109181, + [SMALL_STATE(2024)] = 109195, + [SMALL_STATE(2025)] = 109209, + [SMALL_STATE(2026)] = 109223, + [SMALL_STATE(2027)] = 109237, + [SMALL_STATE(2028)] = 109251, + [SMALL_STATE(2029)] = 109265, + [SMALL_STATE(2030)] = 109279, + [SMALL_STATE(2031)] = 109293, + [SMALL_STATE(2032)] = 109303, + [SMALL_STATE(2033)] = 109317, + [SMALL_STATE(2034)] = 109327, + [SMALL_STATE(2035)] = 109341, + [SMALL_STATE(2036)] = 109355, + [SMALL_STATE(2037)] = 109369, + [SMALL_STATE(2038)] = 109383, + [SMALL_STATE(2039)] = 109397, + [SMALL_STATE(2040)] = 109411, + [SMALL_STATE(2041)] = 109425, + [SMALL_STATE(2042)] = 109439, + [SMALL_STATE(2043)] = 109453, + [SMALL_STATE(2044)] = 109467, + [SMALL_STATE(2045)] = 109481, + [SMALL_STATE(2046)] = 109495, + [SMALL_STATE(2047)] = 109507, + [SMALL_STATE(2048)] = 109521, + [SMALL_STATE(2049)] = 109535, + [SMALL_STATE(2050)] = 109545, + [SMALL_STATE(2051)] = 109559, + [SMALL_STATE(2052)] = 109573, + [SMALL_STATE(2053)] = 109583, + [SMALL_STATE(2054)] = 109597, + [SMALL_STATE(2055)] = 109609, + [SMALL_STATE(2056)] = 109619, + [SMALL_STATE(2057)] = 109633, + [SMALL_STATE(2058)] = 109647, + [SMALL_STATE(2059)] = 109661, + [SMALL_STATE(2060)] = 109675, + [SMALL_STATE(2061)] = 109689, + [SMALL_STATE(2062)] = 109699, + [SMALL_STATE(2063)] = 109711, + [SMALL_STATE(2064)] = 109725, + [SMALL_STATE(2065)] = 109739, + [SMALL_STATE(2066)] = 109753, + [SMALL_STATE(2067)] = 109767, + [SMALL_STATE(2068)] = 109781, + [SMALL_STATE(2069)] = 109795, + [SMALL_STATE(2070)] = 109809, + [SMALL_STATE(2071)] = 109823, + [SMALL_STATE(2072)] = 109837, + [SMALL_STATE(2073)] = 109851, + [SMALL_STATE(2074)] = 109865, + [SMALL_STATE(2075)] = 109879, + [SMALL_STATE(2076)] = 109893, + [SMALL_STATE(2077)] = 109907, + [SMALL_STATE(2078)] = 109921, + [SMALL_STATE(2079)] = 109935, + [SMALL_STATE(2080)] = 109949, + [SMALL_STATE(2081)] = 109963, + [SMALL_STATE(2082)] = 109977, + [SMALL_STATE(2083)] = 109991, + [SMALL_STATE(2084)] = 110005, + [SMALL_STATE(2085)] = 110019, + [SMALL_STATE(2086)] = 110033, + [SMALL_STATE(2087)] = 110047, + [SMALL_STATE(2088)] = 110061, + [SMALL_STATE(2089)] = 110075, + [SMALL_STATE(2090)] = 110089, + [SMALL_STATE(2091)] = 110103, + [SMALL_STATE(2092)] = 110117, + [SMALL_STATE(2093)] = 110131, + [SMALL_STATE(2094)] = 110145, + [SMALL_STATE(2095)] = 110159, + [SMALL_STATE(2096)] = 110173, + [SMALL_STATE(2097)] = 110187, + [SMALL_STATE(2098)] = 110201, + [SMALL_STATE(2099)] = 110213, + [SMALL_STATE(2100)] = 110227, + [SMALL_STATE(2101)] = 110241, + [SMALL_STATE(2102)] = 110255, + [SMALL_STATE(2103)] = 110269, + [SMALL_STATE(2104)] = 110283, + [SMALL_STATE(2105)] = 110297, + [SMALL_STATE(2106)] = 110311, + [SMALL_STATE(2107)] = 110325, + [SMALL_STATE(2108)] = 110339, + [SMALL_STATE(2109)] = 110353, + [SMALL_STATE(2110)] = 110367, + [SMALL_STATE(2111)] = 110381, + [SMALL_STATE(2112)] = 110395, + [SMALL_STATE(2113)] = 110409, + [SMALL_STATE(2114)] = 110423, + [SMALL_STATE(2115)] = 110435, + [SMALL_STATE(2116)] = 110449, + [SMALL_STATE(2117)] = 110463, + [SMALL_STATE(2118)] = 110477, + [SMALL_STATE(2119)] = 110491, + [SMALL_STATE(2120)] = 110505, + [SMALL_STATE(2121)] = 110519, + [SMALL_STATE(2122)] = 110533, + [SMALL_STATE(2123)] = 110547, + [SMALL_STATE(2124)] = 110561, + [SMALL_STATE(2125)] = 110575, + [SMALL_STATE(2126)] = 110589, + [SMALL_STATE(2127)] = 110603, + [SMALL_STATE(2128)] = 110617, + [SMALL_STATE(2129)] = 110631, + [SMALL_STATE(2130)] = 110645, + [SMALL_STATE(2131)] = 110659, + [SMALL_STATE(2132)] = 110673, + [SMALL_STATE(2133)] = 110687, + [SMALL_STATE(2134)] = 110701, + [SMALL_STATE(2135)] = 110715, + [SMALL_STATE(2136)] = 110729, + [SMALL_STATE(2137)] = 110743, + [SMALL_STATE(2138)] = 110757, + [SMALL_STATE(2139)] = 110771, + [SMALL_STATE(2140)] = 110783, + [SMALL_STATE(2141)] = 110797, + [SMALL_STATE(2142)] = 110811, + [SMALL_STATE(2143)] = 110823, + [SMALL_STATE(2144)] = 110837, + [SMALL_STATE(2145)] = 110851, + [SMALL_STATE(2146)] = 110861, + [SMALL_STATE(2147)] = 110875, + [SMALL_STATE(2148)] = 110889, + [SMALL_STATE(2149)] = 110903, + [SMALL_STATE(2150)] = 110917, + [SMALL_STATE(2151)] = 110931, + [SMALL_STATE(2152)] = 110943, + [SMALL_STATE(2153)] = 110957, + [SMALL_STATE(2154)] = 110969, + [SMALL_STATE(2155)] = 110983, + [SMALL_STATE(2156)] = 110997, + [SMALL_STATE(2157)] = 111011, + [SMALL_STATE(2158)] = 111025, + [SMALL_STATE(2159)] = 111039, + [SMALL_STATE(2160)] = 111053, + [SMALL_STATE(2161)] = 111067, + [SMALL_STATE(2162)] = 111077, + [SMALL_STATE(2163)] = 111089, + [SMALL_STATE(2164)] = 111103, + [SMALL_STATE(2165)] = 111117, + [SMALL_STATE(2166)] = 111131, + [SMALL_STATE(2167)] = 111145, + [SMALL_STATE(2168)] = 111159, + [SMALL_STATE(2169)] = 111173, + [SMALL_STATE(2170)] = 111187, + [SMALL_STATE(2171)] = 111201, + [SMALL_STATE(2172)] = 111215, + [SMALL_STATE(2173)] = 111229, + [SMALL_STATE(2174)] = 111243, + [SMALL_STATE(2175)] = 111255, + [SMALL_STATE(2176)] = 111269, + [SMALL_STATE(2177)] = 111281, + [SMALL_STATE(2178)] = 111295, + [SMALL_STATE(2179)] = 111309, + [SMALL_STATE(2180)] = 111323, + [SMALL_STATE(2181)] = 111335, + [SMALL_STATE(2182)] = 111349, + [SMALL_STATE(2183)] = 111363, + [SMALL_STATE(2184)] = 111377, + [SMALL_STATE(2185)] = 111389, + [SMALL_STATE(2186)] = 111401, + [SMALL_STATE(2187)] = 111415, + [SMALL_STATE(2188)] = 111429, + [SMALL_STATE(2189)] = 111443, + [SMALL_STATE(2190)] = 111457, + [SMALL_STATE(2191)] = 111471, + [SMALL_STATE(2192)] = 111485, + [SMALL_STATE(2193)] = 111499, + [SMALL_STATE(2194)] = 111513, + [SMALL_STATE(2195)] = 111527, + [SMALL_STATE(2196)] = 111539, + [SMALL_STATE(2197)] = 111553, + [SMALL_STATE(2198)] = 111567, + [SMALL_STATE(2199)] = 111581, + [SMALL_STATE(2200)] = 111595, + [SMALL_STATE(2201)] = 111609, + [SMALL_STATE(2202)] = 111623, + [SMALL_STATE(2203)] = 111637, + [SMALL_STATE(2204)] = 111651, + [SMALL_STATE(2205)] = 111665, + [SMALL_STATE(2206)] = 111679, + [SMALL_STATE(2207)] = 111693, + [SMALL_STATE(2208)] = 111705, + [SMALL_STATE(2209)] = 111719, + [SMALL_STATE(2210)] = 111729, + [SMALL_STATE(2211)] = 111743, + [SMALL_STATE(2212)] = 111755, + [SMALL_STATE(2213)] = 111769, + [SMALL_STATE(2214)] = 111783, + [SMALL_STATE(2215)] = 111797, + [SMALL_STATE(2216)] = 111811, + [SMALL_STATE(2217)] = 111825, + [SMALL_STATE(2218)] = 111839, + [SMALL_STATE(2219)] = 111853, + [SMALL_STATE(2220)] = 111863, + [SMALL_STATE(2221)] = 111877, + [SMALL_STATE(2222)] = 111889, + [SMALL_STATE(2223)] = 111903, + [SMALL_STATE(2224)] = 111917, + [SMALL_STATE(2225)] = 111931, + [SMALL_STATE(2226)] = 111945, + [SMALL_STATE(2227)] = 111959, + [SMALL_STATE(2228)] = 111973, + [SMALL_STATE(2229)] = 111987, + [SMALL_STATE(2230)] = 112001, + [SMALL_STATE(2231)] = 112015, + [SMALL_STATE(2232)] = 112029, + [SMALL_STATE(2233)] = 112040, + [SMALL_STATE(2234)] = 112051, + [SMALL_STATE(2235)] = 112062, + [SMALL_STATE(2236)] = 112073, + [SMALL_STATE(2237)] = 112084, + [SMALL_STATE(2238)] = 112093, + [SMALL_STATE(2239)] = 112104, + [SMALL_STATE(2240)] = 112115, + [SMALL_STATE(2241)] = 112124, + [SMALL_STATE(2242)] = 112133, + [SMALL_STATE(2243)] = 112142, + [SMALL_STATE(2244)] = 112151, + [SMALL_STATE(2245)] = 112160, + [SMALL_STATE(2246)] = 112169, + [SMALL_STATE(2247)] = 112178, + [SMALL_STATE(2248)] = 112187, + [SMALL_STATE(2249)] = 112198, + [SMALL_STATE(2250)] = 112209, + [SMALL_STATE(2251)] = 112220, + [SMALL_STATE(2252)] = 112231, + [SMALL_STATE(2253)] = 112242, + [SMALL_STATE(2254)] = 112251, + [SMALL_STATE(2255)] = 112260, + [SMALL_STATE(2256)] = 112269, + [SMALL_STATE(2257)] = 112280, + [SMALL_STATE(2258)] = 112291, + [SMALL_STATE(2259)] = 112302, + [SMALL_STATE(2260)] = 112311, + [SMALL_STATE(2261)] = 112320, + [SMALL_STATE(2262)] = 112329, + [SMALL_STATE(2263)] = 112338, + [SMALL_STATE(2264)] = 112347, + [SMALL_STATE(2265)] = 112358, + [SMALL_STATE(2266)] = 112369, + [SMALL_STATE(2267)] = 112380, + [SMALL_STATE(2268)] = 112389, + [SMALL_STATE(2269)] = 112400, + [SMALL_STATE(2270)] = 112409, + [SMALL_STATE(2271)] = 112418, + [SMALL_STATE(2272)] = 112427, + [SMALL_STATE(2273)] = 112436, + [SMALL_STATE(2274)] = 112447, + [SMALL_STATE(2275)] = 112456, + [SMALL_STATE(2276)] = 112465, + [SMALL_STATE(2277)] = 112476, + [SMALL_STATE(2278)] = 112487, + [SMALL_STATE(2279)] = 112496, + [SMALL_STATE(2280)] = 112505, + [SMALL_STATE(2281)] = 112514, + [SMALL_STATE(2282)] = 112523, + [SMALL_STATE(2283)] = 112534, + [SMALL_STATE(2284)] = 112545, + [SMALL_STATE(2285)] = 112554, + [SMALL_STATE(2286)] = 112565, + [SMALL_STATE(2287)] = 112574, + [SMALL_STATE(2288)] = 112585, + [SMALL_STATE(2289)] = 112596, + [SMALL_STATE(2290)] = 112607, + [SMALL_STATE(2291)] = 112616, + [SMALL_STATE(2292)] = 112625, + [SMALL_STATE(2293)] = 112636, + [SMALL_STATE(2294)] = 112645, + [SMALL_STATE(2295)] = 112654, + [SMALL_STATE(2296)] = 112665, + [SMALL_STATE(2297)] = 112674, + [SMALL_STATE(2298)] = 112685, + [SMALL_STATE(2299)] = 112694, + [SMALL_STATE(2300)] = 112703, + [SMALL_STATE(2301)] = 112712, + [SMALL_STATE(2302)] = 112721, + [SMALL_STATE(2303)] = 112730, + [SMALL_STATE(2304)] = 112741, + [SMALL_STATE(2305)] = 112752, + [SMALL_STATE(2306)] = 112761, + [SMALL_STATE(2307)] = 112770, + [SMALL_STATE(2308)] = 112781, + [SMALL_STATE(2309)] = 112790, + [SMALL_STATE(2310)] = 112799, + [SMALL_STATE(2311)] = 112808, + [SMALL_STATE(2312)] = 112819, + [SMALL_STATE(2313)] = 112830, + [SMALL_STATE(2314)] = 112841, + [SMALL_STATE(2315)] = 112852, + [SMALL_STATE(2316)] = 112863, + [SMALL_STATE(2317)] = 112872, + [SMALL_STATE(2318)] = 112881, + [SMALL_STATE(2319)] = 112890, + [SMALL_STATE(2320)] = 112899, + [SMALL_STATE(2321)] = 112908, + [SMALL_STATE(2322)] = 112917, + [SMALL_STATE(2323)] = 112926, + [SMALL_STATE(2324)] = 112937, + [SMALL_STATE(2325)] = 112948, + [SMALL_STATE(2326)] = 112957, + [SMALL_STATE(2327)] = 112968, + [SMALL_STATE(2328)] = 112977, + [SMALL_STATE(2329)] = 112986, + [SMALL_STATE(2330)] = 112997, + [SMALL_STATE(2331)] = 113006, + [SMALL_STATE(2332)] = 113015, + [SMALL_STATE(2333)] = 113026, + [SMALL_STATE(2334)] = 113037, + [SMALL_STATE(2335)] = 113046, + [SMALL_STATE(2336)] = 113055, + [SMALL_STATE(2337)] = 113066, + [SMALL_STATE(2338)] = 113075, + [SMALL_STATE(2339)] = 113086, + [SMALL_STATE(2340)] = 113097, + [SMALL_STATE(2341)] = 113108, + [SMALL_STATE(2342)] = 113119, + [SMALL_STATE(2343)] = 113130, + [SMALL_STATE(2344)] = 113141, + [SMALL_STATE(2345)] = 113152, + [SMALL_STATE(2346)] = 113163, + [SMALL_STATE(2347)] = 113174, + [SMALL_STATE(2348)] = 113183, + [SMALL_STATE(2349)] = 113194, + [SMALL_STATE(2350)] = 113202, + [SMALL_STATE(2351)] = 113210, + [SMALL_STATE(2352)] = 113218, + [SMALL_STATE(2353)] = 113226, + [SMALL_STATE(2354)] = 113234, + [SMALL_STATE(2355)] = 113242, + [SMALL_STATE(2356)] = 113250, + [SMALL_STATE(2357)] = 113258, + [SMALL_STATE(2358)] = 113266, + [SMALL_STATE(2359)] = 113274, + [SMALL_STATE(2360)] = 113282, + [SMALL_STATE(2361)] = 113290, + [SMALL_STATE(2362)] = 113298, + [SMALL_STATE(2363)] = 113306, + [SMALL_STATE(2364)] = 113314, + [SMALL_STATE(2365)] = 113322, + [SMALL_STATE(2366)] = 113330, + [SMALL_STATE(2367)] = 113338, + [SMALL_STATE(2368)] = 113346, + [SMALL_STATE(2369)] = 113354, + [SMALL_STATE(2370)] = 113362, + [SMALL_STATE(2371)] = 113370, + [SMALL_STATE(2372)] = 113378, + [SMALL_STATE(2373)] = 113386, + [SMALL_STATE(2374)] = 113394, + [SMALL_STATE(2375)] = 113402, + [SMALL_STATE(2376)] = 113410, + [SMALL_STATE(2377)] = 113418, + [SMALL_STATE(2378)] = 113426, + [SMALL_STATE(2379)] = 113434, + [SMALL_STATE(2380)] = 113442, + [SMALL_STATE(2381)] = 113450, + [SMALL_STATE(2382)] = 113458, + [SMALL_STATE(2383)] = 113466, + [SMALL_STATE(2384)] = 113474, + [SMALL_STATE(2385)] = 113482, + [SMALL_STATE(2386)] = 113490, + [SMALL_STATE(2387)] = 113498, + [SMALL_STATE(2388)] = 113506, + [SMALL_STATE(2389)] = 113514, + [SMALL_STATE(2390)] = 113522, + [SMALL_STATE(2391)] = 113530, + [SMALL_STATE(2392)] = 113538, + [SMALL_STATE(2393)] = 113546, + [SMALL_STATE(2394)] = 113554, + [SMALL_STATE(2395)] = 113562, + [SMALL_STATE(2396)] = 113570, + [SMALL_STATE(2397)] = 113578, + [SMALL_STATE(2398)] = 113586, + [SMALL_STATE(2399)] = 113594, + [SMALL_STATE(2400)] = 113602, + [SMALL_STATE(2401)] = 113610, + [SMALL_STATE(2402)] = 113618, + [SMALL_STATE(2403)] = 113626, + [SMALL_STATE(2404)] = 113634, + [SMALL_STATE(2405)] = 113642, + [SMALL_STATE(2406)] = 113650, + [SMALL_STATE(2407)] = 113658, + [SMALL_STATE(2408)] = 113666, + [SMALL_STATE(2409)] = 113674, + [SMALL_STATE(2410)] = 113682, + [SMALL_STATE(2411)] = 113690, + [SMALL_STATE(2412)] = 113698, + [SMALL_STATE(2413)] = 113706, + [SMALL_STATE(2414)] = 113714, + [SMALL_STATE(2415)] = 113722, + [SMALL_STATE(2416)] = 113730, + [SMALL_STATE(2417)] = 113738, + [SMALL_STATE(2418)] = 113746, + [SMALL_STATE(2419)] = 113754, + [SMALL_STATE(2420)] = 113762, + [SMALL_STATE(2421)] = 113770, + [SMALL_STATE(2422)] = 113778, + [SMALL_STATE(2423)] = 113786, + [SMALL_STATE(2424)] = 113794, + [SMALL_STATE(2425)] = 113802, + [SMALL_STATE(2426)] = 113810, + [SMALL_STATE(2427)] = 113818, + [SMALL_STATE(2428)] = 113826, + [SMALL_STATE(2429)] = 113834, + [SMALL_STATE(2430)] = 113842, + [SMALL_STATE(2431)] = 113850, + [SMALL_STATE(2432)] = 113858, + [SMALL_STATE(2433)] = 113866, + [SMALL_STATE(2434)] = 113874, + [SMALL_STATE(2435)] = 113882, + [SMALL_STATE(2436)] = 113890, + [SMALL_STATE(2437)] = 113898, + [SMALL_STATE(2438)] = 113906, + [SMALL_STATE(2439)] = 113914, + [SMALL_STATE(2440)] = 113922, + [SMALL_STATE(2441)] = 113930, + [SMALL_STATE(2442)] = 113938, + [SMALL_STATE(2443)] = 113946, + [SMALL_STATE(2444)] = 113954, + [SMALL_STATE(2445)] = 113962, + [SMALL_STATE(2446)] = 113970, + [SMALL_STATE(2447)] = 113978, + [SMALL_STATE(2448)] = 113986, + [SMALL_STATE(2449)] = 113994, + [SMALL_STATE(2450)] = 114002, + [SMALL_STATE(2451)] = 114010, + [SMALL_STATE(2452)] = 114018, + [SMALL_STATE(2453)] = 114026, + [SMALL_STATE(2454)] = 114034, + [SMALL_STATE(2455)] = 114042, + [SMALL_STATE(2456)] = 114050, + [SMALL_STATE(2457)] = 114058, + [SMALL_STATE(2458)] = 114066, + [SMALL_STATE(2459)] = 114074, + [SMALL_STATE(2460)] = 114082, + [SMALL_STATE(2461)] = 114090, + [SMALL_STATE(2462)] = 114098, + [SMALL_STATE(2463)] = 114106, + [SMALL_STATE(2464)] = 114114, + [SMALL_STATE(2465)] = 114122, + [SMALL_STATE(2466)] = 114130, + [SMALL_STATE(2467)] = 114138, + [SMALL_STATE(2468)] = 114146, + [SMALL_STATE(2469)] = 114154, + [SMALL_STATE(2470)] = 114162, + [SMALL_STATE(2471)] = 114170, + [SMALL_STATE(2472)] = 114178, + [SMALL_STATE(2473)] = 114186, + [SMALL_STATE(2474)] = 114194, + [SMALL_STATE(2475)] = 114202, + [SMALL_STATE(2476)] = 114210, + [SMALL_STATE(2477)] = 114218, + [SMALL_STATE(2478)] = 114226, + [SMALL_STATE(2479)] = 114234, + [SMALL_STATE(2480)] = 114242, + [SMALL_STATE(2481)] = 114250, + [SMALL_STATE(2482)] = 114258, + [SMALL_STATE(2483)] = 114266, + [SMALL_STATE(2484)] = 114274, + [SMALL_STATE(2485)] = 114282, + [SMALL_STATE(2486)] = 114290, + [SMALL_STATE(2487)] = 114298, + [SMALL_STATE(2488)] = 114306, + [SMALL_STATE(2489)] = 114314, + [SMALL_STATE(2490)] = 114322, + [SMALL_STATE(2491)] = 114330, + [SMALL_STATE(2492)] = 114338, + [SMALL_STATE(2493)] = 114346, + [SMALL_STATE(2494)] = 114354, + [SMALL_STATE(2495)] = 114362, + [SMALL_STATE(2496)] = 114370, + [SMALL_STATE(2497)] = 114378, + [SMALL_STATE(2498)] = 114386, + [SMALL_STATE(2499)] = 114394, + [SMALL_STATE(2500)] = 114402, + [SMALL_STATE(2501)] = 114410, + [SMALL_STATE(2502)] = 114418, + [SMALL_STATE(2503)] = 114426, + [SMALL_STATE(2504)] = 114434, + [SMALL_STATE(2505)] = 114442, + [SMALL_STATE(2506)] = 114450, + [SMALL_STATE(2507)] = 114458, + [SMALL_STATE(2508)] = 114466, + [SMALL_STATE(2509)] = 114474, + [SMALL_STATE(2510)] = 114482, + [SMALL_STATE(2511)] = 114490, + [SMALL_STATE(2512)] = 114498, + [SMALL_STATE(2513)] = 114506, + [SMALL_STATE(2514)] = 114514, + [SMALL_STATE(2515)] = 114522, + [SMALL_STATE(2516)] = 114530, + [SMALL_STATE(2517)] = 114538, + [SMALL_STATE(2518)] = 114546, + [SMALL_STATE(2519)] = 114554, + [SMALL_STATE(2520)] = 114562, + [SMALL_STATE(2521)] = 114570, + [SMALL_STATE(2522)] = 114578, + [SMALL_STATE(2523)] = 114586, + [SMALL_STATE(2524)] = 114594, + [SMALL_STATE(2525)] = 114602, + [SMALL_STATE(2526)] = 114610, + [SMALL_STATE(2527)] = 114618, + [SMALL_STATE(2528)] = 114626, + [SMALL_STATE(2529)] = 114634, + [SMALL_STATE(2530)] = 114642, + [SMALL_STATE(2531)] = 114650, + [SMALL_STATE(2532)] = 114658, + [SMALL_STATE(2533)] = 114666, + [SMALL_STATE(2534)] = 114674, + [SMALL_STATE(2535)] = 114682, + [SMALL_STATE(2536)] = 114690, + [SMALL_STATE(2537)] = 114698, + [SMALL_STATE(2538)] = 114706, + [SMALL_STATE(2539)] = 114714, + [SMALL_STATE(2540)] = 114722, + [SMALL_STATE(2541)] = 114730, + [SMALL_STATE(2542)] = 114738, + [SMALL_STATE(2543)] = 114746, + [SMALL_STATE(2544)] = 114754, + [SMALL_STATE(2545)] = 114762, + [SMALL_STATE(2546)] = 114770, + [SMALL_STATE(2547)] = 114778, + [SMALL_STATE(2548)] = 114786, + [SMALL_STATE(2549)] = 114794, + [SMALL_STATE(2550)] = 114802, + [SMALL_STATE(2551)] = 114810, + [SMALL_STATE(2552)] = 114818, + [SMALL_STATE(2553)] = 114826, + [SMALL_STATE(2554)] = 114834, + [SMALL_STATE(2555)] = 114842, + [SMALL_STATE(2556)] = 114850, + [SMALL_STATE(2557)] = 114858, + [SMALL_STATE(2558)] = 114866, + [SMALL_STATE(2559)] = 114874, + [SMALL_STATE(2560)] = 114882, + [SMALL_STATE(2561)] = 114890, + [SMALL_STATE(2562)] = 114898, + [SMALL_STATE(2563)] = 114906, + [SMALL_STATE(2564)] = 114914, + [SMALL_STATE(2565)] = 114922, + [SMALL_STATE(2566)] = 114930, + [SMALL_STATE(2567)] = 114938, + [SMALL_STATE(2568)] = 114946, + [SMALL_STATE(2569)] = 114954, + [SMALL_STATE(2570)] = 114962, + [SMALL_STATE(2571)] = 114970, + [SMALL_STATE(2572)] = 114978, + [SMALL_STATE(2573)] = 114986, + [SMALL_STATE(2574)] = 114994, + [SMALL_STATE(2575)] = 115002, + [SMALL_STATE(2576)] = 115010, + [SMALL_STATE(2577)] = 115018, + [SMALL_STATE(2578)] = 115026, + [SMALL_STATE(2579)] = 115034, + [SMALL_STATE(2580)] = 115042, + [SMALL_STATE(2581)] = 115050, + [SMALL_STATE(2582)] = 115058, + [SMALL_STATE(2583)] = 115066, + [SMALL_STATE(2584)] = 115074, + [SMALL_STATE(2585)] = 115082, + [SMALL_STATE(2586)] = 115090, + [SMALL_STATE(2587)] = 115098, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -129434,2448 +130282,2338 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(145), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(128), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(156), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2577), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1996), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1759), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(742), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(39), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(477), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(303), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(388), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(291), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2333), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2331), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2330), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2354), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2346), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(474), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(403), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(536), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(609), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(406), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2425), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(342), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(481), - [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(767), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(767), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1493), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(287), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(971), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(80), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(543), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(544), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(971), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(545), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(986), - [253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1584), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .production_id = 2), - [288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, .production_id = 2), - [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 2), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 2), SHIFT(231), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .production_id = 2), REDUCE(sym_primary_expression, 1, .production_id = 2), - [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 2), SHIFT(230), - [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 2), - [303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 2), - [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 2), REDUCE(sym_primary_expression, 1, .production_id = 2), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 2), SHIFT(707), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 2), SHIFT(481), - [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 2), SHIFT(767), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(128), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(143), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(158), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2583), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1976), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1744), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(813), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(37), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(433), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(297), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(390), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(289), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2337), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2335), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2334), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2366), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2350), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(431), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(412), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(536), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(604), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(415), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2431), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(383), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(448), + [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(784), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(784), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1497), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(281), + [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(964), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(81), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(545), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(543), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(964), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(542), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(962), + [241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1595), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .production_id = 2), + [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, .production_id = 2), + [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 2), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 2), SHIFT(235), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 2), SHIFT(233), + [300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 2), + [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 2), + [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 2), REDUCE(sym_primary_expression, 1, .production_id = 2), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 2), SHIFT(729), + [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 2), SHIFT(448), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 2), SHIFT(784), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .production_id = 2), REDUCE(sym_primary_expression, 1, .production_id = 2), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 5), - [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 5), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 2), REDUCE(sym_list_splat_pattern, 2, .production_id = 5), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 2), REDUCE(sym_list_splat_pattern, 2, .production_id = 5), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, .production_id = 73), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, .production_id = 73), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 66), - [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 66), - [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 65), - [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 65), - [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 52), - [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, .production_id = 52), - [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 5), + [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 5), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 2), REDUCE(sym_list_splat_pattern, 2, .production_id = 5), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 2), REDUCE(sym_list_splat_pattern, 2, .production_id = 5), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 65), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 65), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), + [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, .production_id = 73), + [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, .production_id = 73), [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), - [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 5), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 43), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4), - [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .dynamic_precedence = -1, .production_id = 44), - [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .dynamic_precedence = -1, .production_id = 6), - [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 81), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 81), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 70), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 70), - [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), - [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), - [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 25), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 25), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 37), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 37), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 37), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 37), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 68), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 68), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 88), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 88), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), - [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(417), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [1450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(393), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2), - [1457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2), - [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 3), - [1469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1, .production_id = 3), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 3), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 15), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 15), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 25), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 25), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), - [1488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), REDUCE(sym_tuple, 2), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [1499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2), REDUCE(sym_list, 2), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 77), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 77), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 76), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 76), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 86), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 86), - [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 86), SHIFT_REPEAT(410), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, .production_id = 97), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, .production_id = 97), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, .production_id = 92), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, .production_id = 92), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 97), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 97), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, .production_id = 40), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, .production_id = 40), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, .production_id = 40), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, .production_id = 40), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 96), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 96), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 99), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 99), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 74), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 74), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, .production_id = 69), - [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, .production_id = 69), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 68), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 68), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 77), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 77), - [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3), - [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 70), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 70), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 90), - [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 90), - [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3), - [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2), - [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 94), - [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 94), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 80), - [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 80), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 81), - [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 81), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 81), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 81), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 70), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 70), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, .production_id = 92), - [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, .production_id = 92), - [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4), - [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4), - [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_python_function_definition, 7, .production_id = 48), - [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_python_function_definition, 7, .production_id = 48), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 87), - [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 87), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 98), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 98), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 85), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 85), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 100), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 100), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, .production_id = 71), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, .production_id = 71), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, .production_id = 89), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, .production_id = 89), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 78), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 78), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 82), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 82), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_python_function_definition, 8, .production_id = 63), - [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_python_function_definition, 8, .production_id = 63), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 75), - [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 75), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 95), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 95), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, .production_id = 81), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, .production_id = 81), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 101), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 101), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 91), - [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 91), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 79), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 79), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_python_function_definition, 5, .production_id = 18), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_python_function_definition, 5, .production_id = 18), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 70), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 70), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 93), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 93), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_python_function_definition, 6, .production_id = 32), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_python_function_definition, 6, .production_id = 32), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1584), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1582), - [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1591), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 14), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 14), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), - [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 7), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 7), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2), - [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1597), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_python_string, 2), - [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_python_string, 2), - [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1583), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 26), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 26), - [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_python_string, 3), - [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_python_string, 3), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 27), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 27), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1588), - [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1612), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1604), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 8), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 8), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), - [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 20), - [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 20), - [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), - [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 20), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 20), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 20), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 20), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 21), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 21), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, .production_id = 21), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, .production_id = 21), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, .production_id = 21), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, .production_id = 21), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 21), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 21), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe, 1), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_recipe_repeat1, 2), - [2391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(2480), - [2394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(1860), - [2397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(1999), - [2400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(1997), - [2403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(1847), - [2406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(2572), - [2409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(2281), - [2412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(2566), - [2415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(2565), - [2418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(2564), - [2421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(2285), - [2424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(2286), - [2427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(2258), - [2430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(2560), - [2433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(1486), - [2436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(2296), - [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), - [2443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(798), - [2446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2409), - [2449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(798), - [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(687), - [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 9), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 9), - [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(812), - [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2375), - [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(812), - [2468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(685), - [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(793), - [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2404), - [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(793), - [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(680), - [2483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(821), - [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2450), - [2489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(821), - [2492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(684), - [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(748), - [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2460), - [2501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(748), - [2504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(686), - [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(751), - [2510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2437), - [2513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(751), - [2516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(689), - [2519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(721), - [2522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2472), - [2525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(721), - [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(683), - [2531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(827), - [2534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2546), - [2537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(827), - [2540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(688), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_list_repeat1, 2), - [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_list_repeat1, 2), SHIFT_REPEAT(631), - [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(720), - [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2479), - [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(720), - [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(682), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_list_repeat1, 2), SHIFT_REPEAT(638), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 66), + [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 66), + [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 52), + [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, .production_id = 52), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 5), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .dynamic_precedence = -1, .production_id = 6), + [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .dynamic_precedence = -1, .production_id = 44), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 43), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3), + [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4), + [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 70), + [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 70), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 81), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 81), + [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 37), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 37), + [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 37), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 37), + [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), + [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), REDUCE(sym_tuple, 2), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), + [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(514), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 3), + [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1, .production_id = 3), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 3), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 25), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 25), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(394), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 15), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 15), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 25), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 25), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 68), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 68), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2), + [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2), + [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 77), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 77), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [1501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2), REDUCE(sym_list, 2), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 76), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 76), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 88), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 88), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 86), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 86), + [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 86), SHIFT_REPEAT(436), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, .production_id = 92), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, .production_id = 92), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, .production_id = 97), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, .production_id = 97), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, .production_id = 40), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, .production_id = 40), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 97), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 97), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, .production_id = 40), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, .production_id = 40), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 96), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 96), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 74), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 74), + [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 90), + [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 90), + [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 70), + [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 70), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3), + [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 80), + [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 80), + [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, .production_id = 69), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, .production_id = 69), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 81), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 81), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 94), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 94), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 99), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 99), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 68), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 68), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 77), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 77), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 70), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 70), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 81), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 81), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 93), + [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 93), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_python_function_definition, 5, .production_id = 18), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_python_function_definition, 5, .production_id = 18), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_python_function_definition, 6, .production_id = 32), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_python_function_definition, 6, .production_id = 32), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 82), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 82), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 70), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 70), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, .production_id = 92), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, .production_id = 92), + [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 91), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 91), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 78), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 78), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 87), + [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 87), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, .production_id = 89), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, .production_id = 89), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 79), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 79), + [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_python_function_definition, 7, .production_id = 48), + [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_python_function_definition, 7, .production_id = 48), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, .production_id = 71), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, .production_id = 71), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 75), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 75), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 85), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 85), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 95), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 95), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_python_function_definition, 8, .production_id = 63), + [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_python_function_definition, 8, .production_id = 63), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 101), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 101), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, .production_id = 81), + [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, .production_id = 81), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 98), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 98), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 100), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 100), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1595), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1619), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1614), + [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 14), + [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 14), + [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1584), + [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 27), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 27), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 26), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 26), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 7), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 7), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_python_string, 3), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_python_string, 3), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1609), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1626), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_python_string, 2), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_python_string, 2), + [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1589), + [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, .production_id = 21), + [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, .production_id = 21), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recipe, 1), + [2222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1592), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_recipe_repeat1, 2), + [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(2483), + [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(1779), + [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(1802), + [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(1965), + [2239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(1963), + [2242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(1815), + [2245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(2573), + [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(2342), + [2251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(2571), + [2254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(2570), + [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(2569), + [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(2341), + [2263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(2338), + [2266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(2333), + [2269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(2565), + [2272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(1487), + [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), SHIFT_REPEAT(2332), + [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 8), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 8), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 20), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 20), + [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 20), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 20), + [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 20), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 20), + [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4), + [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, .production_id = 21), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, .production_id = 21), + [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 21), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 21), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5), + [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 21), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 21), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 9), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 9), + [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), + [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(700), + [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2415), + [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(700), + [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(681), + [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(716), + [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2380), + [2470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(716), + [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(685), + [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(818), + [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2456), + [2482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(818), + [2485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(686), + [2488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(796), + [2491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2411), + [2494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(796), + [2497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(689), + [2500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(767), + [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2459), + [2506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(767), + [2509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(683), + [2512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(709), + [2515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2458), + [2518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(709), + [2521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(688), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2), + [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(715), + [2529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2478), + [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(715), + [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(684), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_list_repeat1, 2), + [2540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_list_repeat1, 2), SHIFT_REPEAT(640), + [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(829), + [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2516), + [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(829), + [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(687), + [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(764), + [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2527), + [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(764), + [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(682), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2), + [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_recipe_repeat1, 2), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [2679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(753), - [2682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2356), - [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(753), - [2688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(681), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), - [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override, 2), - [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override, 2), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 3), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 3), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), - [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_override_repeat1, 2), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_override_repeat1, 2), - [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), - [2721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1960), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_expansion, 2), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_expansion, 2), - [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_expansion, 3), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_expansion, 3), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 6), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 14), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_override_repeat1, 2), SHIFT_REPEAT(1702), - [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override, 4), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override, 4), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 12), - [2793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 12), SHIFT(475), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, .production_id = 13), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = 1, .production_id = 41), SHIFT(258), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1555), - [2850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1555), - [2853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(407), - [2856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2278), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, .production_id = 24), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, .production_id = 11), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override, 3), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override, 3), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(1579), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), - [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(1579), - [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(433), - [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(2332), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_override_repeat1, 3), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_override_repeat1, 3), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_flag, 3), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_flag, 3), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_python_string_repeat1, 2), SHIFT_REPEAT(164), - [2956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_python_string_repeat1, 2), SHIFT_REPEAT(1756), - [2959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_python_string_repeat1, 2), SHIFT_REPEAT(1756), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_python_string_repeat1, 2), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 12), SHIFT(398), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, .production_id = 13), - [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 14), - [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 12), SHIFT(443), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 12), SHIFT(497), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 12), SHIFT(461), - [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), - [3066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 12), SHIFT(442), - [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 6), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [3099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 12), SHIFT(525), - [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, .production_id = 31), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inherit_directive, 2), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_python, 3), - [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_python, 3), - [3150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_definition_repeat1, 2), SHIFT_REPEAT(2374), - [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2), - [3155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2), SHIFT_REPEAT(514), - [3158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_definition_repeat1, 2), SHIFT_REPEAT(2084), - [3161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2), SHIFT_REPEAT(1689), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 12), SHIFT(513), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, .dynamic_precedence = -1, .production_id = 6), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [3211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 12), SHIFT(487), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 22), - [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_inherit_directive_repeat1, 2), - [3228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inherit_directive_repeat1, 2), SHIFT_REPEAT(1735), - [3231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inherit_directive_repeat1, 2), SHIFT_REPEAT(455), - [3234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inherit_directive_repeat1, 2), SHIFT_REPEAT(2293), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 6), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), - [3253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(437), - [3256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2407), - [3259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(615), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 36), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_list_repeat1, 2), SHIFT_REPEAT(628), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [2684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(798), + [2687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2360), + [2690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(798), + [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(680), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 3), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 3), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), + [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override, 2), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override, 2), + [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_override_repeat1, 2), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_override_repeat1, 2), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), + [2726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1987), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_expansion, 3), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_expansion, 3), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_expansion, 2), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_expansion, 2), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 14), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 6), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [2829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1549), + [2832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1549), + [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(450), + [2838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2282), + [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, .production_id = 11), + [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = 1, .production_id = 41), SHIFT(268), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override, 3), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override, 3), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 12), + [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 12), SHIFT(495), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, .production_id = 24), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, .production_id = 13), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override, 4), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override, 4), + [2897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_override_repeat1, 2), SHIFT_REPEAT(1723), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(1579), + [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), + [2919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(1579), + [2922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(488), + [2925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(2336), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_python_string_repeat1, 2), SHIFT_REPEAT(164), + [2987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_python_string_repeat1, 2), SHIFT_REPEAT(1762), + [2990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_python_string_repeat1, 2), SHIFT_REPEAT(1762), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_python_string_repeat1, 2), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_flag, 3), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_flag, 3), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [3027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 12), SHIFT(503), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_override_repeat1, 3), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_override_repeat1, 3), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [3050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_definition_repeat1, 2), SHIFT_REPEAT(2379), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2), + [3055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2), SHIFT_REPEAT(466), + [3058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_definition_repeat1, 2), SHIFT_REPEAT(2257), + [3061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_definition_repeat1, 2), SHIFT_REPEAT(2086), + [3064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2), SHIFT_REPEAT(1625), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 14), + [3075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 12), SHIFT(445), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), + [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 12), SHIFT(493), + [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 6), + [3121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 12), SHIFT(413), + [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, .production_id = 13), + [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), + [3128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 12), SHIFT(414), + [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inherit_defer_directive, 2), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inherit_directive, 2), + [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, .production_id = 31), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, .dynamic_precedence = -1, .production_id = 6), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_python, 3), + [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_python, 3), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 22), + [3213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 12), SHIFT(423), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 12), SHIFT(526), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [3231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 12), SHIFT(458), + [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_inherit_directive_repeat1, 2), + [3236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inherit_directive_repeat1, 2), SHIFT_REPEAT(1731), + [3239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inherit_directive_repeat1, 2), SHIFT_REPEAT(476), + [3242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inherit_directive_repeat1, 2), SHIFT_REPEAT(2264), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), + [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(494), + [3260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2587), + [3263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(600), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(484), - [3289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2581), - [3292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(622), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), - [3323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1763), - [3326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1763), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2), - [3335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(460), - [3338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2580), - [3341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(610), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = 1, .production_id = 41), - [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 52), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3), - [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 47), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 45), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, .production_id = 62), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), - [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_directive, 2, .production_id = 1), - [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_require_directive, 2, .production_id = 1), - [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_directive, 2, .production_id = 1), - [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_directive, 2, .production_id = 1), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, .production_id = 64), - [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, .production_id = 64), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 23), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 12), - [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 65), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 66), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 53), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), - [3458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2510), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5), - [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 49), - [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 49), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), - [3469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(364), - [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, .production_id = 19), - [3474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, .production_id = 19), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 50), - [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 50), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 51), - [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 51), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_directive_repeat1, 2), - [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_directive_repeat1, 2), - [3490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_directive_repeat1, 2), SHIFT_REPEAT(1985), - [3493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_directive_repeat1, 2), SHIFT_REPEAT(2311), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 12), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 39), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 73), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(349), - [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_list_repeat1, 2), SHIFT_REPEAT(628), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(420), - [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 19), - [3537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 19), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [3551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(340), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 34), - [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 34), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 35), - [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 35), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, .production_id = 42), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, .production_id = 24), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_functions_statement_repeat1, 2), - [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_functions_statement_repeat1, 2), - [3576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_functions_statement_repeat1, 2), SHIFT_REPEAT(1870), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, .production_id = 11), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2462), - [3596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(163), - [3599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), - [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(1891), - [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_addtask_statement, 4), - [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_addtask_statement, 4), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5), - [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(401), - [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 30), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [3701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 12), SHIFT(404), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 30), - [3712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_functions_statement_repeat1, 2), SHIFT_REPEAT(1949), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7), - [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_addtask_statement, 6), - [3731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_addtask_statement, 6), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .dynamic_precedence = -1, .production_id = 44), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), - [3741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(533), - [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2), - [3746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(1963), - [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3), - [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 43), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 42), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 56), - [3775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(2107), - [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 61), - [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 61), SHIFT_REPEAT(415), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_addtask_statement, 2), - [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_addtask_statement, 2), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), - [3793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), SHIFT_REPEAT(2515), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 55), - [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_functions_statement, 2), - [3806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_functions_statement, 2), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_directive_repeat1, 1), - [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_directive_repeat1, 1), - [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 2), - [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 2), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2), - [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, .production_id = 31), - [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), - [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1987), - [3843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_functions_statement_repeat1, 2), SHIFT_REPEAT(2003), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(440), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), SHIFT_REPEAT(79), - [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), - [3908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_list_repeat1, 2), SHIFT_REPEAT(644), - [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 57), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_list_repeat1, 2), SHIFT_REPEAT(629), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(462), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), - [3999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(395), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [4006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(283), - [4009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(251), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(391), - [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 38), - [4057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 38), SHIFT_REPEAT(383), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(293), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2), SHIFT_REPEAT(182), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 33), - [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 33), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), - [4132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), SHIFT_REPEAT(302), - [4135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(2113), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, .production_id = 31), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_override_repeat1, 2), SHIFT_REPEAT(1662), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [4171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2522), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(276), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), - [4193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(1517), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [4232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(1516), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_list_repeat1, 2), SHIFT_REPEAT(641), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [4254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(482), - [4257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overrides_statement_repeat1, 2), SHIFT_REPEAT(2358), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overrides_statement_repeat1, 2), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overrides_statement, 6), - [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overrides_statement, 6), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_python_function, 6, .production_id = 28), - [4284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_python_function, 6, .production_id = 28), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 29), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 4, .production_id = 10), - [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 4, .production_id = 10), - [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3), - [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, .production_id = 20), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [3310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(480), + [3313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2407), + [3316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(620), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 36), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 6), + [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), + [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1769), + [3352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1769), + [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(437), + [3366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2586), + [3369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(609), + [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6), + [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 73), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 52), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 53), + [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 65), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3), + [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), + [3410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2549), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 51), + [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 51), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 50), + [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 50), + [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = 1, .production_id = 41), + [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7), + [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 49), + [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 49), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3), + [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 47), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 45), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, .production_id = 62), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), + [3477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(352), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, .production_id = 64), + [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, .production_id = 64), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 12), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_directive_repeat1, 2), + [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_directive_repeat1, 2), + [3500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_directive_repeat1, 2), SHIFT_REPEAT(1997), + [3503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_directive_repeat1, 2), SHIFT_REPEAT(2313), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 39), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 23), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 12), + [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 66), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 35), + [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 35), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 34), + [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 34), + [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, .production_id = 19), + [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, .production_id = 19), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 19), + [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 19), + [3548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(444), + [3551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_list_repeat1, 2), SHIFT_REPEAT(637), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(368), + [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(362), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_directive, 2, .production_id = 1), + [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_require_directive, 2, .production_id = 1), + [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_directive, 2, .production_id = 1), + [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_directive, 2, .production_id = 1), + [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 12), SHIFT(463), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [3599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2493), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 30), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_functions_statement_repeat1, 2), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_functions_statement_repeat1, 2), + [3620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_functions_statement_repeat1, 2), SHIFT_REPEAT(1882), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [3631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(163), + [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), + [3636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(1887), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, .production_id = 24), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, .production_id = 11), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [3667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(417), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_addtask_statement, 4), + [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_addtask_statement, 4), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, .production_id = 42), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_functions_statement_repeat1, 2), SHIFT_REPEAT(1945), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 30), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [3751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(531), + [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 42), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2), + [3760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(1972), + [3763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_functions_statement_repeat1, 2), SHIFT_REPEAT(1973), + [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 61), + [3768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 61), SHIFT_REPEAT(460), + [3771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1989), + [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 43), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .dynamic_precedence = -1, .production_id = 44), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3), + [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), + [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), SHIFT_REPEAT(2562), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, .production_id = 31), + [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2), + [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 56), + [3811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(2149), + [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 55), + [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_addtask_statement, 2), + [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_addtask_statement, 2), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_directive_repeat1, 1), + [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_directive_repeat1, 1), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_functions_statement, 2), + [3832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_functions_statement, 2), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_addtask_statement, 6), + [3842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_addtask_statement, 6), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), + [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 2), + [3858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 2), + [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_list_repeat1, 2), SHIFT_REPEAT(627), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), + [3895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(1516), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 57), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), SHIFT_REPEAT(79), + [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(468), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(283), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(291), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_list_repeat1, 2), SHIFT_REPEAT(630), + [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(483), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(252), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_list_repeat1, 2), SHIFT_REPEAT(633), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [4054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_override_repeat1, 2), SHIFT_REPEAT(1675), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(292), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 38), + [4086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 38), SHIFT_REPEAT(376), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), + [4101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(392), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 33), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 33), + [4122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(490), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [4131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(388), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), + [4136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), SHIFT_REPEAT(322), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, .production_id = 31), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [4185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 56), SHIFT_REPEAT(2099), + [4188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2), SHIFT_REPEAT(167), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2584), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [4216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(1520), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overrides_statement_repeat1, 2), SHIFT_REPEAT(2361), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overrides_statement_repeat1, 2), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overrides_statement, 6), + [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overrides_statement, 6), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_python_function, 6, .production_id = 28), + [4302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_python_function, 6, .production_id = 28), [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, .production_id = 83), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_python_function, 10), - [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_python_function, 10), - [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 72), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 20), - [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, .production_id = 84), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_python_function, 7, .production_id = 40), - [4348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_python_function, 7, .production_id = 40), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_python_function, 9, .production_id = 67), - [4352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_python_function, 9, .production_id = 67), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_python_function, 9), - [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_python_function, 9), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 4), - [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 4), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), - [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_python_function, 7), - [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_python_function, 7), - [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deltask_statement, 2), - [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_deltask_statement, 2), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_addhandler_statement, 2), - [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_addhandler_statement, 2), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 60), - [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 59), - [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1), - [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, .production_id = 58), - [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 46), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 14), - [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), - [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 3), - [4432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 3), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_python_function, 8, .production_id = 54), - [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_python_function, 8, .production_id = 54), - [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overrides_statement, 5), - [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overrides_statement, 5), - [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_python_function, 8), - [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_python_function, 8), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [4666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [4742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4816] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), -}; - -enum ts_external_scanner_symbol_identifiers { - ts_external_token__concat = 0, - ts_external_token__newline = 1, - ts_external_token__indent = 2, - ts_external_token__dedent = 3, - ts_external_token_string_start = 4, - ts_external_token__string_content = 5, - ts_external_token_escape_interpolation = 6, - ts_external_token_string_end = 7, - ts_external_token_comment = 8, - ts_external_token_RBRACK = 9, - ts_external_token_RPAREN = 10, - ts_external_token_RBRACE = 11, - ts_external_token_shell_content = 12, -}; - -static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token__concat] = sym__concat, - [ts_external_token__newline] = sym__newline, - [ts_external_token__indent] = sym__indent, - [ts_external_token__dedent] = sym__dedent, - [ts_external_token_string_start] = sym_string_start, - [ts_external_token__string_content] = sym__string_content, - [ts_external_token_escape_interpolation] = sym_escape_interpolation, - [ts_external_token_string_end] = sym_string_end, - [ts_external_token_comment] = sym_comment, - [ts_external_token_RBRACK] = anon_sym_RBRACK, - [ts_external_token_RPAREN] = anon_sym_RPAREN, - [ts_external_token_RBRACE] = anon_sym_RBRACE, - [ts_external_token_shell_content] = sym_shell_content, -}; - -static const bool ts_external_scanner_states[17][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token__concat] = true, - [ts_external_token__newline] = true, - [ts_external_token__indent] = true, - [ts_external_token__dedent] = true, - [ts_external_token_string_start] = true, - [ts_external_token__string_content] = true, - [ts_external_token_escape_interpolation] = true, - [ts_external_token_string_end] = true, - [ts_external_token_comment] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_RPAREN] = true, - [ts_external_token_RBRACE] = true, - [ts_external_token_shell_content] = true, - }, - [2] = { - [ts_external_token_comment] = true, - }, - [3] = { - [ts_external_token__dedent] = true, - [ts_external_token_string_start] = true, - [ts_external_token_comment] = true, - }, - [4] = { - [ts_external_token__newline] = true, - [ts_external_token__indent] = true, - [ts_external_token_string_start] = true, - [ts_external_token_comment] = true, - }, - [5] = { - [ts_external_token__newline] = true, - [ts_external_token_string_start] = true, - [ts_external_token_comment] = true, - }, - [6] = { - [ts_external_token_string_start] = true, - [ts_external_token_comment] = true, - }, - [7] = { - [ts_external_token_string_start] = true, - [ts_external_token_comment] = true, - [ts_external_token_RBRACE] = true, - }, - [8] = { - [ts_external_token_string_start] = true, - [ts_external_token_comment] = true, - [ts_external_token_RPAREN] = true, - }, - [9] = { - [ts_external_token_string_start] = true, - [ts_external_token_comment] = true, - [ts_external_token_RBRACK] = true, - }, - [10] = { - [ts_external_token__newline] = true, - [ts_external_token_comment] = true, - }, - [11] = { - [ts_external_token_comment] = true, - [ts_external_token_RBRACE] = true, - }, - [12] = { - [ts_external_token_comment] = true, - [ts_external_token_RBRACK] = true, - }, - [13] = { - [ts_external_token_comment] = true, - [ts_external_token_RPAREN] = true, - }, - [14] = { - [ts_external_token__concat] = true, - [ts_external_token_comment] = true, - }, - [15] = { - [ts_external_token__string_content] = true, - [ts_external_token_escape_interpolation] = true, - [ts_external_token_string_end] = true, - [ts_external_token_comment] = true, - }, - [16] = { - [ts_external_token_comment] = true, - [ts_external_token_RBRACE] = true, - [ts_external_token_shell_content] = true, - }, + [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 29), + [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, .production_id = 84), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, .production_id = 83), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 4, .production_id = 10), + [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 4, .production_id = 10), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_python_function, 10), + [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_python_function, 10), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 72), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 4), + [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 4), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_python_function, 9, .production_id = 67), + [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_python_function, 9, .production_id = 67), + [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_python_function, 9), + [4354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_python_function, 9), + [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 20), + [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), + [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, .production_id = 20), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_python_function, 7), + [4380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_python_function, 7), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 3), + [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 3), + [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [4396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_python_function, 7, .production_id = 40), + [4400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_python_function, 7, .production_id = 40), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_addhandler_statement, 2), + [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_addhandler_statement, 2), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deltask_statement, 2), + [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_deltask_statement, 2), + [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 60), + [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 59), + [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1), + [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, .production_id = 58), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 46), + [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 14), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), + [4438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_python_function, 8), + [4460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_python_function, 8), + [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_python_function, 8, .production_id = 54), + [4464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_python_function, 8, .production_id = 54), + [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overrides_statement, 5), + [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overrides_statement, 5), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [4834] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), }; #ifdef __cplusplus diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 17b4fde..2b14ac1 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -13,8 +13,9 @@ extern "C" { #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 -#ifndef TREE_SITTER_API_H_ typedef uint16_t TSStateId; + +#ifndef TREE_SITTER_API_H_ typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; @@ -129,16 +130,9 @@ struct TSLanguage { * Lexer Macros */ -#ifdef _MSC_VER -#define UNUSED __pragma(warning(suppress : 4101)) -#else -#define UNUSED __attribute__((unused)) -#endif - #define START_LEXER() \ bool result = false; \ bool skip = false; \ - UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ @@ -172,7 +166,7 @@ struct TSLanguage { * Parse Table Macros */ -#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) +#define SMALL_STATE(id) id - LARGE_STATE_COUNT #define STATE(id) id @@ -182,7 +176,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = (state_value) \ + .state = state_value \ } \ }} @@ -190,7 +184,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = (state_value), \ + .state = state_value, \ .repetition = true \ } \ }}