From a5bc14e448a3ce8d18a1c761d71ed394545746f3 Mon Sep 17 00:00:00 2001 From: Taus Date: Tue, 28 Oct 2025 21:59:18 +0000 Subject: [PATCH 1/4] Python: Add parser support for template strings - Extends the scanner with a new token kind representing the start of a template string. This is used to distinguish template strings from regular strings (because only a template string will start with a `_template_string_start` external token). - Cleans up the logic surrounding interpolations (and the method names) so that format strings and template strings behave the same in this case. Finally, we add two new node types in the tree-sitter grammar: - `template_string` behaves like format strings, but is a distinct type (mainly so that an implicit concatenation between template strings and regular strings becomes a syntax error). - `concatenated_template_string` is the counterpart of `concatenated_string`. However, internally, the string parts of a template strings are just the same `string_content` nodes that are used in regular format strings. We will disambiguate these inside `tsg-python`. --- python/extractor/tsg-python/tsp/grammar.js | 19 +++++++++++++++ .../extractor/tsg-python/tsp/src/scanner.cc | 24 ++++++++++++++++--- 2 files changed, 40 insertions(+), 3 deletions(-) diff --git a/python/extractor/tsg-python/tsp/grammar.js b/python/extractor/tsg-python/tsp/grammar.js index 1618a67dcf59..145fa6a4b9a7 100644 --- a/python/extractor/tsg-python/tsp/grammar.js +++ b/python/extractor/tsg-python/tsp/grammar.js @@ -55,6 +55,7 @@ module.exports = grammar({ $._string_start, $._string_content, $._string_end, + $._template_string_start, ], inline: $ => [ @@ -423,6 +424,8 @@ module.exports = grammar({ ), $.string, $.concatenated_string, + $.template_string, + $.concatenated_template_string, $.none, $.true, $.false @@ -765,6 +768,8 @@ module.exports = grammar({ $.keyword_identifier, $.string, $.concatenated_string, + $.template_string, + $.concatenated_template_string, $.integer, $.float, $.true, @@ -1099,6 +1104,20 @@ module.exports = grammar({ field('suffix', alias($._string_end, '"')) ), + concatenated_template_string: $ => seq( + $.template_string, + repeat1($.template_string) + ), + + template_string: $ => seq( + field('prefix', alias($._template_string_start, '"')), + repeat(choice( + field('interpolation', $.interpolation), + field('string_content', $.string_content) + )), + field('suffix', alias($._string_end, '"')) + ), + string_content: $ => prec.right(0, repeat1( choice( $._escape_interpolation, diff --git a/python/extractor/tsg-python/tsp/src/scanner.cc b/python/extractor/tsg-python/tsp/src/scanner.cc index 3b253919c66e..ce8bbf94b6a2 100644 --- a/python/extractor/tsg-python/tsp/src/scanner.cc +++ b/python/extractor/tsg-python/tsp/src/scanner.cc @@ -17,6 +17,7 @@ enum TokenType { STRING_START, STRING_CONTENT, STRING_END, + TEMPLATE_STRING_START, }; struct Delimiter { @@ -28,6 +29,7 @@ struct Delimiter { Format = 1 << 4, Triple = 1 << 5, Bytes = 1 << 6, + Template = 1 << 7, }; Delimiter() : flags(0) {} @@ -36,6 +38,14 @@ struct Delimiter { return flags & Format; } + bool is_template() const { + return flags & Template; + } + + bool can_interpolate() const { + return is_format() || is_template(); + } + bool is_raw() const { return flags & Raw; } @@ -59,6 +69,10 @@ struct Delimiter { flags |= Format; } + void set_template() { + flags |= Template; + } + void set_raw() { flags |= Raw; } @@ -154,7 +168,7 @@ struct Scanner { int32_t end_character = delimiter.end_character(); bool has_content = false; while (lexer->lookahead) { - if ((lexer->lookahead == '{' || lexer->lookahead == '}') && delimiter.is_format()) { + if ((lexer->lookahead == '{' || lexer->lookahead == '}') && delimiter.can_interpolate()) { lexer->mark_end(lexer); lexer->result_symbol = STRING_CONTENT; return has_content; @@ -322,13 +336,17 @@ struct Scanner { } } - if (first_comment_indent_length == -1 && valid_symbols[STRING_START]) { + bool expects_string_start = valid_symbols[STRING_START] || valid_symbols[TEMPLATE_STRING_START]; + + if (first_comment_indent_length == -1 && expects_string_start) { Delimiter delimiter; bool has_flags = false; while (lexer->lookahead) { if (lexer->lookahead == 'f' || lexer->lookahead == 'F') { delimiter.set_format(); + } else if (lexer->lookahead == 't' || lexer->lookahead == 'T') { + delimiter.set_template(); } else if (lexer->lookahead == 'r' || lexer->lookahead == 'R') { delimiter.set_raw(); } else if (lexer->lookahead == 'b' || lexer->lookahead == 'B') { @@ -372,7 +390,7 @@ struct Scanner { if (delimiter.end_character()) { delimiter_stack.push_back(delimiter); - lexer->result_symbol = STRING_START; + lexer->result_symbol = delimiter.is_template() ? TEMPLATE_STRING_START : STRING_START; return true; } else if (has_flags) { return false; From dd89f825335b4b213b30a0f4a4a6495e44c62f75 Mon Sep 17 00:00:00 2001 From: Taus Date: Tue, 28 Oct 2025 21:59:32 +0000 Subject: [PATCH 2/4] Python: Regenerate parser files --- .../extractor/tsg-python/tsp/src/grammar.json | 91 + .../tsg-python/tsp/src/node-types.json | 77 + python/extractor/tsg-python/tsp/src/parser.c | 78309 ++++++++-------- .../tsg-python/tsp/src/tree_sitter/parser.h | 1 - 4 files changed, 39991 insertions(+), 38487 deletions(-) diff --git a/python/extractor/tsg-python/tsp/src/grammar.json b/python/extractor/tsg-python/tsp/src/grammar.json index c638cc74297b..7d43a3ca6ad3 100644 --- a/python/extractor/tsg-python/tsp/src/grammar.json +++ b/python/extractor/tsg-python/tsp/src/grammar.json @@ -1800,6 +1800,14 @@ "type": "SYMBOL", "name": "concatenated_string" }, + { + "type": "SYMBOL", + "name": "template_string" + }, + { + "type": "SYMBOL", + "name": "concatenated_template_string" + }, { "type": "SYMBOL", "name": "none" @@ -3891,6 +3899,14 @@ "type": "SYMBOL", "name": "concatenated_string" }, + { + "type": "SYMBOL", + "name": "template_string" + }, + { + "type": "SYMBOL", + "name": "concatenated_template_string" + }, { "type": "SYMBOL", "name": "integer" @@ -5982,6 +5998,77 @@ } ] }, + "concatenated_template_string": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "template_string" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "template_string" + } + } + ] + }, + "template_string": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "prefix", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_template_string_start" + }, + "named": false, + "value": "\"" + } + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "interpolation", + "content": { + "type": "SYMBOL", + "name": "interpolation" + } + }, + { + "type": "FIELD", + "name": "string_content", + "content": { + "type": "SYMBOL", + "name": "string_content" + } + } + ] + } + }, + { + "type": "FIELD", + "name": "suffix", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_string_end" + }, + "named": false, + "value": "\"" + } + } + ] + }, "string_content": { "type": "PREC_RIGHT", "value": 0, @@ -6710,6 +6797,10 @@ { "type": "SYMBOL", "name": "_string_end" + }, + { + "type": "SYMBOL", + "name": "_template_string_start" } ], "inline": [ diff --git a/python/extractor/tsg-python/tsp/src/node-types.json b/python/extractor/tsg-python/tsp/src/node-types.json index 26fa5fd3f76b..abb7cf172929 100644 --- a/python/extractor/tsg-python/tsp/src/node-types.json +++ b/python/extractor/tsg-python/tsp/src/node-types.json @@ -241,6 +241,10 @@ "type": "concatenated_string", "named": true }, + { + "type": "concatenated_template_string", + "named": true + }, { "type": "dictionary", "named": true @@ -305,6 +309,10 @@ "type": "subscript", "named": true }, + { + "type": "template_string", + "named": true + }, { "type": "true", "named": true @@ -1000,6 +1008,21 @@ ] } }, + { + "type": "concatenated_template_string", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "template_string", + "named": true + } + ] + } + }, { "type": "conditional_expression", "named": true, @@ -2460,6 +2483,10 @@ "type": "concatenated_string", "named": true }, + { + "type": "concatenated_template_string", + "named": true + }, { "type": "false", "named": true @@ -2472,6 +2499,10 @@ "type": "string", "named": true }, + { + "type": "template_string", + "named": true + }, { "type": "true", "named": true @@ -3257,6 +3288,52 @@ } } }, + { + "type": "template_string", + "named": true, + "fields": { + "interpolation": { + "multiple": true, + "required": false, + "types": [ + { + "type": "interpolation", + "named": true + } + ] + }, + "prefix": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\"", + "named": false + } + ] + }, + "string_content": { + "multiple": true, + "required": false, + "types": [ + { + "type": "string_content", + "named": true + } + ] + }, + "suffix": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\"", + "named": false + } + ] + } + } + }, { "type": "try_statement", "named": true, diff --git a/python/extractor/tsg-python/tsp/src/parser.c b/python/extractor/tsg-python/tsp/src/parser.c index 506a539bea6c..0d535e87adc3 100644 --- a/python/extractor/tsg-python/tsp/src/parser.c +++ b/python/extractor/tsg-python/tsp/src/parser.c @@ -5,13 +5,13 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 14 -#define STATE_COUNT 1479 -#define LARGE_STATE_COUNT 149 -#define SYMBOL_COUNT 282 +#define LANGUAGE_VERSION 13 +#define STATE_COUNT 1502 +#define LARGE_STATE_COUNT 152 +#define SYMBOL_COUNT 286 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 107 -#define EXTERNAL_TOKEN_COUNT 6 +#define TOKEN_COUNT 108 +#define EXTERNAL_TOKEN_COUNT 7 #define FIELD_COUNT 54 #define MAX_ALIAS_SEQUENCE_LENGTH 10 #define PRODUCTION_ID_COUNT 166 @@ -123,184 +123,188 @@ enum { sym__string_start = 104, sym__string_content = 105, sym__string_end = 106, - sym_module = 107, - sym__statement = 108, - sym__simple_statements = 109, - sym_import_statement = 110, - sym_import_prefix = 111, - sym_relative_import = 112, - sym_future_import_statement = 113, - sym_import_from_statement = 114, - sym__import_list = 115, - sym_aliased_import = 116, - sym_wildcard_import = 117, - sym_print_statement = 118, - sym_chevron = 119, - sym_assert_statement = 120, - sym_expression_statement = 121, - sym_named_expression = 122, - sym_return_statement = 123, - sym_delete_statement = 124, - sym_raise_statement = 125, - sym_pass_statement = 126, - sym_break_statement = 127, - sym_continue_statement = 128, - sym_if_statement = 129, - sym_elif_clause = 130, - sym_else_clause = 131, - sym_for_statement = 132, - sym_while_statement = 133, - sym_try_statement = 134, - sym_except_clause = 135, - sym_except_group_clause = 136, - sym_finally_clause = 137, - sym_with_statement = 138, - sym_with_clause = 139, - sym_with_item = 140, - sym_match_statement = 141, - sym_cases = 142, - sym_case_block = 143, - sym__match_patterns = 144, - sym_open_sequence_match_pattern = 145, - sym__match_pattern = 146, - sym_match_as_pattern = 147, - sym__match_or_pattern = 148, - sym_match_or_pattern = 149, - sym__closed_pattern = 150, - sym_match_literal_pattern = 151, - sym_match_capture_pattern = 152, - sym_match_value_pattern = 153, - sym_match_group_pattern = 154, - sym_match_sequence_pattern = 155, - sym__match_maybe_star_pattern = 156, - sym_match_star_pattern = 157, - sym_match_mapping_pattern = 158, - sym_match_double_star_pattern = 159, - sym_match_key_value_pattern = 160, - sym_match_class_pattern = 161, - sym_pattern_class_name = 162, - sym_match_positional_pattern = 163, - sym_match_keyword_pattern = 164, - sym_guard = 165, - sym_function_definition = 166, - sym_parameters = 167, - sym_lambda_parameters = 168, - sym_list_splat = 169, - sym_dictionary_splat = 170, - sym_global_statement = 171, - sym_nonlocal_statement = 172, - sym_exec_statement = 173, - sym_type_alias_statement = 174, - sym_class_definition = 175, - sym_type_parameters = 176, - sym__type_bound = 177, - sym_typevar_parameter = 178, - sym_typevartuple_parameter = 179, - sym_paramspec_parameter = 180, - sym__type_parameter = 181, - sym__type_param_default = 182, - sym_parenthesized_list_splat = 183, - sym_argument_list = 184, - sym_decorated_definition = 185, - sym_decorator = 186, - sym_block = 187, - sym_expression_list = 188, - sym_dotted_name = 189, - sym__parameters = 190, - sym__patterns = 191, - sym_parameter = 192, - sym_pattern = 193, - sym_tuple_pattern = 194, - sym_list_pattern = 195, - sym_default_parameter = 196, - sym_typed_default_parameter = 197, - sym_list_splat_pattern = 198, - sym_dictionary_splat_pattern = 199, - sym__expression_within_for_in_clause = 200, - sym_expression = 201, - sym_primary_expression = 202, - sym_not_operator = 203, - sym_boolean_operator = 204, - sym_binary_operator = 205, - sym_unary_operator = 206, - sym_comparison_operator = 207, - sym_lambda = 208, - sym_lambda_within_for_in_clause = 209, - sym_assignment = 210, - sym_augmented_assignment = 211, - sym_pattern_list = 212, - sym__right_hand_side = 213, - sym_yield = 214, - sym_attribute = 215, - sym__index_expression = 216, - sym_index_expression_list = 217, - sym_subscript = 218, - sym_slice = 219, - sym_call = 220, - sym_typed_parameter = 221, - sym_type = 222, - sym_keyword_argument = 223, - sym_list = 224, - sym_set = 225, - sym_tuple = 226, - sym_dictionary = 227, - sym_pair = 228, - sym_list_comprehension = 229, - sym_dictionary_comprehension = 230, - sym_set_comprehension = 231, - sym_generator_expression = 232, - sym__comprehension_clauses = 233, - sym_parenthesized_expression = 234, - sym__collection_elements = 235, - sym_for_in_clause = 236, - sym_if_clause = 237, - sym_conditional_expression = 238, - sym_concatenated_string = 239, - sym_string = 240, - sym_string_content = 241, - sym_interpolation = 242, - sym__f_expression = 243, - sym_format_specifier = 244, - sym_await = 245, - sym_positional_separator = 246, - sym_keyword_separator = 247, - aux_sym_module_repeat1 = 248, - aux_sym__simple_statements_repeat1 = 249, - aux_sym_import_prefix_repeat1 = 250, - aux_sym__import_list_repeat1 = 251, - aux_sym_print_statement_repeat1 = 252, - aux_sym_assert_statement_repeat1 = 253, - aux_sym_if_statement_repeat1 = 254, - aux_sym_try_statement_repeat1 = 255, - aux_sym_try_statement_repeat2 = 256, - aux_sym_with_clause_repeat1 = 257, - aux_sym_cases_repeat1 = 258, - aux_sym_open_sequence_match_pattern_repeat1 = 259, - aux_sym_match_or_pattern_repeat1 = 260, - aux_sym_match_value_pattern_repeat1 = 261, - aux_sym_match_mapping_pattern_repeat1 = 262, - aux_sym_match_class_pattern_repeat1 = 263, - aux_sym_match_class_pattern_repeat2 = 264, - aux_sym_global_statement_repeat1 = 265, - aux_sym_type_parameters_repeat1 = 266, - aux_sym_argument_list_repeat1 = 267, - aux_sym_decorated_definition_repeat1 = 268, - aux_sym_expression_list_repeat1 = 269, - aux_sym__parameters_repeat1 = 270, - aux_sym__patterns_repeat1 = 271, - aux_sym_comparison_operator_repeat1 = 272, - aux_sym_index_expression_list_repeat1 = 273, - aux_sym_dictionary_repeat1 = 274, - aux_sym__comprehension_clauses_repeat1 = 275, - aux_sym__collection_elements_repeat1 = 276, - aux_sym_for_in_clause_repeat1 = 277, - aux_sym_concatenated_string_repeat1 = 278, - aux_sym_string_repeat1 = 279, - aux_sym_string_content_repeat1 = 280, - aux_sym_format_specifier_repeat1 = 281, - alias_sym_format_expression = 282, - anon_alias_sym_isnot = 283, - anon_alias_sym_notin = 284, + sym__template_string_start = 107, + sym_module = 108, + sym__statement = 109, + sym__simple_statements = 110, + sym_import_statement = 111, + sym_import_prefix = 112, + sym_relative_import = 113, + sym_future_import_statement = 114, + sym_import_from_statement = 115, + sym__import_list = 116, + sym_aliased_import = 117, + sym_wildcard_import = 118, + sym_print_statement = 119, + sym_chevron = 120, + sym_assert_statement = 121, + sym_expression_statement = 122, + sym_named_expression = 123, + sym_return_statement = 124, + sym_delete_statement = 125, + sym_raise_statement = 126, + sym_pass_statement = 127, + sym_break_statement = 128, + sym_continue_statement = 129, + sym_if_statement = 130, + sym_elif_clause = 131, + sym_else_clause = 132, + sym_for_statement = 133, + sym_while_statement = 134, + sym_try_statement = 135, + sym_except_clause = 136, + sym_except_group_clause = 137, + sym_finally_clause = 138, + sym_with_statement = 139, + sym_with_clause = 140, + sym_with_item = 141, + sym_match_statement = 142, + sym_cases = 143, + sym_case_block = 144, + sym__match_patterns = 145, + sym_open_sequence_match_pattern = 146, + sym__match_pattern = 147, + sym_match_as_pattern = 148, + sym__match_or_pattern = 149, + sym_match_or_pattern = 150, + sym__closed_pattern = 151, + sym_match_literal_pattern = 152, + sym_match_capture_pattern = 153, + sym_match_value_pattern = 154, + sym_match_group_pattern = 155, + sym_match_sequence_pattern = 156, + sym__match_maybe_star_pattern = 157, + sym_match_star_pattern = 158, + sym_match_mapping_pattern = 159, + sym_match_double_star_pattern = 160, + sym_match_key_value_pattern = 161, + sym_match_class_pattern = 162, + sym_pattern_class_name = 163, + sym_match_positional_pattern = 164, + sym_match_keyword_pattern = 165, + sym_guard = 166, + sym_function_definition = 167, + sym_parameters = 168, + sym_lambda_parameters = 169, + sym_list_splat = 170, + sym_dictionary_splat = 171, + sym_global_statement = 172, + sym_nonlocal_statement = 173, + sym_exec_statement = 174, + sym_type_alias_statement = 175, + sym_class_definition = 176, + sym_type_parameters = 177, + sym__type_bound = 178, + sym_typevar_parameter = 179, + sym_typevartuple_parameter = 180, + sym_paramspec_parameter = 181, + sym__type_parameter = 182, + sym__type_param_default = 183, + sym_parenthesized_list_splat = 184, + sym_argument_list = 185, + sym_decorated_definition = 186, + sym_decorator = 187, + sym_block = 188, + sym_expression_list = 189, + sym_dotted_name = 190, + sym__parameters = 191, + sym__patterns = 192, + sym_parameter = 193, + sym_pattern = 194, + sym_tuple_pattern = 195, + sym_list_pattern = 196, + sym_default_parameter = 197, + sym_typed_default_parameter = 198, + sym_list_splat_pattern = 199, + sym_dictionary_splat_pattern = 200, + sym__expression_within_for_in_clause = 201, + sym_expression = 202, + sym_primary_expression = 203, + sym_not_operator = 204, + sym_boolean_operator = 205, + sym_binary_operator = 206, + sym_unary_operator = 207, + sym_comparison_operator = 208, + sym_lambda = 209, + sym_lambda_within_for_in_clause = 210, + sym_assignment = 211, + sym_augmented_assignment = 212, + sym_pattern_list = 213, + sym__right_hand_side = 214, + sym_yield = 215, + sym_attribute = 216, + sym__index_expression = 217, + sym_index_expression_list = 218, + sym_subscript = 219, + sym_slice = 220, + sym_call = 221, + sym_typed_parameter = 222, + sym_type = 223, + sym_keyword_argument = 224, + sym_list = 225, + sym_set = 226, + sym_tuple = 227, + sym_dictionary = 228, + sym_pair = 229, + sym_list_comprehension = 230, + sym_dictionary_comprehension = 231, + sym_set_comprehension = 232, + sym_generator_expression = 233, + sym__comprehension_clauses = 234, + sym_parenthesized_expression = 235, + sym__collection_elements = 236, + sym_for_in_clause = 237, + sym_if_clause = 238, + sym_conditional_expression = 239, + sym_concatenated_string = 240, + sym_string = 241, + sym_concatenated_template_string = 242, + sym_template_string = 243, + sym_string_content = 244, + sym_interpolation = 245, + sym__f_expression = 246, + sym_format_specifier = 247, + sym_await = 248, + sym_positional_separator = 249, + sym_keyword_separator = 250, + aux_sym_module_repeat1 = 251, + aux_sym__simple_statements_repeat1 = 252, + aux_sym_import_prefix_repeat1 = 253, + aux_sym__import_list_repeat1 = 254, + aux_sym_print_statement_repeat1 = 255, + aux_sym_assert_statement_repeat1 = 256, + aux_sym_if_statement_repeat1 = 257, + aux_sym_try_statement_repeat1 = 258, + aux_sym_try_statement_repeat2 = 259, + aux_sym_with_clause_repeat1 = 260, + aux_sym_cases_repeat1 = 261, + aux_sym_open_sequence_match_pattern_repeat1 = 262, + aux_sym_match_or_pattern_repeat1 = 263, + aux_sym_match_value_pattern_repeat1 = 264, + aux_sym_match_mapping_pattern_repeat1 = 265, + aux_sym_match_class_pattern_repeat1 = 266, + aux_sym_match_class_pattern_repeat2 = 267, + aux_sym_global_statement_repeat1 = 268, + aux_sym_type_parameters_repeat1 = 269, + aux_sym_argument_list_repeat1 = 270, + aux_sym_decorated_definition_repeat1 = 271, + aux_sym_expression_list_repeat1 = 272, + aux_sym__parameters_repeat1 = 273, + aux_sym__patterns_repeat1 = 274, + aux_sym_comparison_operator_repeat1 = 275, + aux_sym_index_expression_list_repeat1 = 276, + aux_sym_dictionary_repeat1 = 277, + aux_sym__comprehension_clauses_repeat1 = 278, + aux_sym__collection_elements_repeat1 = 279, + aux_sym_for_in_clause_repeat1 = 280, + aux_sym_concatenated_string_repeat1 = 281, + aux_sym_string_repeat1 = 282, + aux_sym_concatenated_template_string_repeat1 = 283, + aux_sym_string_content_repeat1 = 284, + aux_sym_format_specifier_repeat1 = 285, + alias_sym_format_expression = 286, + anon_alias_sym_isnot = 287, + anon_alias_sym_notin = 288, }; static const char * const ts_symbol_names[] = { @@ -411,6 +415,7 @@ static const char * const ts_symbol_names[] = { [sym__string_start] = "\"", [sym__string_content] = "_string_content", [sym__string_end] = "\"", + [sym__template_string_start] = "\"", [sym_module] = "module", [sym__statement] = "_statement", [sym__simple_statements] = "_simple_statements", @@ -545,6 +550,8 @@ static const char * const ts_symbol_names[] = { [sym_conditional_expression] = "conditional_expression", [sym_concatenated_string] = "concatenated_string", [sym_string] = "string", + [sym_concatenated_template_string] = "concatenated_template_string", + [sym_template_string] = "template_string", [sym_string_content] = "string_content", [sym_interpolation] = "interpolation", [sym__f_expression] = "_f_expression", @@ -584,6 +591,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_for_in_clause_repeat1] = "for_in_clause_repeat1", [aux_sym_concatenated_string_repeat1] = "concatenated_string_repeat1", [aux_sym_string_repeat1] = "string_repeat1", + [aux_sym_concatenated_template_string_repeat1] = "concatenated_template_string_repeat1", [aux_sym_string_content_repeat1] = "string_content_repeat1", [aux_sym_format_specifier_repeat1] = "format_specifier_repeat1", [alias_sym_format_expression] = "format_expression", @@ -699,6 +707,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__string_start] = sym__string_start, [sym__string_content] = sym__string_content, [sym__string_end] = sym__string_start, + [sym__template_string_start] = sym__string_start, [sym_module] = sym_module, [sym__statement] = sym__statement, [sym__simple_statements] = sym__simple_statements, @@ -833,6 +842,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_conditional_expression] = sym_conditional_expression, [sym_concatenated_string] = sym_concatenated_string, [sym_string] = sym_string, + [sym_concatenated_template_string] = sym_concatenated_template_string, + [sym_template_string] = sym_template_string, [sym_string_content] = sym_string_content, [sym_interpolation] = sym_interpolation, [sym__f_expression] = sym__f_expression, @@ -872,6 +883,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_for_in_clause_repeat1] = aux_sym_for_in_clause_repeat1, [aux_sym_concatenated_string_repeat1] = aux_sym_concatenated_string_repeat1, [aux_sym_string_repeat1] = aux_sym_string_repeat1, + [aux_sym_concatenated_template_string_repeat1] = aux_sym_concatenated_template_string_repeat1, [aux_sym_string_content_repeat1] = aux_sym_string_content_repeat1, [aux_sym_format_specifier_repeat1] = aux_sym_format_specifier_repeat1, [alias_sym_format_expression] = alias_sym_format_expression, @@ -1308,6 +1320,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [sym__template_string_start] = { + .visible = true, + .named = false, + }, [sym_module] = { .visible = true, .named = true, @@ -1848,6 +1864,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_concatenated_template_string] = { + .visible = true, + .named = true, + }, + [sym_template_string] = { + .visible = true, + .named = true, + }, [sym_string_content] = { .visible = true, .named = true, @@ -2004,6 +2028,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_concatenated_template_string_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_string_content_repeat1] = { .visible = false, .named = false, @@ -2990,2295 +3018,761 @@ static const uint16_t ts_non_terminal_alias_map[] = { 0, }; -static const TSStateId ts_primary_state_ids[STATE_COUNT] = { - [0] = 0, - [1] = 1, - [2] = 2, - [3] = 3, - [4] = 4, - [5] = 5, - [6] = 6, - [7] = 7, - [8] = 8, - [9] = 9, - [10] = 10, - [11] = 11, - [12] = 12, - [13] = 13, - [14] = 14, - [15] = 15, - [16] = 16, - [17] = 17, - [18] = 18, - [19] = 19, - [20] = 20, - [21] = 21, - [22] = 22, - [23] = 23, - [24] = 24, - [25] = 25, - [26] = 26, - [27] = 27, - [28] = 28, - [29] = 29, - [30] = 27, - [31] = 21, - [32] = 32, - [33] = 3, - [34] = 4, - [35] = 5, - [36] = 6, - [37] = 7, - [38] = 8, - [39] = 9, - [40] = 10, - [41] = 11, - [42] = 12, - [43] = 13, - [44] = 14, - [45] = 15, - [46] = 16, - [47] = 17, - [48] = 18, - [49] = 19, - [50] = 20, - [51] = 22, - [52] = 23, - [53] = 24, - [54] = 25, - [55] = 26, - [56] = 2, - [57] = 28, - [58] = 29, - [59] = 32, - [60] = 60, - [61] = 61, - [62] = 60, - [63] = 63, - [64] = 60, - [65] = 63, - [66] = 66, - [67] = 66, - [68] = 68, - [69] = 69, - [70] = 70, - [71] = 71, - [72] = 72, - [73] = 73, - [74] = 74, - [75] = 75, - [76] = 76, - [77] = 77, - [78] = 78, - [79] = 79, - [80] = 80, - [81] = 81, - [82] = 71, - [83] = 74, - [84] = 76, - [85] = 78, - [86] = 81, - [87] = 87, - [88] = 87, - [89] = 89, - [90] = 90, - [91] = 89, - [92] = 92, - [93] = 93, - [94] = 94, - [95] = 95, - [96] = 90, - [97] = 97, - [98] = 98, - [99] = 99, - [100] = 100, - [101] = 101, - [102] = 92, - [103] = 93, - [104] = 104, - [105] = 94, - [106] = 106, - [107] = 107, - [108] = 95, - [109] = 97, - [110] = 110, - [111] = 69, - [112] = 98, - [113] = 70, - [114] = 99, - [115] = 73, - [116] = 100, - [117] = 75, - [118] = 101, - [119] = 77, - [120] = 79, - [121] = 104, - [122] = 80, - [123] = 106, - [124] = 107, - [125] = 68, - [126] = 110, - [127] = 127, - [128] = 127, - [129] = 129, - [130] = 129, - [131] = 127, - [132] = 129, - [133] = 133, - [134] = 134, - [135] = 135, - [136] = 136, - [137] = 136, - [138] = 138, - [139] = 138, - [140] = 140, - [141] = 141, - [142] = 136, - [143] = 136, - [144] = 134, - [145] = 138, - [146] = 146, - [147] = 138, - [148] = 146, - [149] = 149, - [150] = 150, - [151] = 151, - [152] = 152, - [153] = 153, - [154] = 153, - [155] = 155, - [156] = 156, - [157] = 157, - [158] = 157, - [159] = 157, - [160] = 160, - [161] = 161, - [162] = 162, - [163] = 163, - [164] = 164, - [165] = 164, - [166] = 164, - [167] = 167, - [168] = 168, - [169] = 169, - [170] = 170, - [171] = 171, - [172] = 170, - [173] = 170, - [174] = 174, - [175] = 171, - [176] = 176, - [177] = 177, - [178] = 152, - [179] = 179, - [180] = 180, - [181] = 181, - [182] = 180, - [183] = 183, - [184] = 162, - [185] = 161, - [186] = 186, - [187] = 187, - [188] = 188, - [189] = 189, - [190] = 190, - [191] = 186, - [192] = 187, - [193] = 188, - [194] = 194, - [195] = 195, - [196] = 183, - [197] = 181, - [198] = 189, - [199] = 190, - [200] = 200, - [201] = 181, - [202] = 180, - [203] = 163, - [204] = 180, - [205] = 189, - [206] = 190, - [207] = 186, - [208] = 187, - [209] = 188, - [210] = 181, - [211] = 211, - [212] = 212, - [213] = 213, - [214] = 214, - [215] = 215, - [216] = 216, - [217] = 217, - [218] = 218, - [219] = 219, - [220] = 214, - [221] = 221, - [222] = 214, - [223] = 223, - [224] = 224, - [225] = 225, - [226] = 226, - [227] = 223, - [228] = 228, - [229] = 229, - [230] = 230, - [231] = 229, - [232] = 232, - [233] = 226, - [234] = 232, - [235] = 235, - [236] = 230, - [237] = 228, - [238] = 238, - [239] = 239, - [240] = 240, - [241] = 239, - [242] = 242, - [243] = 243, - [244] = 240, - [245] = 243, - [246] = 238, - [247] = 243, - [248] = 242, - [249] = 238, - [250] = 242, - [251] = 251, - [252] = 252, - [253] = 253, - [254] = 251, - [255] = 255, - [256] = 256, - [257] = 257, - [258] = 258, - [259] = 259, - [260] = 260, - [261] = 261, - [262] = 262, - [263] = 263, - [264] = 264, - [265] = 265, - [266] = 266, - [267] = 267, - [268] = 268, - [269] = 253, - [270] = 255, - [271] = 268, - [272] = 263, - [273] = 273, - [274] = 260, - [275] = 252, - [276] = 276, - [277] = 266, - [278] = 278, - [279] = 262, - [280] = 280, - [281] = 264, - [282] = 267, - [283] = 261, - [284] = 257, - [285] = 276, - [286] = 259, - [287] = 287, - [288] = 288, - [289] = 289, - [290] = 290, - [291] = 291, - [292] = 292, - [293] = 293, - [294] = 294, - [295] = 295, - [296] = 296, - [297] = 297, - [298] = 298, - [299] = 299, - [300] = 300, - [301] = 301, - [302] = 302, - [303] = 291, - [304] = 304, - [305] = 298, - [306] = 306, - [307] = 307, - [308] = 292, - [309] = 309, - [310] = 310, - [311] = 311, - [312] = 288, - [313] = 313, - [314] = 219, - [315] = 315, - [316] = 316, - [317] = 317, - [318] = 217, - [319] = 319, - [320] = 320, - [321] = 321, - [322] = 322, - [323] = 323, - [324] = 324, - [325] = 325, - [326] = 326, - [327] = 327, - [328] = 328, - [329] = 329, - [330] = 330, - [331] = 331, - [332] = 315, - [333] = 320, - [334] = 321, - [335] = 322, - [336] = 323, - [337] = 324, - [338] = 325, - [339] = 326, - [340] = 327, - [341] = 328, - [342] = 329, - [343] = 313, - [344] = 319, - [345] = 345, - [346] = 346, - [347] = 347, - [348] = 348, - [349] = 349, - [350] = 350, - [351] = 351, - [352] = 352, - [353] = 353, - [354] = 354, - [355] = 355, - [356] = 356, - [357] = 357, - [358] = 358, - [359] = 359, - [360] = 360, - [361] = 361, - [362] = 362, - [363] = 363, - [364] = 364, - [365] = 365, - [366] = 366, - [367] = 367, - [368] = 368, - [369] = 369, - [370] = 370, - [371] = 371, - [372] = 372, - [373] = 373, - [374] = 374, - [375] = 375, - [376] = 376, - [377] = 377, - [378] = 378, - [379] = 379, - [380] = 359, - [381] = 363, - [382] = 364, - [383] = 372, - [384] = 373, - [385] = 385, - [386] = 349, - [387] = 378, - [388] = 388, - [389] = 389, - [390] = 390, - [391] = 347, - [392] = 350, - [393] = 355, - [394] = 388, - [395] = 357, - [396] = 360, - [397] = 361, - [398] = 398, - [399] = 399, - [400] = 365, - [401] = 366, - [402] = 379, - [403] = 403, - [404] = 371, - [405] = 405, - [406] = 406, - [407] = 390, - [408] = 408, - [409] = 378, - [410] = 359, - [411] = 364, - [412] = 372, - [413] = 373, - [414] = 346, - [415] = 388, - [416] = 378, - [417] = 359, - [418] = 364, - [419] = 372, - [420] = 373, - [421] = 346, - [422] = 388, - [423] = 353, - [424] = 368, - [425] = 425, - [426] = 426, - [427] = 427, - [428] = 425, - [429] = 429, - [430] = 430, - [431] = 431, - [432] = 368, - [433] = 433, - [434] = 346, - [435] = 368, - [436] = 370, - [437] = 370, - [438] = 370, - [439] = 389, - [440] = 375, - [441] = 406, - [442] = 348, - [443] = 356, - [444] = 362, - [445] = 445, - [446] = 446, - [447] = 447, - [448] = 447, - [449] = 449, - [450] = 449, - [451] = 451, - [452] = 452, - [453] = 453, - [454] = 451, - [455] = 446, - [456] = 452, - [457] = 453, - [458] = 458, - [459] = 459, - [460] = 460, - [461] = 461, - [462] = 462, - [463] = 463, - [464] = 464, - [465] = 465, - [466] = 466, - [467] = 467, - [468] = 468, - [469] = 469, - [470] = 470, - [471] = 471, - [472] = 472, - [473] = 473, - [474] = 474, - [475] = 475, - [476] = 476, - [477] = 477, - [478] = 478, - [479] = 462, - [480] = 472, - [481] = 481, - [482] = 482, - [483] = 483, - [484] = 484, - [485] = 485, - [486] = 486, - [487] = 487, - [488] = 488, - [489] = 489, - [490] = 490, - [491] = 491, - [492] = 492, - [493] = 493, - [494] = 494, - [495] = 495, - [496] = 459, - [497] = 497, - [498] = 465, - [499] = 466, - [500] = 467, - [501] = 469, - [502] = 476, - [503] = 503, - [504] = 489, - [505] = 497, - [506] = 503, - [507] = 478, - [508] = 508, - [509] = 458, - [510] = 510, - [511] = 481, - [512] = 512, - [513] = 513, - [514] = 514, - [515] = 508, - [516] = 482, - [517] = 517, - [518] = 518, - [519] = 519, - [520] = 520, - [521] = 521, - [522] = 510, - [523] = 483, - [524] = 524, - [525] = 525, - [526] = 512, - [527] = 468, - [528] = 513, - [529] = 514, - [530] = 463, - [531] = 484, - [532] = 460, - [533] = 486, - [534] = 517, - [535] = 518, - [536] = 461, - [537] = 474, - [538] = 519, - [539] = 520, - [540] = 521, - [541] = 487, - [542] = 488, - [543] = 543, - [544] = 475, - [545] = 490, - [546] = 470, - [547] = 524, - [548] = 525, - [549] = 477, - [550] = 464, - [551] = 491, - [552] = 492, - [553] = 493, - [554] = 494, - [555] = 495, - [556] = 471, - [557] = 557, - [558] = 485, - [559] = 559, - [560] = 560, - [561] = 561, - [562] = 560, - [563] = 563, - [564] = 561, - [565] = 565, - [566] = 566, - [567] = 567, - [568] = 568, - [569] = 569, - [570] = 570, - [571] = 571, - [572] = 572, - [573] = 573, - [574] = 574, - [575] = 575, - [576] = 576, - [577] = 577, - [578] = 578, - [579] = 579, - [580] = 580, - [581] = 581, - [582] = 582, - [583] = 583, - [584] = 584, - [585] = 585, - [586] = 586, - [587] = 587, - [588] = 588, - [589] = 589, - [590] = 590, - [591] = 591, - [592] = 592, - [593] = 593, - [594] = 594, - [595] = 590, - [596] = 596, - [597] = 597, - [598] = 598, - [599] = 599, - [600] = 600, - [601] = 601, - [602] = 602, - [603] = 603, - [604] = 604, - [605] = 605, - [606] = 606, - [607] = 607, - [608] = 608, - [609] = 606, - [610] = 607, - [611] = 611, - [612] = 612, - [613] = 613, - [614] = 614, - [615] = 615, - [616] = 616, - [617] = 607, - [618] = 618, - [619] = 607, - [620] = 608, - [621] = 611, - [622] = 612, - [623] = 613, - [624] = 614, - [625] = 615, - [626] = 616, - [627] = 627, - [628] = 628, - [629] = 629, - [630] = 618, - [631] = 629, - [632] = 627, - [633] = 628, - [634] = 634, - [635] = 635, - [636] = 636, - [637] = 637, - [638] = 638, - [639] = 639, - [640] = 640, - [641] = 641, - [642] = 642, - [643] = 566, - [644] = 644, - [645] = 645, - [646] = 646, - [647] = 569, - [648] = 648, - [649] = 649, - [650] = 645, - [651] = 646, - [652] = 646, - [653] = 644, - [654] = 642, - [655] = 635, - [656] = 656, - [657] = 657, - [658] = 658, - [659] = 642, - [660] = 638, - [661] = 635, - [662] = 636, - [663] = 637, - [664] = 638, - [665] = 639, - [666] = 640, - [667] = 641, - [668] = 642, - [669] = 636, - [670] = 645, - [671] = 657, - [672] = 646, - [673] = 640, - [674] = 658, - [675] = 644, - [676] = 644, - [677] = 639, - [678] = 645, - [679] = 641, - [680] = 635, - [681] = 636, - [682] = 637, - [683] = 638, - [684] = 639, - [685] = 640, - [686] = 641, - [687] = 637, - [688] = 566, - [689] = 590, - [690] = 634, - [691] = 656, - [692] = 569, - [693] = 565, - [694] = 612, - [695] = 572, - [696] = 606, - [697] = 627, - [698] = 590, - [699] = 565, - [700] = 570, - [701] = 628, - [702] = 614, - [703] = 611, - [704] = 618, - [705] = 615, - [706] = 613, - [707] = 616, - [708] = 608, - [709] = 629, - [710] = 710, - [711] = 608, - [712] = 712, - [713] = 606, - [714] = 330, - [715] = 657, - [716] = 716, - [717] = 570, - [718] = 615, - [719] = 627, - [720] = 618, - [721] = 628, - [722] = 431, - [723] = 354, - [724] = 572, - [725] = 331, - [726] = 726, - [727] = 629, - [728] = 377, - [729] = 611, - [730] = 616, - [731] = 612, - [732] = 403, - [733] = 613, - [734] = 614, - [735] = 658, - [736] = 581, - [737] = 573, - [738] = 604, - [739] = 575, - [740] = 577, - [741] = 431, - [742] = 403, - [743] = 354, - [744] = 656, - [745] = 634, - [746] = 588, - [747] = 593, - [748] = 580, - [749] = 582, - [750] = 591, - [751] = 592, - [752] = 598, - [753] = 596, - [754] = 597, - [755] = 605, - [756] = 599, - [757] = 601, - [758] = 602, - [759] = 603, - [760] = 594, - [761] = 574, - [762] = 587, - [763] = 578, - [764] = 586, - [765] = 576, - [766] = 583, - [767] = 600, - [768] = 579, - [769] = 657, - [770] = 658, - [771] = 584, - [772] = 585, - [773] = 589, - [774] = 602, - [775] = 587, - [776] = 578, - [777] = 579, - [778] = 584, - [779] = 585, - [780] = 573, - [781] = 604, - [782] = 575, - [783] = 577, - [784] = 217, - [785] = 580, - [786] = 582, - [787] = 591, - [788] = 592, - [789] = 596, - [790] = 597, - [791] = 605, - [792] = 601, - [793] = 588, - [794] = 712, - [795] = 710, - [796] = 589, - [797] = 598, - [798] = 599, - [799] = 593, - [800] = 594, - [801] = 574, - [802] = 586, - [803] = 576, - [804] = 583, - [805] = 600, - [806] = 219, - [807] = 581, - [808] = 603, - [809] = 809, - [810] = 809, - [811] = 811, - [812] = 812, - [813] = 813, - [814] = 814, - [815] = 815, - [816] = 816, - [817] = 817, - [818] = 818, - [819] = 819, - [820] = 820, - [821] = 821, - [822] = 822, - [823] = 823, - [824] = 824, - [825] = 825, - [826] = 826, - [827] = 827, - [828] = 828, - [829] = 829, - [830] = 828, - [831] = 829, - [832] = 832, - [833] = 833, - [834] = 834, - [835] = 829, - [836] = 836, - [837] = 828, - [838] = 838, - [839] = 839, - [840] = 840, - [841] = 829, - [842] = 842, - [843] = 828, - [844] = 844, - [845] = 845, - [846] = 846, - [847] = 847, - [848] = 846, - [849] = 846, - [850] = 846, - [851] = 851, - [852] = 852, - [853] = 853, - [854] = 854, - [855] = 855, - [856] = 856, - [857] = 856, - [858] = 858, - [859] = 858, - [860] = 860, - [861] = 861, - [862] = 861, - [863] = 863, - [864] = 864, - [865] = 865, - [866] = 866, - [867] = 867, - [868] = 867, - [869] = 869, - [870] = 870, - [871] = 871, - [872] = 872, - [873] = 873, - [874] = 874, - [875] = 871, - [876] = 876, - [877] = 872, - [878] = 873, - [879] = 879, - [880] = 866, - [881] = 874, - [882] = 882, - [883] = 883, - [884] = 884, - [885] = 876, - [886] = 886, - [887] = 879, - [888] = 867, - [889] = 889, - [890] = 889, - [891] = 891, - [892] = 891, - [893] = 893, - [894] = 894, - [895] = 895, - [896] = 896, - [897] = 897, - [898] = 898, - [899] = 899, - [900] = 894, - [901] = 895, - [902] = 902, - [903] = 891, - [904] = 889, - [905] = 894, - [906] = 895, - [907] = 891, - [908] = 908, - [909] = 889, - [910] = 893, - [911] = 893, - [912] = 912, - [913] = 913, - [914] = 914, - [915] = 915, - [916] = 916, - [917] = 917, - [918] = 918, - [919] = 919, - [920] = 920, - [921] = 921, - [922] = 922, - [923] = 923, - [924] = 924, - [925] = 925, - [926] = 926, - [927] = 860, - [928] = 928, - [929] = 929, - [930] = 930, - [931] = 931, - [932] = 932, - [933] = 933, - [934] = 934, - [935] = 935, - [936] = 936, - [937] = 937, - [938] = 938, - [939] = 871, - [940] = 863, - [941] = 941, - [942] = 942, - [943] = 943, - [944] = 944, - [945] = 945, - [946] = 872, - [947] = 947, - [948] = 948, - [949] = 949, - [950] = 950, - [951] = 951, - [952] = 879, - [953] = 953, - [954] = 954, - [955] = 955, - [956] = 956, - [957] = 932, - [958] = 873, - [959] = 876, - [960] = 908, - [961] = 961, - [962] = 962, - [963] = 963, - [964] = 964, - [965] = 965, - [966] = 866, - [967] = 874, - [968] = 968, - [969] = 969, - [970] = 866, - [971] = 874, - [972] = 972, - [973] = 973, - [974] = 974, - [975] = 975, - [976] = 876, - [977] = 977, - [978] = 898, - [979] = 979, - [980] = 980, - [981] = 981, - [982] = 863, - [983] = 879, - [984] = 984, - [985] = 985, - [986] = 986, - [987] = 987, - [988] = 988, - [989] = 989, - [990] = 990, - [991] = 991, - [992] = 973, - [993] = 993, - [994] = 994, - [995] = 995, - [996] = 990, - [997] = 997, - [998] = 902, - [999] = 999, - [1000] = 1000, - [1001] = 871, - [1002] = 975, - [1003] = 860, - [1004] = 1004, - [1005] = 1005, - [1006] = 872, - [1007] = 873, - [1008] = 870, - [1009] = 1009, - [1010] = 990, - [1011] = 1011, - [1012] = 1012, - [1013] = 1013, - [1014] = 1014, - [1015] = 1015, - [1016] = 1016, - [1017] = 1017, - [1018] = 1018, - [1019] = 1019, - [1020] = 1020, - [1021] = 1021, - [1022] = 1014, - [1023] = 1023, - [1024] = 1024, - [1025] = 995, - [1026] = 1026, - [1027] = 1027, - [1028] = 1012, - [1029] = 865, - [1030] = 1011, - [1031] = 1031, - [1032] = 1032, - [1033] = 1033, - [1034] = 1032, - [1035] = 1035, - [1036] = 1036, - [1037] = 1037, - [1038] = 1038, - [1039] = 1039, - [1040] = 1017, - [1041] = 1041, - [1042] = 1042, - [1043] = 1043, - [1044] = 1044, - [1045] = 1039, - [1046] = 1046, - [1047] = 1046, - [1048] = 1048, - [1049] = 1049, - [1050] = 1050, - [1051] = 1051, - [1052] = 1052, - [1053] = 1053, - [1054] = 1054, - [1055] = 1055, - [1056] = 1056, - [1057] = 1057, - [1058] = 1058, - [1059] = 1059, - [1060] = 1060, - [1061] = 1061, - [1062] = 882, - [1063] = 984, - [1064] = 1064, - [1065] = 933, - [1066] = 1066, - [1067] = 1060, - [1068] = 1068, - [1069] = 1069, - [1070] = 1070, - [1071] = 1071, - [1072] = 899, - [1073] = 1073, - [1074] = 1074, - [1075] = 925, - [1076] = 1076, - [1077] = 1053, - [1078] = 1078, - [1079] = 936, - [1080] = 1080, - [1081] = 1081, - [1082] = 1082, - [1083] = 1083, - [1084] = 1084, - [1085] = 1085, - [1086] = 1086, - [1087] = 1087, - [1088] = 1088, - [1089] = 1089, - [1090] = 1090, - [1091] = 1088, - [1092] = 1092, - [1093] = 1093, - [1094] = 1094, - [1095] = 1095, - [1096] = 1096, - [1097] = 1097, - [1098] = 1098, - [1099] = 1099, - [1100] = 1100, - [1101] = 886, - [1102] = 1102, - [1103] = 1103, - [1104] = 1104, - [1105] = 1086, - [1106] = 1087, - [1107] = 1107, - [1108] = 1108, - [1109] = 1109, - [1110] = 1055, - [1111] = 1111, - [1112] = 1112, - [1113] = 1113, - [1114] = 1114, - [1115] = 1115, - [1116] = 1116, - [1117] = 1117, - [1118] = 1118, - [1119] = 1119, - [1120] = 1120, - [1121] = 1121, - [1122] = 1122, - [1123] = 1123, - [1124] = 1124, - [1125] = 1090, - [1126] = 1126, - [1127] = 1127, - [1128] = 1005, - [1129] = 1049, - [1130] = 1130, - [1131] = 1131, - [1132] = 1090, - [1133] = 1133, - [1134] = 1089, - [1135] = 1096, - [1136] = 1136, - [1137] = 1074, - [1138] = 1138, - [1139] = 1139, - [1140] = 1140, - [1141] = 1141, - [1142] = 1115, - [1143] = 1085, - [1144] = 1144, - [1145] = 1130, - [1146] = 1100, - [1147] = 1090, - [1148] = 1140, - [1149] = 1149, - [1150] = 1050, - [1151] = 1151, - [1152] = 1152, - [1153] = 1153, - [1154] = 1154, - [1155] = 1155, - [1156] = 1156, - [1157] = 1133, - [1158] = 1158, - [1159] = 1159, - [1160] = 1160, - [1161] = 1161, - [1162] = 1162, - [1163] = 1117, - [1164] = 1107, - [1165] = 1165, - [1166] = 1166, - [1167] = 1167, - [1168] = 1136, - [1169] = 1169, - [1170] = 1155, - [1171] = 1171, - [1172] = 1172, - [1173] = 1173, - [1174] = 1174, - [1175] = 1023, - [1176] = 1176, - [1177] = 1177, - [1178] = 1178, - [1179] = 1179, - [1180] = 1036, - [1181] = 1181, - [1182] = 570, - [1183] = 1183, - [1184] = 1184, - [1185] = 1124, - [1186] = 1186, - [1187] = 1187, - [1188] = 1188, - [1189] = 1189, - [1190] = 1190, - [1191] = 1191, - [1192] = 1192, - [1193] = 572, - [1194] = 1126, - [1195] = 1195, - [1196] = 1196, - [1197] = 1197, - [1198] = 1198, - [1199] = 1199, - [1200] = 1200, - [1201] = 1201, - [1202] = 1202, - [1203] = 1165, - [1204] = 1204, - [1205] = 1205, - [1206] = 1206, - [1207] = 1207, - [1208] = 1208, - [1209] = 1209, - [1210] = 1210, - [1211] = 1211, - [1212] = 1212, - [1213] = 1213, - [1214] = 1214, - [1215] = 1215, - [1216] = 1216, - [1217] = 1042, - [1218] = 1218, - [1219] = 1219, - [1220] = 1158, - [1221] = 1156, - [1222] = 1222, - [1223] = 1223, - [1224] = 1224, - [1225] = 1189, - [1226] = 1226, - [1227] = 1227, - [1228] = 1158, - [1229] = 1188, - [1230] = 1190, - [1231] = 1231, - [1232] = 1232, - [1233] = 1159, - [1234] = 1202, - [1235] = 1235, - [1236] = 1187, - [1237] = 1237, - [1238] = 1167, - [1239] = 1169, - [1240] = 1155, - [1241] = 1241, - [1242] = 1156, - [1243] = 1227, - [1244] = 1244, - [1245] = 1167, - [1246] = 1246, - [1247] = 1224, - [1248] = 1195, - [1249] = 1171, - [1250] = 1250, - [1251] = 1227, - [1252] = 1252, - [1253] = 1253, - [1254] = 1254, - [1255] = 1255, - [1256] = 1256, - [1257] = 1257, - [1258] = 1114, - [1259] = 1041, - [1260] = 1198, - [1261] = 1224, - [1262] = 1250, - [1263] = 1188, - [1264] = 1264, - [1265] = 1190, - [1266] = 1231, - [1267] = 1267, - [1268] = 1268, - [1269] = 1269, - [1270] = 1270, - [1271] = 1176, - [1272] = 1272, - [1273] = 1169, - [1274] = 1274, - [1275] = 1159, - [1276] = 1202, - [1277] = 1277, - [1278] = 1177, - [1279] = 1172, - [1280] = 1187, - [1281] = 1281, - [1282] = 1282, - [1283] = 1283, - [1284] = 1283, - [1285] = 1285, - [1286] = 252, - [1287] = 1287, - [1288] = 1288, - [1289] = 1289, - [1290] = 1290, - [1291] = 1291, - [1292] = 1292, - [1293] = 1293, - [1294] = 1294, - [1295] = 1255, - [1296] = 1296, - [1297] = 1297, - [1298] = 1298, - [1299] = 1299, - [1300] = 1300, - [1301] = 1301, - [1302] = 1302, - [1303] = 1303, - [1304] = 1304, - [1305] = 1305, - [1306] = 1306, - [1307] = 1307, - [1308] = 1308, - [1309] = 1309, - [1310] = 1310, - [1311] = 261, - [1312] = 1312, - [1313] = 1313, - [1314] = 1314, - [1315] = 1000, - [1316] = 1316, - [1317] = 1317, - [1318] = 1318, - [1319] = 1319, - [1320] = 1320, - [1321] = 262, - [1322] = 1268, - [1323] = 1323, - [1324] = 1324, - [1325] = 1325, - [1326] = 1244, - [1327] = 1327, - [1328] = 1288, - [1329] = 1302, - [1330] = 1299, - [1331] = 1324, - [1332] = 1332, - [1333] = 264, - [1334] = 1334, - [1335] = 1335, - [1336] = 1336, - [1337] = 1337, - [1338] = 1338, - [1339] = 1339, - [1340] = 1340, - [1341] = 1341, - [1342] = 1342, - [1343] = 1343, - [1344] = 1344, - [1345] = 1345, - [1346] = 1289, - [1347] = 1347, - [1348] = 1303, - [1349] = 260, - [1350] = 1350, - [1351] = 1351, - [1352] = 1352, - [1353] = 1353, - [1354] = 1354, - [1355] = 1355, - [1356] = 1356, - [1357] = 1357, - [1358] = 1358, - [1359] = 1359, - [1360] = 1360, - [1361] = 1361, - [1362] = 1362, - [1363] = 1363, - [1364] = 1364, - [1365] = 1365, - [1366] = 1366, - [1367] = 1360, - [1368] = 1355, - [1369] = 1369, - [1370] = 1356, - [1371] = 1364, - [1372] = 1372, - [1373] = 1359, - [1374] = 1363, - [1375] = 1375, - [1376] = 1375, - [1377] = 1377, - [1378] = 1378, - [1379] = 1379, - [1380] = 1359, - [1381] = 1381, - [1382] = 1382, - [1383] = 1383, - [1384] = 1384, - [1385] = 1385, - [1386] = 1386, - [1387] = 1387, - [1388] = 1388, - [1389] = 1375, - [1390] = 1390, - [1391] = 1391, - [1392] = 1383, - [1393] = 1356, - [1394] = 1361, - [1395] = 1395, - [1396] = 1361, - [1397] = 1397, - [1398] = 1398, - [1399] = 1399, - [1400] = 1400, - [1401] = 1355, - [1402] = 1385, - [1403] = 1403, - [1404] = 1404, - [1405] = 1405, - [1406] = 1406, - [1407] = 1362, - [1408] = 1408, - [1409] = 1405, - [1410] = 1410, - [1411] = 1411, - [1412] = 1412, - [1413] = 1413, - [1414] = 1365, - [1415] = 1415, - [1416] = 1404, - [1417] = 1417, - [1418] = 1418, - [1419] = 1358, - [1420] = 1378, - [1421] = 1357, - [1422] = 1354, - [1423] = 1423, - [1424] = 1413, - [1425] = 1425, - [1426] = 1426, - [1427] = 1427, - [1428] = 1382, - [1429] = 1429, - [1430] = 1391, - [1431] = 1410, - [1432] = 1432, - [1433] = 1412, - [1434] = 1434, - [1435] = 1435, - [1436] = 1436, - [1437] = 1437, - [1438] = 1403, - [1439] = 1366, - [1440] = 1440, - [1441] = 1432, - [1442] = 1442, - [1443] = 1426, - [1444] = 1434, - [1445] = 1363, - [1446] = 1446, - [1447] = 1408, - [1448] = 1362, - [1449] = 1423, - [1450] = 1450, - [1451] = 1361, - [1452] = 1452, - [1453] = 1400, - [1454] = 1454, - [1455] = 1366, - [1456] = 1378, - [1457] = 1360, - [1458] = 1458, - [1459] = 1459, - [1460] = 1460, - [1461] = 1461, - [1462] = 1426, - [1463] = 1381, - [1464] = 1458, - [1465] = 1465, - [1466] = 1440, - [1467] = 1356, - [1468] = 1364, - [1469] = 1379, - [1470] = 1418, - [1471] = 1458, - [1472] = 1437, - [1473] = 1459, - [1474] = 1450, - [1475] = 1429, - [1476] = 1476, - [1477] = 1477, - [1478] = 1478, -}; - static inline bool sym_identifier_character_set_1(int32_t c) { - return (c < 43514 - ? (c < 4193 - ? (c < 2707 - ? (c < 1994 - ? (c < 931 - ? (c < 748 - ? (c < 192 + return (c < 43020 + ? (c < 4096 + ? (c < 2693 + ? (c < 1969 + ? (c < 910 + ? (c < 736 + ? (c < 186 ? (c < 170 ? (c < 'a' ? (c >= 'A' && c <= '_') : c <= 'z') - : (c <= 170 || (c < 186 - ? c == 181 - : c <= 186))) - : (c <= 214 || (c < 710 - ? (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705) - : (c <= 721 || (c >= 736 && c <= 740))))) - : (c <= 748 || (c < 895 - ? (c < 886 - ? (c < 880 - ? c == 750 - : c <= 884) - : (c <= 887 || (c >= 891 && c <= 893))) - : (c <= 895 || (c < 908 - ? (c < 904 - ? c == 902 - : c <= 906) - : (c <= 908 || (c >= 910 && c <= 929))))))) - : (c <= 1013 || (c < 1649 - ? (c < 1376 - ? (c < 1329 - ? (c < 1162 - ? (c >= 1015 && c <= 1153) - : c <= 1327) - : (c <= 1366 || c == 1369)) - : (c <= 1416 || (c < 1568 - ? (c < 1519 - ? (c >= 1488 && c <= 1514) - : c <= 1522) - : (c <= 1610 || (c >= 1646 && c <= 1647))))) - : (c <= 1747 || (c < 1791 - ? (c < 1774 - ? (c < 1765 - ? c == 1749 - : c <= 1766) - : (c <= 1775 || (c >= 1786 && c <= 1788))) - : (c <= 1791 || (c < 1869 - ? (c < 1810 - ? c == 1808 - : c <= 1839) - : (c <= 1957 || c == 1969)))))))) - : (c <= 2026 || (c < 2482 + : (c <= 170 || c == 181)) + : (c <= 186 || (c < 248 + ? (c < 216 + ? (c >= 192 && c <= 214) + : c <= 246) + : (c <= 705 || (c >= 710 && c <= 721))))) + : (c <= 740 || (c < 891 + ? (c < 880 + ? (c < 750 + ? c == 748 + : c <= 750) + : (c <= 884 || (c >= 886 && c <= 887))) + : (c <= 893 || (c < 904 + ? (c < 902 + ? c == 895 + : c <= 902) + : (c <= 906 || c == 908)))))) + : (c <= 929 || (c < 1646 + ? (c < 1369 + ? (c < 1162 + ? (c < 1015 + ? (c >= 931 && c <= 1013) + : c <= 1153) + : (c <= 1327 || (c >= 1329 && c <= 1366))) + : (c <= 1369 || (c < 1519 + ? (c < 1488 + ? (c >= 1376 && c <= 1416) + : c <= 1514) + : (c <= 1522 || (c >= 1568 && c <= 1610))))) + : (c <= 1647 || (c < 1786 + ? (c < 1765 + ? (c < 1749 + ? (c >= 1649 && c <= 1747) + : c <= 1749) + : (c <= 1766 || (c >= 1774 && c <= 1775))) + : (c <= 1788 || (c < 1810 + ? (c < 1808 + ? c == 1791 + : c <= 1808) + : (c <= 1839 || (c >= 1869 && c <= 1957))))))))) + : (c <= 1969 || (c < 2474 ? (c < 2208 - ? (c < 2088 - ? (c < 2048 - ? (c < 2042 - ? (c >= 2036 && c <= 2037) - : c <= 2042) - : (c <= 2069 || (c < 2084 - ? c == 2074 - : c <= 2084))) - : (c <= 2088 || (c < 2160 - ? (c < 2144 - ? (c >= 2112 && c <= 2136) - : c <= 2154) - : (c <= 2183 || (c >= 2185 && c <= 2190))))) - : (c <= 2249 || (c < 2417 - ? (c < 2384 - ? (c < 2365 - ? (c >= 2308 && c <= 2361) - : c <= 2365) - : (c <= 2384 || (c >= 2392 && c <= 2401))) - : (c <= 2432 || (c < 2451 - ? (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))))))) - : (c <= 2482 || (c < 2579 - ? (c < 2527 - ? (c < 2510 - ? (c < 2493 - ? (c >= 2486 && c <= 2489) - : c <= 2493) - : (c <= 2510 || (c >= 2524 && c <= 2525))) - : (c <= 2529 || (c < 2565 - ? (c < 2556 - ? (c >= 2544 && c <= 2545) - : c <= 2556) - : (c <= 2570 || (c >= 2575 && c <= 2576))))) - : (c <= 2600 || (c < 2649 - ? (c < 2613 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c >= 2616 && c <= 2617))) - : (c <= 2652 || (c < 2693 - ? (c < 2674 - ? c == 2654 - : c <= 2676) - : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) - : (c <= 2728 || (c < 3242 - ? (c < 2962 - ? (c < 2858 - ? (c < 2784 - ? (c < 2741 - ? (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739) - : (c <= 2745 || (c < 2768 + ? (c < 2074 + ? (c < 2042 + ? (c < 2036 + ? (c >= 1994 && c <= 2026) + : c <= 2037) + : (c <= 2042 || (c >= 2048 && c <= 2069))) + : (c <= 2074 || (c < 2112 + ? (c < 2088 + ? c == 2084 + : c <= 2088) + : (c <= 2136 || (c >= 2144 && c <= 2154))))) + : (c <= 2228 || (c < 2392 + ? (c < 2365 + ? (c < 2308 + ? (c >= 2230 && c <= 2247) + : c <= 2361) + : (c <= 2365 || c == 2384)) + : (c <= 2401 || (c < 2447 + ? (c < 2437 + ? (c >= 2417 && c <= 2432) + : c <= 2444) + : (c <= 2448 || (c >= 2451 && c <= 2472))))))) + : (c <= 2480 || (c < 2575 + ? (c < 2524 + ? (c < 2493 + ? (c < 2486 + ? c == 2482 + : c <= 2489) + : (c <= 2493 || c == 2510)) + : (c <= 2525 || (c < 2556 + ? (c < 2544 + ? (c >= 2527 && c <= 2529) + : c <= 2545) + : (c <= 2556 || (c >= 2565 && c <= 2570))))) + : (c <= 2576 || (c < 2616 + ? (c < 2610 + ? (c < 2602 + ? (c >= 2579 && c <= 2600) + : c <= 2608) + : (c <= 2611 || (c >= 2613 && c <= 2614))) + : (c <= 2617 || (c < 2654 + ? (c >= 2649 && c <= 2652) + : (c <= 2654 || (c >= 2674 && c <= 2676))))))))))) + : (c <= 2701 || (c < 3214 + ? (c < 2947 + ? (c < 2821 + ? (c < 2741 + ? (c < 2730 + ? (c < 2707 + ? (c >= 2703 && c <= 2705) + : c <= 2728) + : (c <= 2736 || (c >= 2738 && c <= 2739))) + : (c <= 2745 || (c < 2784 + ? (c < 2768 ? c == 2749 - : c <= 2768))) - : (c <= 2785 || (c < 2831 - ? (c < 2821 - ? c == 2809 - : c <= 2828) - : (c <= 2832 || (c >= 2835 && c <= 2856))))) - : (c <= 2864 || (c < 2911 - ? (c < 2877 - ? (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873) - : (c <= 2877 || (c >= 2908 && c <= 2909))) - : (c <= 2913 || (c < 2949 - ? (c < 2947 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c >= 2958 && c <= 2960))))))) - : (c <= 2965 || (c < 3090 - ? (c < 2984 - ? (c < 2974 - ? (c < 2972 - ? (c >= 2969 && c <= 2970) - : c <= 2972) - : (c <= 2975 || (c >= 2979 && c <= 2980))) - : (c <= 2986 || (c < 3077 - ? (c < 3024 - ? (c >= 2990 && c <= 3001) - : c <= 3024) - : (c <= 3084 || (c >= 3086 && c <= 3088))))) - : (c <= 3112 || (c < 3168 - ? (c < 3160 - ? (c < 3133 - ? (c >= 3114 && c <= 3129) - : c <= 3133) - : (c <= 3162 || c == 3165)) - : (c <= 3169 || (c < 3214 - ? (c < 3205 - ? c == 3200 - : c <= 3212) - : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) - : (c <= 3251 || (c < 3648 - ? (c < 3412 - ? (c < 3332 - ? (c < 3293 - ? (c < 3261 - ? (c >= 3253 && c <= 3257) - : c <= 3261) - : (c <= 3294 || (c < 3313 + : c <= 2768) + : (c <= 2785 || c == 2809)))) + : (c <= 2828 || (c < 2869 + ? (c < 2858 + ? (c < 2835 + ? (c >= 2831 && c <= 2832) + : c <= 2856) + : (c <= 2864 || (c >= 2866 && c <= 2867))) + : (c <= 2873 || (c < 2911 + ? (c < 2908 + ? c == 2877 + : c <= 2909) + : (c <= 2913 || c == 2929)))))) + : (c <= 2947 || (c < 3024 + ? (c < 2972 + ? (c < 2962 + ? (c < 2958 + ? (c >= 2949 && c <= 2954) + : c <= 2960) + : (c <= 2965 || (c >= 2969 && c <= 2970))) + : (c <= 2972 || (c < 2984 + ? (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980) + : (c <= 2986 || (c >= 2990 && c <= 3001))))) + : (c <= 3024 || (c < 3133 + ? (c < 3090 + ? (c < 3086 + ? (c >= 3077 && c <= 3084) + : c <= 3088) + : (c <= 3112 || (c >= 3114 && c <= 3129))) + : (c <= 3133 || (c < 3200 + ? (c < 3168 + ? (c >= 3160 && c <= 3162) + : c <= 3169) + : (c <= 3200 || (c >= 3205 && c <= 3212))))))))) + : (c <= 3216 || (c < 3520 + ? (c < 3346 + ? (c < 3294 + ? (c < 3253 + ? (c < 3242 + ? (c >= 3218 && c <= 3240) + : c <= 3251) + : (c <= 3257 || c == 3261)) + : (c <= 3294 || (c < 3332 + ? (c < 3313 ? (c >= 3296 && c <= 3297) - : c <= 3314))) - : (c <= 3340 || (c < 3389 - ? (c < 3346 - ? (c >= 3342 && c <= 3344) - : c <= 3386) - : (c <= 3389 || c == 3406)))) - : (c <= 3414 || (c < 3507 - ? (c < 3461 - ? (c < 3450 - ? (c >= 3423 && c <= 3425) - : c <= 3455) - : (c <= 3478 || (c >= 3482 && c <= 3505))) - : (c <= 3515 || (c < 3585 - ? (c < 3520 - ? c == 3517 - : c <= 3526) - : (c <= 3632 || c == 3634)))))) - : (c <= 3654 || (c < 3782 - ? (c < 3749 - ? (c < 3718 - ? (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716) - : (c <= 3722 || (c >= 3724 && c <= 3747))) - : (c <= 3749 || (c < 3773 - ? (c < 3762 - ? (c >= 3751 && c <= 3760) - : c <= 3762) - : (c <= 3773 || (c >= 3776 && c <= 3780))))) - : (c <= 3782 || (c < 3976 - ? (c < 3904 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840) - : (c <= 3911 || (c >= 3913 && c <= 3948))) - : (c <= 3980 || (c < 4176 - ? (c < 4159 - ? (c >= 4096 && c <= 4138) - : c <= 4159) - : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) - : (c <= 4193 || (c < 8134 - ? (c < 6176 - ? (c < 4808 - ? (c < 4688 - ? (c < 4295 - ? (c < 4213 - ? (c < 4206 - ? (c >= 4197 && c <= 4198) - : c <= 4208) - : (c <= 4225 || (c < 4256 - ? c == 4238 - : c <= 4293))) - : (c <= 4295 || (c < 4348 + : c <= 3314) + : (c <= 3340 || (c >= 3342 && c <= 3344))))) + : (c <= 3386 || (c < 3450 + ? (c < 3412 + ? (c < 3406 + ? c == 3389 + : c <= 3406) + : (c <= 3414 || (c >= 3423 && c <= 3425))) + : (c <= 3455 || (c < 3507 + ? (c < 3482 + ? (c >= 3461 && c <= 3478) + : c <= 3505) + : (c <= 3515 || c == 3517)))))) + : (c <= 3526 || (c < 3762 + ? (c < 3716 + ? (c < 3648 + ? (c < 3634 + ? (c >= 3585 && c <= 3632) + : c <= 3634) + : (c <= 3654 || (c >= 3713 && c <= 3714))) + : (c <= 3716 || (c < 3749 + ? (c < 3724 + ? (c >= 3718 && c <= 3722) + : c <= 3747) + : (c <= 3749 || (c >= 3751 && c <= 3760))))) + : (c <= 3762 || (c < 3840 + ? (c < 3782 + ? (c < 3776 + ? c == 3773 + : c <= 3780) + : (c <= 3782 || (c >= 3804 && c <= 3807))) + : (c <= 3840 || (c < 3913 + ? (c >= 3904 && c <= 3911) + : (c <= 3948 || (c >= 3976 && c <= 3980))))))))))))) + : (c <= 4138 || (c < 8025 + ? (c < 5952 + ? (c < 4752 + ? (c < 4295 + ? (c < 4197 + ? (c < 4186 + ? (c < 4176 + ? c == 4159 + : c <= 4181) + : (c <= 4189 || c == 4193)) + : (c <= 4198 || (c < 4238 + ? (c < 4213 + ? (c >= 4206 && c <= 4208) + : c <= 4225) + : (c <= 4238 || (c >= 4256 && c <= 4293))))) + : (c <= 4295 || (c < 4688 + ? (c < 4348 ? (c < 4304 ? c == 4301 : c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))))) - : (c <= 4694 || (c < 4752 - ? (c < 4704 + : (c <= 4680 || (c >= 4682 && c <= 4685))) + : (c <= 4694 || (c < 4704 ? (c < 4698 ? c == 4696 : c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))) - : (c <= 4784 || (c < 4800 + : (c <= 4744 || (c >= 4746 && c <= 4749))))))) + : (c <= 4784 || (c < 5024 + ? (c < 4808 + ? (c < 4800 ? (c < 4792 ? (c >= 4786 && c <= 4789) : c <= 4798) - : (c <= 4800 || (c >= 4802 && c <= 4805))))))) - : (c <= 4822 || (c < 5792 - ? (c < 5024 - ? (c < 4888 + : (c <= 4800 || (c >= 4802 && c <= 4805))) + : (c <= 4822 || (c < 4888 ? (c < 4882 ? (c >= 4824 && c <= 4880) : c <= 4885) - : (c <= 4954 || (c >= 4992 && c <= 5007))) - : (c <= 5109 || (c < 5743 + : (c <= 4954 || (c >= 4992 && c <= 5007))))) + : (c <= 5109 || (c < 5792 + ? (c < 5743 ? (c < 5121 ? (c >= 5112 && c <= 5117) : c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))))) - : (c <= 5866 || (c < 5984 - ? (c < 5919 + : (c <= 5759 || (c >= 5761 && c <= 5786))) + : (c <= 5866 || (c < 5902 ? (c < 5888 ? (c >= 5870 && c <= 5880) - : c <= 5905) - : (c <= 5937 || (c >= 5952 && c <= 5969))) - : (c <= 5996 || (c < 6103 - ? (c < 6016 - ? (c >= 5998 && c <= 6000) - : c <= 6067) - : (c <= 6103 || c == 6108)))))))) - : (c <= 6264 || (c < 7312 - ? (c < 6823 - ? (c < 6512 - ? (c < 6320 - ? (c < 6314 - ? (c >= 6272 && c <= 6312) - : c <= 6314) - : (c <= 6389 || (c < 6480 - ? (c >= 6400 && c <= 6430) - : c <= 6509))) - : (c <= 6516 || (c < 6656 - ? (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601) - : (c <= 6678 || (c >= 6688 && c <= 6740))))) - : (c <= 6823 || (c < 7098 - ? (c < 7043 - ? (c < 6981 - ? (c >= 6917 && c <= 6963) - : c <= 6988) - : (c <= 7072 || (c >= 7086 && c <= 7087))) - : (c <= 7141 || (c < 7258 - ? (c < 7245 - ? (c >= 7168 && c <= 7203) - : c <= 7247) - : (c <= 7293 || (c >= 7296 && c <= 7304))))))) - : (c <= 7354 || (c < 8008 - ? (c < 7418 - ? (c < 7406 - ? (c < 7401 - ? (c >= 7357 && c <= 7359) - : c <= 7404) - : (c <= 7411 || (c >= 7413 && c <= 7414))) - : (c <= 7418 || (c < 7960 - ? (c < 7680 - ? (c >= 7424 && c <= 7615) - : c <= 7957) - : (c <= 7965 || (c >= 7968 && c <= 8005))))) - : (c <= 8013 || (c < 8031 - ? (c < 8027 - ? (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025) - : (c <= 8027 || c == 8029)) - : (c <= 8061 || (c < 8126 - ? (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) - : (c <= 8140 || (c < 12337 - ? (c < 8544 - ? (c < 8458 - ? (c < 8305 - ? (c < 8160 - ? (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155) - : (c <= 8172 || (c < 8182 - ? (c >= 8178 && c <= 8180) - : c <= 8188))) - : (c <= 8305 || (c < 8450 - ? (c < 8336 - ? c == 8319 - : c <= 8348) - : (c <= 8450 || c == 8455)))) - : (c <= 8467 || (c < 8488 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || c == 8486)) - : (c <= 8488 || (c < 8517 - ? (c < 8508 - ? (c >= 8490 && c <= 8505) - : c <= 8511) - : (c <= 8521 || c == 8526)))))) - : (c <= 8584 || (c < 11680 - ? (c < 11559 - ? (c < 11506 - ? (c < 11499 - ? (c >= 11264 && c <= 11492) - : c <= 11502) - : (c <= 11507 || (c >= 11520 && c <= 11557))) - : (c <= 11559 || (c < 11631 - ? (c < 11568 - ? c == 11565 - : c <= 11623) - : (c <= 11631 || (c >= 11648 && c <= 11670))))) - : (c <= 11686 || (c < 11720 - ? (c < 11704 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c >= 11712 && c <= 11718))) - : (c <= 11726 || (c < 12293 - ? (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) - : (c <= 12341 || (c < 42891 - ? (c < 19968 - ? (c < 12549 - ? (c < 12445 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12447 || (c < 12540 + : c <= 5900) + : (c <= 5905 || (c >= 5920 && c <= 5937))))))))) + : (c <= 5969 || (c < 7043 + ? (c < 6400 + ? (c < 6108 + ? (c < 6016 + ? (c < 5998 + ? (c >= 5984 && c <= 5996) + : c <= 6000) + : (c <= 6067 || c == 6103)) + : (c <= 6108 || (c < 6314 + ? (c < 6272 + ? (c >= 6176 && c <= 6264) + : c <= 6312) + : (c <= 6314 || (c >= 6320 && c <= 6389))))) + : (c <= 6430 || (c < 6656 + ? (c < 6528 + ? (c < 6512 + ? (c >= 6480 && c <= 6509) + : c <= 6516) + : (c <= 6571 || (c >= 6576 && c <= 6601))) + : (c <= 6678 || (c < 6917 + ? (c < 6823 + ? (c >= 6688 && c <= 6740) + : c <= 6823) + : (c <= 6963 || (c >= 6981 && c <= 6987))))))) + : (c <= 7072 || (c < 7406 + ? (c < 7258 + ? (c < 7168 + ? (c < 7098 + ? (c >= 7086 && c <= 7087) + : c <= 7141) + : (c <= 7203 || (c >= 7245 && c <= 7247))) + : (c <= 7293 || (c < 7357 + ? (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354) + : (c <= 7359 || (c >= 7401 && c <= 7404))))) + : (c <= 7411 || (c < 7960 + ? (c < 7424 + ? (c < 7418 + ? (c >= 7413 && c <= 7414) + : c <= 7418) + : (c <= 7615 || (c >= 7680 && c <= 7957))) + : (c <= 7965 || (c < 8008 + ? (c >= 7968 && c <= 8005) + : (c <= 8013 || (c >= 8016 && c <= 8023))))))))))) + : (c <= 8025 || (c < 11631 + ? (c < 8469 + ? (c < 8150 + ? (c < 8118 + ? (c < 8031 + ? (c < 8029 + ? c == 8027 + : c <= 8029) + : (c <= 8061 || (c >= 8064 && c <= 8116))) + : (c <= 8124 || (c < 8134 + ? (c < 8130 + ? c == 8126 + : c <= 8132) + : (c <= 8140 || (c >= 8144 && c <= 8147))))) + : (c <= 8155 || (c < 8319 + ? (c < 8182 + ? (c < 8178 + ? (c >= 8160 && c <= 8172) + : c <= 8180) + : (c <= 8188 || c == 8305)) + : (c <= 8319 || (c < 8455 + ? (c < 8450 + ? (c >= 8336 && c <= 8348) + : c <= 8450) + : (c <= 8455 || (c >= 8458 && c <= 8467))))))) + : (c <= 8469 || (c < 11264 + ? (c < 8490 + ? (c < 8486 + ? (c < 8484 + ? (c >= 8472 && c <= 8477) + : c <= 8484) + : (c <= 8486 || c == 8488)) + : (c <= 8505 || (c < 8526 + ? (c < 8517 + ? (c >= 8508 && c <= 8511) + : c <= 8521) + : (c <= 8526 || (c >= 8544 && c <= 8584))))) + : (c <= 11310 || (c < 11520 + ? (c < 11499 + ? (c < 11360 + ? (c >= 11312 && c <= 11358) + : c <= 11492) + : (c <= 11502 || (c >= 11506 && c <= 11507))) + : (c <= 11557 || (c < 11565 + ? c == 11559 + : (c <= 11565 || (c >= 11568 && c <= 11623))))))))) + : (c <= 11631 || (c < 12704 + ? (c < 12293 + ? (c < 11704 + ? (c < 11688 + ? (c < 11680 + ? (c >= 11648 && c <= 11670) + : c <= 11686) + : (c <= 11694 || (c >= 11696 && c <= 11702))) + : (c <= 11710 || (c < 11728 + ? (c < 11720 + ? (c >= 11712 && c <= 11718) + : c <= 11726) + : (c <= 11734 || (c >= 11736 && c <= 11742))))) + : (c <= 12295 || (c < 12445 + ? (c < 12344 + ? (c < 12337 + ? (c >= 12321 && c <= 12329) + : c <= 12341) + : (c <= 12348 || (c >= 12353 && c <= 12438))) + : (c <= 12447 || (c < 12549 + ? (c < 12540 ? (c >= 12449 && c <= 12538) - : c <= 12543))) - : (c <= 12591 || (c < 12784 - ? (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735) - : (c <= 12799 || (c >= 13312 && c <= 19903))))) - : (c <= 42124 || (c < 42560 - ? (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))) - : (c <= 42606 || (c < 42775 - ? (c < 42656 - ? (c >= 42623 && c <= 42653) - : c <= 42735) - : (c <= 42783 || (c >= 42786 && c <= 42888))))))) - : (c <= 42954 || (c < 43250 - ? (c < 43011 - ? (c < 42965 - ? (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963) - : (c <= 42969 || (c >= 42994 && c <= 43009))) - : (c <= 43013 || (c < 43072 - ? (c < 43020 - ? (c >= 43015 && c <= 43018) - : c <= 43042) - : (c <= 43123 || (c >= 43138 && c <= 43187))))) - : (c <= 43255 || (c < 43360 - ? (c < 43274 - ? (c < 43261 - ? c == 43259 - : c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))) - : (c <= 43388 || (c < 43488 - ? (c < 43471 - ? (c >= 43396 && c <= 43442) - : c <= 43471) - : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) - : (c <= 43518 || (c < 70727 - ? (c < 66956 - ? (c < 64914 - ? (c < 43868 - ? (c < 43714 - ? (c < 43646 - ? (c < 43588 - ? (c < 43584 - ? (c >= 43520 && c <= 43560) - : c <= 43586) - : (c <= 43595 || (c < 43642 - ? (c >= 43616 && c <= 43638) - : c <= 43642))) - : (c <= 43695 || (c < 43705 - ? (c < 43701 - ? c == 43697 - : c <= 43702) - : (c <= 43709 || c == 43712)))) - : (c <= 43714 || (c < 43785 - ? (c < 43762 - ? (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43754) - : (c <= 43764 || (c >= 43777 && c <= 43782))) - : (c <= 43790 || (c < 43816 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c >= 43824 && c <= 43866))))))) - : (c <= 43881 || (c < 64287 - ? (c < 63744 - ? (c < 55216 - ? (c < 44032 - ? (c >= 43888 && c <= 44002) - : c <= 55203) - : (c <= 55238 || (c >= 55243 && c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || c == 64285)))) - : (c <= 64296 || (c < 64323 - ? (c < 64318 - ? (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316) - : (c <= 64318 || (c >= 64320 && c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65599 - ? (c < 65382 - ? (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65008 && c <= 65017) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65313 + : c <= 12543) + : (c <= 12591 || (c >= 12593 && c <= 12686))))))) + : (c <= 12735 || (c < 42623 + ? (c < 42192 + ? (c < 19968 + ? (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903) + : (c <= 40956 || (c >= 40960 && c <= 42124))) + : (c <= 42237 || (c < 42538 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42527) + : (c <= 42539 || (c >= 42560 && c <= 42606))))) + : (c <= 42653 || (c < 42946 + ? (c < 42786 + ? (c < 42775 + ? (c >= 42656 && c <= 42735) + : c <= 42783) + : (c <= 42888 || (c >= 42891 && c <= 42943))) + : (c <= 42954 || (c < 43011 + ? (c >= 42997 && c <= 43009) + : (c <= 43013 || (c >= 43015 && c <= 43018))))))))))))))) + : (c <= 43042 || (c < 70453 + ? (c < 66176 + ? (c < 64112 + ? (c < 43697 + ? (c < 43471 + ? (c < 43261 + ? (c < 43250 + ? (c < 43138 + ? (c >= 43072 && c <= 43123) + : c <= 43187) + : (c <= 43255 || c == 43259)) + : (c <= 43262 || (c < 43360 + ? (c < 43312 + ? (c >= 43274 && c <= 43301) + : c <= 43334) + : (c <= 43388 || (c >= 43396 && c <= 43442))))) + : (c <= 43471 || (c < 43584 + ? (c < 43514 + ? (c < 43494 + ? (c >= 43488 && c <= 43492) + : c <= 43503) + : (c <= 43518 || (c >= 43520 && c <= 43560))) + : (c <= 43586 || (c < 43642 + ? (c < 43616 + ? (c >= 43588 && c <= 43595) + : c <= 43638) + : (c <= 43642 || (c >= 43646 && c <= 43695))))))) + : (c <= 43697 || (c < 43793 + ? (c < 43739 + ? (c < 43712 + ? (c < 43705 + ? (c >= 43701 && c <= 43702) + : c <= 43709) + : (c <= 43712 || c == 43714)) + : (c <= 43741 || (c < 43777 + ? (c < 43762 + ? (c >= 43744 && c <= 43754) + : c <= 43764) + : (c <= 43782 || (c >= 43785 && c <= 43790))))) + : (c <= 43798 || (c < 43888 + ? (c < 43824 + ? (c < 43816 + ? (c >= 43808 && c <= 43814) + : c <= 43822) + : (c <= 43866 || (c >= 43868 && c <= 43881))) + : (c <= 44002 || (c < 55243 + ? (c < 55216 + ? (c >= 44032 && c <= 55203) + : c <= 55238) + : (c <= 55291 || (c >= 63744 && c <= 64109))))))))) + : (c <= 64217 || (c < 65147 + ? (c < 64326 + ? (c < 64298 + ? (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64285 || (c >= 64287 && c <= 64296))) + : (c <= 64310 || (c < 64320 + ? (c < 64318 + ? (c >= 64312 && c <= 64316) + : c <= 64318) + : (c <= 64321 || (c >= 64323 && c <= 64324))))) + : (c <= 64433 || (c < 65008 + ? (c < 64848 + ? (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829) + : (c <= 64911 || (c >= 64914 && c <= 64967))) + : (c <= 65017 || (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || c == 65145)))))) + : (c <= 65147 || (c < 65498 + ? (c < 65382 + ? (c < 65313 ? (c < 65151 ? c == 65149 : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))))) - : (c <= 65437 || (c < 65498 - ? (c < 65482 + : (c <= 65338 || (c >= 65345 && c <= 65370))) + : (c <= 65437 || (c < 65482 ? (c < 65474 ? (c >= 65440 && c <= 65470) : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))) - : (c <= 65500 || (c < 65576 + : (c <= 65487 || (c >= 65490 && c <= 65495))))) + : (c <= 65500 || (c < 65599 + ? (c < 65576 ? (c < 65549 ? (c >= 65536 && c <= 65547) : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))))))) - : (c <= 65613 || (c < 66464 - ? (c < 66208 - ? (c < 65856 - ? (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786) - : (c <= 65908 || (c >= 66176 && c <= 66204))) - : (c <= 66256 || (c < 66384 - ? (c < 66349 - ? (c >= 66304 && c <= 66335) - : c <= 66378) - : (c <= 66421 || (c >= 66432 && c <= 66461))))) - : (c <= 66499 || (c < 66776 - ? (c < 66560 - ? (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517) - : (c <= 66717 || (c >= 66736 && c <= 66771))) - : (c <= 66811 || (c < 66928 - ? (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915) - : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) - : (c <= 66962 || (c < 68864 - ? (c < 67828 - ? (c < 67506 - ? (c < 67072 - ? (c < 66979 - ? (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977) - : (c <= 66993 || (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004))) - : (c <= 67382 || (c < 67456 - ? (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431) - : (c <= 67461 || (c >= 67463 && c <= 67504))))) - : (c <= 67514 || (c < 67644 - ? (c < 67594 - ? (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592) - : (c <= 67637 || (c >= 67639 && c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c >= 67808 && c <= 67826))))))) - : (c <= 67829 || (c < 68224 - ? (c < 68096 - ? (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68096 || (c < 68121 - ? (c < 68117 - ? (c >= 68112 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c >= 68192 && c <= 68220))))) - : (c <= 68252 || (c < 68448 - ? (c < 68352 - ? (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68324) - : (c <= 68405 || (c >= 68416 && c <= 68437))) - : (c <= 68466 || (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) - : (c <= 68899 || (c < 70106 - ? (c < 69749 - ? (c < 69488 - ? (c < 69376 - ? (c < 69296 - ? (c >= 69248 && c <= 69289) - : c <= 69297) - : (c <= 69404 || (c < 69424 - ? c == 69415 - : c <= 69445))) - : (c <= 69505 || (c < 69635 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69687 || (c >= 69745 && c <= 69746))))) - : (c <= 69749 || (c < 69959 - ? (c < 69891 - ? (c < 69840 - ? (c >= 69763 && c <= 69807) - : c <= 69864) - : (c <= 69926 || c == 69956)) - : (c <= 69959 || (c < 70019 - ? (c < 70006 - ? (c >= 69968 && c <= 70002) - : c <= 70006) - : (c <= 70066 || (c >= 70081 && c <= 70084))))))) - : (c <= 70106 || (c < 70405 - ? (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70187 || (c >= 70272 && c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70366))))) - : (c <= 70412 || (c < 70453 - ? (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))) - : (c <= 70457 || (c < 70493 + : (c <= 65594 || (c >= 65596 && c <= 65597))) + : (c <= 65613 || (c < 65664 + ? (c >= 65616 && c <= 65629) + : (c <= 65786 || (c >= 65856 && c <= 65908))))))))))) + : (c <= 66204 || (c < 68416 + ? (c < 67639 + ? (c < 66736 + ? (c < 66432 + ? (c < 66349 + ? (c < 66304 + ? (c >= 66208 && c <= 66256) + : c <= 66335) + : (c <= 66378 || (c >= 66384 && c <= 66421))) + : (c <= 66461 || (c < 66513 + ? (c < 66504 + ? (c >= 66464 && c <= 66499) + : c <= 66511) + : (c <= 66517 || (c >= 66560 && c <= 66717))))) + : (c <= 66771 || (c < 67392 + ? (c < 66864 + ? (c < 66816 + ? (c >= 66776 && c <= 66811) + : c <= 66855) + : (c <= 66915 || (c >= 67072 && c <= 67382))) + : (c <= 67413 || (c < 67592 + ? (c < 67584 + ? (c >= 67424 && c <= 67431) + : c <= 67589) + : (c <= 67592 || (c >= 67594 && c <= 67637))))))) + : (c <= 67640 || (c < 68030 + ? (c < 67808 + ? (c < 67680 + ? (c < 67647 + ? c == 67644 + : c <= 67669) + : (c <= 67702 || (c >= 67712 && c <= 67742))) + : (c <= 67826 || (c < 67872 + ? (c < 67840 + ? (c >= 67828 && c <= 67829) + : c <= 67861) + : (c <= 67897 || (c >= 67968 && c <= 68023))))) + : (c <= 68031 || (c < 68192 + ? (c < 68117 + ? (c < 68112 + ? c == 68096 + : c <= 68115) + : (c <= 68119 || (c >= 68121 && c <= 68149))) + : (c <= 68220 || (c < 68297 + ? (c < 68288 + ? (c >= 68224 && c <= 68252) + : c <= 68295) + : (c <= 68324 || (c >= 68352 && c <= 68405))))))))) + : (c <= 68437 || (c < 69968 + ? (c < 69415 + ? (c < 68800 + ? (c < 68608 + ? (c < 68480 + ? (c >= 68448 && c <= 68466) + : c <= 68497) + : (c <= 68680 || (c >= 68736 && c <= 68786))) + : (c <= 68850 || (c < 69296 + ? (c < 69248 + ? (c >= 68864 && c <= 68899) + : c <= 69289) + : (c <= 69297 || (c >= 69376 && c <= 69404))))) + : (c <= 69415 || (c < 69763 + ? (c < 69600 + ? (c < 69552 + ? (c >= 69424 && c <= 69445) + : c <= 69572) + : (c <= 69622 || (c >= 69635 && c <= 69687))) + : (c <= 69807 || (c < 69956 + ? (c < 69891 + ? (c >= 69840 && c <= 69864) + : c <= 69926) + : (c <= 69956 || c == 69959)))))) + : (c <= 70002 || (c < 70282 + ? (c < 70108 + ? (c < 70081 + ? (c < 70019 + ? c == 70006 + : c <= 70066) + : (c <= 70084 || c == 70106)) + : (c <= 70108 || (c < 70272 + ? (c < 70163 + ? (c >= 70144 && c <= 70161) + : c <= 70187) + : (c <= 70278 || c == 70280)))) + : (c <= 70285 || (c < 70415 + ? (c < 70320 + ? (c < 70303 + ? (c >= 70287 && c <= 70301) + : c <= 70312) + : (c <= 70366 || (c >= 70405 && c <= 70412))) + : (c <= 70416 || (c < 70442 + ? (c >= 70419 && c <= 70440) + : (c <= 70448 || (c >= 70450 && c <= 70451))))))))))))) + : (c <= 70457 || (c < 113808 + ? (c < 72818 + ? (c < 71945 + ? (c < 71040 + ? (c < 70727 + ? (c < 70493 ? (c < 70480 ? c == 70461 : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) - : (c <= 70730 || (c < 119894 - ? (c < 73056 - ? (c < 72001 - ? (c < 71424 - ? (c < 71128 - ? (c < 70852 + : (c <= 70497 || (c >= 70656 && c <= 70708))) + : (c <= 70730 || (c < 70852 ? (c < 70784 ? (c >= 70751 && c <= 70753) : c <= 70831) - : (c <= 70853 || (c < 71040 - ? c == 70855 - : c <= 71086))) - : (c <= 71131 || (c < 71296 - ? (c < 71236 - ? (c >= 71168 && c <= 71215) - : c <= 71236) - : (c <= 71338 || c == 71352)))) - : (c <= 71450 || (c < 71945 - ? (c < 71840 + : (c <= 70853 || c == 70855)))) + : (c <= 71086 || (c < 71352 + ? (c < 71236 + ? (c < 71168 + ? (c >= 71128 && c <= 71131) + : c <= 71215) + : (c <= 71236 || (c >= 71296 && c <= 71338))) + : (c <= 71352 || (c < 71840 ? (c < 71680 - ? (c >= 71488 && c <= 71494) + ? (c >= 71424 && c <= 71450) : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))) - : (c <= 71945 || (c < 71960 + : (c <= 71903 || (c >= 71935 && c <= 71942))))))) + : (c <= 71945 || (c < 72192 + ? (c < 72001 + ? (c < 71960 ? (c < 71957 ? (c >= 71948 && c <= 71955) : c <= 71958) - : (c <= 71983 || c == 71999)))))) - : (c <= 72001 || (c < 72349 - ? (c < 72192 - ? (c < 72161 + : (c <= 71983 || c == 71999)) + : (c <= 72001 || (c < 72161 ? (c < 72106 ? (c >= 72096 && c <= 72103) : c <= 72144) - : (c <= 72161 || c == 72163)) - : (c <= 72192 || (c < 72272 + : (c <= 72161 || c == 72163)))) + : (c <= 72192 || (c < 72349 + ? (c < 72272 ? (c < 72250 ? (c >= 72203 && c <= 72242) : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))))) - : (c <= 72349 || (c < 72818 - ? (c < 72714 + : (c <= 72272 || (c >= 72284 && c <= 72329))) + : (c <= 72349 || (c < 72714 ? (c < 72704 - ? (c >= 72368 && c <= 72440) + ? (c >= 72384 && c <= 72440) : c <= 72712) - : (c <= 72750 || c == 72768)) - : (c <= 72847 || (c < 72971 + : (c <= 72750 || c == 72768)))))))) + : (c <= 72847 || (c < 92992 + ? (c < 73648 + ? (c < 73056 + ? (c < 72971 ? (c < 72968 ? (c >= 72960 && c <= 72966) : c <= 72969) - : (c <= 73008 || c == 73030)))))))) - : (c <= 73061 || (c < 93952 - ? (c < 82944 - ? (c < 73728 - ? (c < 73112 + : (c <= 73008 || c == 73030)) + : (c <= 73061 || (c < 73112 ? (c < 73066 ? (c >= 73063 && c <= 73064) : c <= 73097) - : (c <= 73112 || (c < 73648 - ? (c >= 73440 && c <= 73458) - : c <= 73648))) - : (c <= 74649 || (c < 77712 - ? (c < 74880 - ? (c >= 74752 && c <= 74862) - : c <= 75075) - : (c <= 77808 || (c >= 77824 && c <= 78894))))) - : (c <= 83526 || (c < 92928 - ? (c < 92784 + : (c <= 73112 || (c >= 73440 && c <= 73458))))) + : (c <= 73648 || (c < 82944 + ? (c < 74880 + ? (c < 74752 + ? (c >= 73728 && c <= 74649) + : c <= 74862) + : (c <= 75075 || (c >= 77824 && c <= 78894))) + : (c <= 83526 || (c < 92880 ? (c < 92736 ? (c >= 92160 && c <= 92728) : c <= 92766) - : (c <= 92862 || (c >= 92880 && c <= 92909))) - : (c <= 92975 || (c < 93053 - ? (c < 93027 - ? (c >= 92992 && c <= 92995) - : c <= 93047) - : (c <= 93071 || (c >= 93760 && c <= 93823))))))) - : (c <= 94026 || (c < 110589 - ? (c < 94208 - ? (c < 94176 - ? (c < 94099 - ? c == 94032 - : c <= 94111) - : (c <= 94177 || c == 94179)) - : (c <= 100343 || (c < 110576 - ? (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640) - : (c <= 110579 || (c >= 110581 && c <= 110587))))) - : (c <= 110590 || (c < 113664 - ? (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110882) - : c <= 110930) - : (c <= 110951 || (c >= 110960 && c <= 111355))) - : (c <= 113770 || (c < 113808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : c <= 113800) - : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 125259 - ? (c < 120572 - ? (c < 120086 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 + : (c <= 92909 || (c >= 92928 && c <= 92975))))))) + : (c <= 92995 || (c < 100352 + ? (c < 94032 + ? (c < 93760 + ? (c < 93053 + ? (c >= 93027 && c <= 93047) + : c <= 93071) + : (c <= 93823 || (c >= 93952 && c <= 94026))) + : (c <= 94032 || (c < 94179 + ? (c < 94176 + ? (c >= 94099 && c <= 94111) + : c <= 94177) + : (c <= 94179 || (c >= 94208 && c <= 100343))))) + : (c <= 101589 || (c < 110960 + ? (c < 110928 + ? (c < 110592 + ? (c >= 101632 && c <= 101640) + : c <= 110878) + : (c <= 110930 || (c >= 110948 && c <= 110951))) + : (c <= 111355 || (c < 113776 + ? (c >= 113664 && c <= 113770) + : (c <= 113788 || (c >= 113792 && c <= 113800))))))))))) + : (c <= 113817 || (c < 126469 + ? (c < 120488 + ? (c < 120005 + ? (c < 119973 + ? (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)) + : (c <= 119974 || (c < 119995 + ? (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c >= 120077 && c <= 120084))))) - : (c <= 120092 || (c < 120138 - ? (c < 120128 - ? (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126) - : (c <= 120132 || c == 120134)) - : (c <= 120144 || (c < 120514 - ? (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512) - : (c <= 120538 || (c >= 120540 && c <= 120570))))))) - : (c <= 120596 || (c < 123191 - ? (c < 120714 - ? (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c >= 120688 && c <= 120712))) - : (c <= 120744 || (c < 122624 - ? (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779) - : (c <= 122654 || (c >= 123136 && c <= 123180))))) - : (c <= 123197 || (c < 124904 - ? (c < 123584 - ? (c < 123536 - ? c == 123214 - : c <= 123565) - : (c <= 123627 || (c >= 124896 && c <= 124902))) - : (c <= 124907 || (c < 124928 - ? (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926) - : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) - : (c <= 125259 || (c < 126559 - ? (c < 126535 - ? (c < 126505 - ? (c < 126497 - ? (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495) - : (c <= 126498 || (c < 126503 - ? c == 126500 - : c <= 126503))) - : (c <= 126514 || (c < 126523 - ? (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521) - : (c <= 126523 || c == 126530)))) - : (c <= 126535 || (c < 126548 - ? (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c >= 126545 && c <= 126546))) - : (c <= 126548 || (c < 126555 - ? (c < 126553 - ? c == 126551 - : c <= 126553) - : (c <= 126555 || c == 126557)))))) - : (c <= 126559 || (c < 126625 - ? (c < 126580 - ? (c < 126567 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : c <= 126564) - : (c <= 126570 || (c >= 126572 && c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c >= 126603 && c <= 126619))))) - : (c <= 126627 || (c < 177984 - ? (c < 131072 - ? (c < 126635 - ? (c >= 126629 && c <= 126633) - : c <= 126651) - : (c <= 173791 || (c >= 173824 && c <= 177976))) - : (c <= 178205 || (c < 194560 - ? (c < 183984 - ? (c >= 178208 && c <= 183969) - : c <= 191456) + : c <= 119993) + : (c <= 119995 || (c >= 119997 && c <= 120003))))) + : (c <= 120069 || (c < 120123 + ? (c < 120086 + ? (c < 120077 + ? (c >= 120071 && c <= 120074) + : c <= 120084) + : (c <= 120092 || (c >= 120094 && c <= 120121))) + : (c <= 120126 || (c < 120138 + ? (c < 120134 + ? (c >= 120128 && c <= 120132) + : c <= 120134) + : (c <= 120144 || (c >= 120146 && c <= 120485))))))) + : (c <= 120512 || (c < 120772 + ? (c < 120630 + ? (c < 120572 + ? (c < 120540 + ? (c >= 120514 && c <= 120538) + : c <= 120570) + : (c <= 120596 || (c >= 120598 && c <= 120628))) + : (c <= 120654 || (c < 120714 + ? (c < 120688 + ? (c >= 120656 && c <= 120686) + : c <= 120712) + : (c <= 120744 || (c >= 120746 && c <= 120770))))) + : (c <= 120779 || (c < 124928 + ? (c < 123214 + ? (c < 123191 + ? (c >= 123136 && c <= 123180) + : c <= 123197) + : (c <= 123214 || (c >= 123584 && c <= 123627))) + : (c <= 125124 || (c < 125259 + ? (c >= 125184 && c <= 125251) + : (c <= 125259 || (c >= 126464 && c <= 126467))))))))) + : (c <= 126495 || (c < 126561 + ? (c < 126537 + ? (c < 126516 + ? (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c >= 126505 && c <= 126514))) + : (c <= 126519 || (c < 126530 + ? (c < 126523 + ? c == 126521 + : c <= 126523) + : (c <= 126530 || c == 126535)))) + : (c <= 126537 || (c < 126551 + ? (c < 126545 + ? (c < 126541 + ? c == 126539 + : c <= 126543) + : (c <= 126546 || c == 126548)) + : (c <= 126551 || (c < 126557 + ? (c < 126555 + ? c == 126553 + : c <= 126555) + : (c <= 126557 || c == 126559)))))) + : (c <= 126562 || (c < 126629 + ? (c < 126585 + ? (c < 126572 + ? (c < 126567 + ? c == 126564 + : c <= 126570) + : (c <= 126578 || (c >= 126580 && c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173789) + : (c <= 177972 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 194560 + ? (c >= 183984 && c <= 191456) : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); } static inline bool sym_identifier_character_set_2(int32_t c) { - return (c < 43616 - ? (c < 3782 - ? (c < 2748 - ? (c < 2045 + return (c < 43052 + ? (c < 3718 + ? (c < 2730 + ? (c < 2042 ? (c < 1015 ? (c < 710 ? (c < 181 @@ -5339,344 +3833,338 @@ static inline bool sym_identifier_character_set_2(int32_t c) { ? (c < 1808 ? c == 1791 : c <= 1866) - : (c <= 1969 || (c < 2042 - ? (c >= 1984 && c <= 2037) - : c <= 2042))))))))) - : (c <= 2045 || (c < 2558 - ? (c < 2451 - ? (c < 2200 - ? (c < 2144 - ? (c < 2112 - ? (c >= 2048 && c <= 2093) - : c <= 2139) - : (c <= 2154 || (c < 2185 - ? (c >= 2160 && c <= 2183) - : c <= 2190))) - : (c <= 2273 || (c < 2417 - ? (c < 2406 - ? (c >= 2275 && c <= 2403) - : c <= 2415) - : (c <= 2435 || (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448))))) - : (c <= 2472 || (c < 2507 - ? (c < 2486 - ? (c < 2482 - ? (c >= 2474 && c <= 2480) - : c <= 2482) - : (c <= 2489 || (c < 2503 - ? (c >= 2492 && c <= 2500) - : c <= 2504))) - : (c <= 2510 || (c < 2527 - ? (c < 2524 - ? c == 2519 - : c <= 2525) - : (c <= 2531 || (c < 2556 - ? (c >= 2534 && c <= 2545) - : c <= 2556))))))) - : (c <= 2558 || (c < 2635 - ? (c < 2610 - ? (c < 2575 - ? (c < 2565 - ? (c >= 2561 && c <= 2563) - : c <= 2570) - : (c <= 2576 || (c < 2602 - ? (c >= 2579 && c <= 2600) - : c <= 2608))) - : (c <= 2611 || (c < 2620 - ? (c < 2616 - ? (c >= 2613 && c <= 2614) - : c <= 2617) - : (c <= 2620 || (c < 2631 - ? (c >= 2622 && c <= 2626) - : c <= 2632))))) - : (c <= 2637 || (c < 2693 - ? (c < 2654 - ? (c < 2649 - ? c == 2641 - : c <= 2652) - : (c <= 2654 || (c < 2689 - ? (c >= 2662 && c <= 2677) - : c <= 2691))) - : (c <= 2701 || (c < 2730 - ? (c < 2707 - ? (c >= 2703 && c <= 2705) - : c <= 2728) - : (c <= 2736 || (c < 2741 + : (c <= 1969 || (c >= 1984 && c <= 2037))))))))) + : (c <= 2042 || (c < 2534 + ? (c < 2447 + ? (c < 2230 + ? (c < 2112 + ? (c < 2048 + ? c == 2045 + : c <= 2093) + : (c <= 2139 || (c < 2208 + ? (c >= 2144 && c <= 2154) + : c <= 2228))) + : (c <= 2247 || (c < 2406 + ? (c < 2275 + ? (c >= 2259 && c <= 2273) + : c <= 2403) + : (c <= 2415 || (c < 2437 + ? (c >= 2417 && c <= 2435) + : c <= 2444))))) + : (c <= 2448 || (c < 2503 + ? (c < 2482 + ? (c < 2474 + ? (c >= 2451 && c <= 2472) + : c <= 2480) + : (c <= 2482 || (c < 2492 + ? (c >= 2486 && c <= 2489) + : c <= 2500))) + : (c <= 2504 || (c < 2524 + ? (c < 2519 + ? (c >= 2507 && c <= 2510) + : c <= 2519) + : (c <= 2525 || (c >= 2527 && c <= 2531))))))) + : (c <= 2545 || (c < 2622 + ? (c < 2579 + ? (c < 2561 + ? (c < 2558 + ? c == 2556 + : c <= 2558) + : (c <= 2563 || (c < 2575 + ? (c >= 2565 && c <= 2570) + : c <= 2576))) + : (c <= 2600 || (c < 2613 + ? (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611) + : (c <= 2614 || (c < 2620 + ? (c >= 2616 && c <= 2617) + : c <= 2620))))) + : (c <= 2626 || (c < 2662 + ? (c < 2641 + ? (c < 2635 + ? (c >= 2631 && c <= 2632) + : c <= 2637) + : (c <= 2641 || (c < 2654 + ? (c >= 2649 && c <= 2652) + : c <= 2654))) + : (c <= 2677 || (c < 2703 + ? (c < 2693 + ? (c >= 2689 && c <= 2691) + : c <= 2701) + : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) + : (c <= 2736 || (c < 3142 + ? (c < 2918 + ? (c < 2831 + ? (c < 2768 + ? (c < 2748 + ? (c < 2741 ? (c >= 2738 && c <= 2739) - : c <= 2745))))))))))) - : (c <= 2757 || (c < 3168 - ? (c < 2958 - ? (c < 2866 - ? (c < 2809 - ? (c < 2768 - ? (c < 2763 + : c <= 2745) + : (c <= 2757 || (c < 2763 ? (c >= 2759 && c <= 2761) - : c <= 2765) - : (c <= 2768 || (c < 2790 + : c <= 2765))) + : (c <= 2768 || (c < 2809 + ? (c < 2790 ? (c >= 2784 && c <= 2787) - : c <= 2799))) - : (c <= 2815 || (c < 2831 - ? (c < 2821 + : c <= 2799) + : (c <= 2815 || (c < 2821 ? (c >= 2817 && c <= 2819) - : c <= 2828) - : (c <= 2832 || (c < 2858 + : c <= 2828))))) + : (c <= 2832 || (c < 2887 + ? (c < 2866 + ? (c < 2858 ? (c >= 2835 && c <= 2856) - : c <= 2864))))) - : (c <= 2867 || (c < 2908 - ? (c < 2887 - ? (c < 2876 + : c <= 2864) + : (c <= 2867 || (c < 2876 ? (c >= 2869 && c <= 2873) - : c <= 2884) - : (c <= 2888 || (c < 2901 + : c <= 2884))) + : (c <= 2888 || (c < 2908 + ? (c < 2901 ? (c >= 2891 && c <= 2893) - : c <= 2903))) - : (c <= 2909 || (c < 2929 - ? (c < 2918 - ? (c >= 2911 && c <= 2915) - : c <= 2927) - : (c <= 2929 || (c < 2949 - ? (c >= 2946 && c <= 2947) - : c <= 2954))))))) - : (c <= 2960 || (c < 3031 - ? (c < 2984 - ? (c < 2972 - ? (c < 2969 - ? (c >= 2962 && c <= 2965) - : c <= 2970) - : (c <= 2972 || (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980))) - : (c <= 2986 || (c < 3014 - ? (c < 3006 - ? (c >= 2990 && c <= 3001) - : c <= 3010) - : (c <= 3016 || (c < 3024 - ? (c >= 3018 && c <= 3021) - : c <= 3024))))) - : (c <= 3031 || (c < 3132 - ? (c < 3086 - ? (c < 3072 - ? (c >= 3046 && c <= 3055) - : c <= 3084) - : (c <= 3088 || (c < 3114 - ? (c >= 3090 && c <= 3112) - : c <= 3129))) - : (c <= 3140 || (c < 3157 - ? (c < 3146 - ? (c >= 3142 && c <= 3144) - : c <= 3149) - : (c <= 3158 || (c < 3165 - ? (c >= 3160 && c <= 3162) - : c <= 3165))))))))) - : (c <= 3171 || (c < 3450 - ? (c < 3293 - ? (c < 3242 - ? (c < 3205 - ? (c < 3200 - ? (c >= 3174 && c <= 3183) - : c <= 3203) - : (c <= 3212 || (c < 3218 - ? (c >= 3214 && c <= 3216) - : c <= 3240))) - : (c <= 3251 || (c < 3270 - ? (c < 3260 - ? (c >= 3253 && c <= 3257) - : c <= 3268) - : (c <= 3272 || (c < 3285 - ? (c >= 3274 && c <= 3277) - : c <= 3286))))) - : (c <= 3294 || (c < 3346 - ? (c < 3313 - ? (c < 3302 - ? (c >= 3296 && c <= 3299) - : c <= 3311) - : (c <= 3314 || (c < 3342 - ? (c >= 3328 && c <= 3340) - : c <= 3344))) - : (c <= 3396 || (c < 3412 - ? (c < 3402 - ? (c >= 3398 && c <= 3400) - : c <= 3406) - : (c <= 3415 || (c < 3430 - ? (c >= 3423 && c <= 3427) - : c <= 3439))))))) - : (c <= 3455 || (c < 3570 - ? (c < 3520 - ? (c < 3482 - ? (c < 3461 - ? (c >= 3457 && c <= 3459) - : c <= 3478) - : (c <= 3505 || (c < 3517 - ? (c >= 3507 && c <= 3515) - : c <= 3517))) - : (c <= 3526 || (c < 3542 - ? (c < 3535 - ? c == 3530 - : c <= 3540) - : (c <= 3542 || (c < 3558 - ? (c >= 3544 && c <= 3551) - : c <= 3567))))) - : (c <= 3571 || (c < 3718 - ? (c < 3664 - ? (c < 3648 - ? (c >= 3585 && c <= 3642) - : c <= 3662) - : (c <= 3673 || (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716))) - : (c <= 3722 || (c < 3751 + : c <= 2903) + : (c <= 2909 || (c >= 2911 && c <= 2915))))))) + : (c <= 2927 || (c < 3006 + ? (c < 2969 + ? (c < 2949 + ? (c < 2946 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c < 2962 + ? (c >= 2958 && c <= 2960) + : c <= 2965))) + : (c <= 2970 || (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001))))) + : (c <= 3010 || (c < 3072 + ? (c < 3024 + ? (c < 3018 + ? (c >= 3014 && c <= 3016) + : c <= 3021) + : (c <= 3024 || (c < 3046 + ? c == 3031 + : c <= 3055))) + : (c <= 3084 || (c < 3114 + ? (c < 3090 + ? (c >= 3086 && c <= 3088) + : c <= 3112) + : (c <= 3129 || (c >= 3133 && c <= 3140))))))))) + : (c <= 3144 || (c < 3398 + ? (c < 3260 + ? (c < 3200 + ? (c < 3160 + ? (c < 3157 + ? (c >= 3146 && c <= 3149) + : c <= 3158) + : (c <= 3162 || (c < 3174 + ? (c >= 3168 && c <= 3171) + : c <= 3183))) + : (c <= 3203 || (c < 3218 + ? (c < 3214 + ? (c >= 3205 && c <= 3212) + : c <= 3216) + : (c <= 3240 || (c < 3253 + ? (c >= 3242 && c <= 3251) + : c <= 3257))))) + : (c <= 3268 || (c < 3302 + ? (c < 3285 + ? (c < 3274 + ? (c >= 3270 && c <= 3272) + : c <= 3277) + : (c <= 3286 || (c < 3296 + ? c == 3294 + : c <= 3299))) + : (c <= 3311 || (c < 3342 + ? (c < 3328 + ? (c >= 3313 && c <= 3314) + : c <= 3340) + : (c <= 3344 || (c >= 3346 && c <= 3396))))))) + : (c <= 3400 || (c < 3530 + ? (c < 3457 + ? (c < 3423 + ? (c < 3412 + ? (c >= 3402 && c <= 3406) + : c <= 3415) + : (c <= 3427 || (c < 3450 + ? (c >= 3430 && c <= 3439) + : c <= 3455))) + : (c <= 3459 || (c < 3507 + ? (c < 3482 + ? (c >= 3461 && c <= 3478) + : c <= 3505) + : (c <= 3515 || (c < 3520 + ? c == 3517 + : c <= 3526))))) + : (c <= 3530 || (c < 3585 + ? (c < 3544 + ? (c < 3542 + ? (c >= 3535 && c <= 3540) + : c <= 3542) + : (c <= 3551 || (c < 3570 + ? (c >= 3558 && c <= 3567) + : c <= 3571))) + : (c <= 3642 || (c < 3713 + ? (c < 3664 + ? (c >= 3648 && c <= 3662) + : c <= 3673) + : (c <= 3714 || c == 3716)))))))))))) + : (c <= 3722 || (c < 7296 + ? (c < 5024 + ? (c < 4256 + ? (c < 3893 + ? (c < 3784 + ? (c < 3751 ? (c < 3749 ? (c >= 3724 && c <= 3747) : c <= 3749) - : (c <= 3773 || (c >= 3776 && c <= 3780))))))))))))) - : (c <= 3782 || (c < 8025 - ? (c < 5888 - ? (c < 4688 - ? (c < 3953 - ? (c < 3872 - ? (c < 3804 - ? (c < 3792 - ? (c >= 3784 && c <= 3789) - : c <= 3801) - : (c <= 3807 || (c < 3864 - ? c == 3840 - : c <= 3865))) - : (c <= 3881 || (c < 3897 - ? (c < 3895 - ? c == 3893 - : c <= 3895) - : (c <= 3897 || (c < 3913 - ? (c >= 3902 && c <= 3911) - : c <= 3948))))) - : (c <= 3972 || (c < 4256 - ? (c < 4038 - ? (c < 3993 - ? (c >= 3974 && c <= 3991) - : c <= 4028) - : (c <= 4038 || (c < 4176 - ? (c >= 4096 && c <= 4169) - : c <= 4253))) - : (c <= 4293 || (c < 4304 + : (c <= 3773 || (c < 3782 + ? (c >= 3776 && c <= 3780) + : c <= 3782))) + : (c <= 3789 || (c < 3840 + ? (c < 3804 + ? (c >= 3792 && c <= 3801) + : c <= 3807) + : (c <= 3840 || (c < 3872 + ? (c >= 3864 && c <= 3865) + : c <= 3881))))) + : (c <= 3893 || (c < 3974 + ? (c < 3902 + ? (c < 3897 + ? c == 3895 + : c <= 3897) + : (c <= 3911 || (c < 3953 + ? (c >= 3913 && c <= 3948) + : c <= 3972))) + : (c <= 3991 || (c < 4096 + ? (c < 4038 + ? (c >= 3993 && c <= 4028) + : c <= 4038) + : (c <= 4169 || (c >= 4176 && c <= 4253))))))) + : (c <= 4293 || (c < 4786 + ? (c < 4688 + ? (c < 4304 ? (c < 4301 ? c == 4295 : c <= 4301) : (c <= 4346 || (c < 4682 ? (c >= 4348 && c <= 4680) - : c <= 4685))))))) - : (c <= 4694 || (c < 4882 - ? (c < 4786 - ? (c < 4704 + : c <= 4685))) + : (c <= 4694 || (c < 4704 ? (c < 4698 ? c == 4696 : c <= 4701) : (c <= 4744 || (c < 4752 ? (c >= 4746 && c <= 4749) - : c <= 4784))) - : (c <= 4789 || (c < 4802 + : c <= 4784))))) + : (c <= 4789 || (c < 4882 + ? (c < 4802 ? (c < 4800 ? (c >= 4792 && c <= 4798) : c <= 4800) : (c <= 4805 || (c < 4824 ? (c >= 4808 && c <= 4822) - : c <= 4880))))) - : (c <= 4885 || (c < 5112 - ? (c < 4969 + : c <= 4880))) + : (c <= 4885 || (c < 4969 ? (c < 4957 ? (c >= 4888 && c <= 4954) : c <= 4959) - : (c <= 4977 || (c < 5024 - ? (c >= 4992 && c <= 5007) - : c <= 5109))) - : (c <= 5117 || (c < 5761 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : c <= 5759) - : (c <= 5786 || (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880))))))))) - : (c <= 5909 || (c < 6688 - ? (c < 6176 - ? (c < 6016 - ? (c < 5984 - ? (c < 5952 - ? (c >= 5919 && c <= 5940) - : c <= 5971) - : (c <= 5996 || (c < 6002 - ? (c >= 5998 && c <= 6000) - : c <= 6003))) - : (c <= 6099 || (c < 6112 - ? (c < 6108 - ? c == 6103 - : c <= 6109) - : (c <= 6121 || (c < 6159 - ? (c >= 6155 && c <= 6157) - : c <= 6169))))) - : (c <= 6264 || (c < 6470 - ? (c < 6400 - ? (c < 6320 - ? (c >= 6272 && c <= 6314) - : c <= 6389) - : (c <= 6430 || (c < 6448 + : (c <= 4977 || (c >= 4992 && c <= 5007))))))))) + : (c <= 5109 || (c < 6400 + ? (c < 5998 + ? (c < 5870 + ? (c < 5743 + ? (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740) + : (c <= 5759 || (c < 5792 + ? (c >= 5761 && c <= 5786) + : c <= 5866))) + : (c <= 5880 || (c < 5920 + ? (c < 5902 + ? (c >= 5888 && c <= 5900) + : c <= 5908) + : (c <= 5940 || (c < 5984 + ? (c >= 5952 && c <= 5971) + : c <= 5996))))) + : (c <= 6000 || (c < 6155 + ? (c < 6103 + ? (c < 6016 + ? (c >= 6002 && c <= 6003) + : c <= 6099) + : (c <= 6103 || (c < 6112 + ? (c >= 6108 && c <= 6109) + : c <= 6121))) + : (c <= 6157 || (c < 6272 + ? (c < 6176 + ? (c >= 6160 && c <= 6169) + : c <= 6264) + : (c <= 6314 || (c >= 6320 && c <= 6389))))))) + : (c <= 6430 || (c < 6800 + ? (c < 6576 + ? (c < 6470 + ? (c < 6448 ? (c >= 6432 && c <= 6443) - : c <= 6459))) - : (c <= 6509 || (c < 6576 - ? (c < 6528 + : c <= 6459) + : (c <= 6509 || (c < 6528 ? (c >= 6512 && c <= 6516) - : c <= 6571) - : (c <= 6601 || (c < 6656 + : c <= 6571))) + : (c <= 6601 || (c < 6688 + ? (c < 6656 ? (c >= 6608 && c <= 6618) - : c <= 6683))))))) - : (c <= 6750 || (c < 7232 - ? (c < 6847 - ? (c < 6800 - ? (c < 6783 + : c <= 6683) + : (c <= 6750 || (c < 6783 ? (c >= 6752 && c <= 6780) - : c <= 6793) - : (c <= 6809 || (c < 6832 + : c <= 6793))))) + : (c <= 6809 || (c < 7019 + ? (c < 6847 + ? (c < 6832 ? c == 6823 - : c <= 6845))) - : (c <= 6862 || (c < 7019 - ? (c < 6992 - ? (c >= 6912 && c <= 6988) - : c <= 7001) - : (c <= 7027 || (c < 7168 + : c <= 6845) + : (c <= 6848 || (c < 6992 + ? (c >= 6912 && c <= 6987) + : c <= 7001))) + : (c <= 7027 || (c < 7232 + ? (c < 7168 ? (c >= 7040 && c <= 7155) - : c <= 7223))))) - : (c <= 7241 || (c < 7380 - ? (c < 7312 - ? (c < 7296 - ? (c >= 7245 && c <= 7293) - : c <= 7304) - : (c <= 7354 || (c < 7376 - ? (c >= 7357 && c <= 7359) - : c <= 7378))) - : (c <= 7418 || (c < 7968 - ? (c < 7960 - ? (c >= 7424 && c <= 7957) - : c <= 7965) - : (c <= 8005 || (c < 8016 - ? (c >= 8008 && c <= 8013) - : c <= 8023))))))))))) - : (c <= 8025 || (c < 11720 - ? (c < 8458 - ? (c < 8178 - ? (c < 8126 - ? (c < 8031 - ? (c < 8029 - ? c == 8027 - : c <= 8029) - : (c <= 8061 || (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124))) - : (c <= 8126 || (c < 8144 - ? (c < 8134 - ? (c >= 8130 && c <= 8132) - : c <= 8140) - : (c <= 8147 || (c < 8160 - ? (c >= 8150 && c <= 8155) - : c <= 8172))))) - : (c <= 8180 || (c < 8336 + : c <= 7223) + : (c <= 7241 || (c >= 7245 && c <= 7293))))))))))) + : (c <= 7304 || (c < 11264 + ? (c < 8178 + ? (c < 8027 + ? (c < 7675 + ? (c < 7376 + ? (c < 7357 + ? (c >= 7312 && c <= 7354) + : c <= 7359) + : (c <= 7378 || (c < 7424 + ? (c >= 7380 && c <= 7418) + : c <= 7673))) + : (c <= 7957 || (c < 8008 + ? (c < 7968 + ? (c >= 7960 && c <= 7965) + : c <= 8005) + : (c <= 8013 || (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025))))) + : (c <= 8027 || (c < 8130 + ? (c < 8064 + ? (c < 8031 + ? c == 8029 + : c <= 8061) + : (c <= 8116 || (c < 8126 + ? (c >= 8118 && c <= 8124) + : c <= 8126))) + : (c <= 8132 || (c < 8150 + ? (c < 8144 + ? (c >= 8134 && c <= 8140) + : c <= 8147) + : (c <= 8155 || (c >= 8160 && c <= 8172))))))) + : (c <= 8180 || (c < 8458 + ? (c < 8336 ? (c < 8276 ? (c < 8255 ? (c >= 8182 && c <= 8188) @@ -5690,9 +4178,8 @@ static inline bool sym_identifier_character_set_2(int32_t c) { : c <= 8417) : (c <= 8432 || (c < 8455 ? c == 8450 - : c <= 8455))))))) - : (c <= 8467 || (c < 11499 - ? (c < 8490 + : c <= 8455))))) + : (c <= 8467 || (c < 8490 ? (c < 8484 ? (c < 8472 ? c == 8469 @@ -5704,563 +4191,518 @@ static inline bool sym_identifier_character_set_2(int32_t c) { ? (c < 8517 ? (c >= 8508 && c <= 8511) : c <= 8521) - : (c <= 8526 || (c < 11264 - ? (c >= 8544 && c <= 8584) - : c <= 11492))))) - : (c <= 11507 || (c < 11647 - ? (c < 11565 - ? (c < 11559 + : (c <= 8526 || (c >= 8544 && c <= 8584))))))))) + : (c <= 11310 || (c < 12353 + ? (c < 11696 + ? (c < 11565 + ? (c < 11499 + ? (c < 11360 + ? (c >= 11312 && c <= 11358) + : c <= 11492) + : (c <= 11507 || (c < 11559 ? (c >= 11520 && c <= 11557) - : c <= 11559) - : (c <= 11565 || (c < 11631 + : c <= 11559))) + : (c <= 11565 || (c < 11647 + ? (c < 11631 ? (c >= 11568 && c <= 11623) - : c <= 11631))) - : (c <= 11670 || (c < 11696 - ? (c < 11688 + : c <= 11631) + : (c <= 11670 || (c < 11688 ? (c >= 11680 && c <= 11686) - : c <= 11694) - : (c <= 11702 || (c < 11712 + : c <= 11694))))) + : (c <= 11702 || (c < 11744 + ? (c < 11720 + ? (c < 11712 ? (c >= 11704 && c <= 11710) - : c <= 11718))))))))) - : (c <= 11726 || (c < 42623 - ? (c < 12540 - ? (c < 12337 - ? (c < 11744 - ? (c < 11736 + : c <= 11718) + : (c <= 11726 || (c < 11736 ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 11775 || (c < 12321 + : c <= 11742))) + : (c <= 11775 || (c < 12337 + ? (c < 12321 ? (c >= 12293 && c <= 12295) - : c <= 12335))) - : (c <= 12341 || (c < 12441 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12442 || (c < 12449 - ? (c >= 12445 && c <= 12447) - : c <= 12538))))) - : (c <= 12543 || (c < 19968 - ? (c < 12704 - ? (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686) - : (c <= 12735 || (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903))) - : (c <= 42124 || (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42539 || (c < 42612 - ? (c >= 42560 && c <= 42607) - : c <= 42621))))))) - : (c <= 42737 || (c < 43232 - ? (c < 42965 - ? (c < 42891 - ? (c < 42786 - ? (c >= 42775 && c <= 42783) - : c <= 42888) - : (c <= 42954 || (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963))) - : (c <= 42969 || (c < 43072 - ? (c < 43052 - ? (c >= 42994 && c <= 43047) - : c <= 43052) - : (c <= 43123 || (c < 43216 - ? (c >= 43136 && c <= 43205) - : c <= 43225))))) - : (c <= 43255 || (c < 43471 - ? (c < 43312 - ? (c < 43261 - ? c == 43259 - : c <= 43309) - : (c <= 43347 || (c < 43392 - ? (c >= 43360 && c <= 43388) - : c <= 43456))) - : (c <= 43481 || (c < 43584 - ? (c < 43520 - ? (c >= 43488 && c <= 43518) - : c <= 43574) - : (c <= 43597 || (c >= 43600 && c <= 43609))))))))))))))) - : (c <= 43638 || (c < 71453 - ? (c < 67639 - ? (c < 65345 - ? (c < 64312 - ? (c < 43888 - ? (c < 43785 - ? (c < 43744 - ? (c < 43739 + : c <= 12335) + : (c <= 12341 || (c >= 12344 && c <= 12348))))))) + : (c <= 12438 || (c < 42192 + ? (c < 12593 + ? (c < 12449 + ? (c < 12445 + ? (c >= 12441 && c <= 12442) + : c <= 12447) + : (c <= 12538 || (c < 12549 + ? (c >= 12540 && c <= 12543) + : c <= 12591))) + : (c <= 12686 || (c < 13312 + ? (c < 12784 + ? (c >= 12704 && c <= 12735) + : c <= 12799) + : (c <= 19903 || (c < 40960 + ? (c >= 19968 && c <= 40956) + : c <= 42124))))) + : (c <= 42237 || (c < 42775 + ? (c < 42560 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42539) + : (c <= 42607 || (c < 42623 + ? (c >= 42612 && c <= 42621) + : c <= 42737))) + : (c <= 42783 || (c < 42946 + ? (c < 42891 + ? (c >= 42786 && c <= 42888) + : c <= 42943) + : (c <= 42954 || (c >= 42997 && c <= 43047))))))))))))))) + : (c <= 43052 || (c < 71096 + ? (c < 66864 + ? (c < 64914 + ? (c < 43816 + ? (c < 43520 + ? (c < 43261 + ? (c < 43216 + ? (c < 43136 + ? (c >= 43072 && c <= 43123) + : c <= 43205) + : (c <= 43225 || (c < 43259 + ? (c >= 43232 && c <= 43255) + : c <= 43259))) + : (c <= 43309 || (c < 43392 + ? (c < 43360 + ? (c >= 43312 && c <= 43347) + : c <= 43388) + : (c <= 43456 || (c < 43488 + ? (c >= 43471 && c <= 43481) + : c <= 43518))))) + : (c <= 43574 || (c < 43744 + ? (c < 43616 + ? (c < 43600 + ? (c >= 43584 && c <= 43597) + : c <= 43609) + : (c <= 43638 || (c < 43739 ? (c >= 43642 && c <= 43714) - : c <= 43741) - : (c <= 43759 || (c < 43777 + : c <= 43741))) + : (c <= 43759 || (c < 43785 + ? (c < 43777 ? (c >= 43762 && c <= 43766) - : c <= 43782))) - : (c <= 43790 || (c < 43816 - ? (c < 43808 + : c <= 43782) + : (c <= 43790 || (c < 43808 ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c < 43868 + : c <= 43814))))))) + : (c <= 43822 || (c < 64275 + ? (c < 44032 + ? (c < 43888 + ? (c < 43868 ? (c >= 43824 && c <= 43866) - : c <= 43881))))) - : (c <= 44010 || (c < 63744 - ? (c < 44032 - ? (c < 44016 + : c <= 43881) + : (c <= 44010 || (c < 44016 ? (c >= 44012 && c <= 44013) - : c <= 44025) - : (c <= 55203 || (c < 55243 + : c <= 44025))) + : (c <= 55203 || (c < 63744 + ? (c < 55243 ? (c >= 55216 && c <= 55238) - : c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 + : c <= 55291) + : (c <= 64109 || (c < 64256 ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || (c < 64298 + : c <= 64262))))) + : (c <= 64279 || (c < 64323 + ? (c < 64312 + ? (c < 64298 ? (c >= 64285 && c <= 64296) - : c <= 64310))))))) - : (c <= 64316 || (c < 65075 - ? (c < 64612 - ? (c < 64323 - ? (c < 64320 + : c <= 64310) + : (c <= 64316 || (c < 64320 ? c == 64318 - : c <= 64321) - : (c <= 64324 || (c < 64467 + : c <= 64321))) + : (c <= 64324 || (c < 64612 + ? (c < 64467 ? (c >= 64326 && c <= 64433) - : c <= 64605))) - : (c <= 64829 || (c < 65008 - ? (c < 64914 - ? (c >= 64848 && c <= 64911) - : c <= 64967) - : (c <= 65017 || (c < 65056 - ? (c >= 65024 && c <= 65039) - : c <= 65071))))) - : (c <= 65076 || (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65101 && c <= 65103) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65296 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65305 || (c < 65343 - ? (c >= 65313 && c <= 65338) - : c <= 65343))))))))) - : (c <= 65370 || (c < 66513 - ? (c < 65664 - ? (c < 65536 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65382 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c < 65498 - ? (c >= 65490 && c <= 65495) - : c <= 65500))) - : (c <= 65547 || (c < 65596 - ? (c < 65576 - ? (c >= 65549 && c <= 65574) - : c <= 65594) - : (c <= 65597 || (c < 65616 - ? (c >= 65599 && c <= 65613) - : c <= 65629))))) - : (c <= 65786 || (c < 66304 - ? (c < 66176 - ? (c < 66045 - ? (c >= 65856 && c <= 65908) - : c <= 66045) - : (c <= 66204 || (c < 66272 - ? (c >= 66208 && c <= 66256) - : c <= 66272))) - : (c <= 66335 || (c < 66432 - ? (c < 66384 - ? (c >= 66349 && c <= 66378) - : c <= 66426) - : (c <= 66461 || (c < 66504 - ? (c >= 66464 && c <= 66499) - : c <= 66511))))))) - : (c <= 66517 || (c < 66979 - ? (c < 66864 - ? (c < 66736 - ? (c < 66720 - ? (c >= 66560 && c <= 66717) - : c <= 66729) - : (c <= 66771 || (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855))) - : (c <= 66915 || (c < 66956 - ? (c < 66940 - ? (c >= 66928 && c <= 66938) - : c <= 66954) - : (c <= 66962 || (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977))))) - : (c <= 66993 || (c < 67456 - ? (c < 67072 - ? (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004) - : (c <= 67382 || (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431))) - : (c <= 67461 || (c < 67584 - ? (c < 67506 - ? (c >= 67463 && c <= 67504) - : c <= 67514) - : (c <= 67589 || (c < 67594 - ? c == 67592 - : c <= 67637))))))))))) - : (c <= 67640 || (c < 69956 - ? (c < 68448 - ? (c < 68101 - ? (c < 67828 - ? (c < 67680 - ? (c < 67647 - ? c == 67644 - : c <= 67669) - : (c <= 67702 || (c < 67808 - ? (c >= 67712 && c <= 67742) - : c <= 67826))) - : (c <= 67829 || (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c < 68096 - ? (c >= 68030 && c <= 68031) - : c <= 68099))))) - : (c <= 68102 || (c < 68192 - ? (c < 68121 - ? (c < 68117 - ? (c >= 68108 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c < 68159 - ? (c >= 68152 && c <= 68154) - : c <= 68159))) - : (c <= 68220 || (c < 68297 - ? (c < 68288 - ? (c >= 68224 && c <= 68252) - : c <= 68295) - : (c <= 68326 || (c < 68416 - ? (c >= 68352 && c <= 68405) - : c <= 68437))))))) - : (c <= 68466 || (c < 69424 - ? (c < 68912 - ? (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c < 68864 - ? (c >= 68800 && c <= 68850) - : c <= 68903))) - : (c <= 68921 || (c < 69296 - ? (c < 69291 - ? (c >= 69248 && c <= 69289) - : c <= 69292) - : (c <= 69297 || (c < 69415 - ? (c >= 69376 && c <= 69404) - : c <= 69415))))) - : (c <= 69456 || (c < 69759 - ? (c < 69600 - ? (c < 69552 - ? (c >= 69488 && c <= 69509) - : c <= 69572) - : (c <= 69622 || (c < 69734 - ? (c >= 69632 && c <= 69702) - : c <= 69749))) - : (c <= 69818 || (c < 69872 - ? (c < 69840 - ? c == 69826 - : c <= 69864) - : (c <= 69881 || (c < 69942 - ? (c >= 69888 && c <= 69940) - : c <= 69951))))))))) - : (c <= 69959 || (c < 70459 - ? (c < 70282 - ? (c < 70108 - ? (c < 70016 - ? (c < 70006 - ? (c >= 69968 && c <= 70003) - : c <= 70006) - : (c <= 70084 || (c < 70094 - ? (c >= 70089 && c <= 70092) - : c <= 70106))) - : (c <= 70108 || (c < 70206 - ? (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70199) - : (c <= 70206 || (c < 70280 - ? (c >= 70272 && c <= 70278) - : c <= 70280))))) - : (c <= 70285 || (c < 70405 - ? (c < 70320 - ? (c < 70303 - ? (c >= 70287 && c <= 70301) - : c <= 70312) - : (c <= 70378 || (c < 70400 - ? (c >= 70384 && c <= 70393) - : c <= 70403))) - : (c <= 70412 || (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c < 70453 - ? (c >= 70450 && c <= 70451) - : c <= 70457))))))) - : (c <= 70468 || (c < 70855 - ? (c < 70502 - ? (c < 70480 - ? (c < 70475 - ? (c >= 70471 && c <= 70472) - : c <= 70477) - : (c <= 70480 || (c < 70493 - ? c == 70487 - : c <= 70499))) - : (c <= 70508 || (c < 70736 - ? (c < 70656 - ? (c >= 70512 && c <= 70516) - : c <= 70730) - : (c <= 70745 || (c < 70784 - ? (c >= 70750 && c <= 70753) - : c <= 70853))))) - : (c <= 70855 || (c < 71236 - ? (c < 71096 - ? (c < 71040 - ? (c >= 70864 && c <= 70873) - : c <= 71093) - : (c <= 71104 || (c < 71168 + : c <= 64605) + : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) + : (c <= 64967 || (c < 65549 + ? (c < 65151 + ? (c < 65137 + ? (c < 65056 + ? (c < 65024 + ? (c >= 65008 && c <= 65017) + : c <= 65039) + : (c <= 65071 || (c < 65101 + ? (c >= 65075 && c <= 65076) + : c <= 65103))) + : (c <= 65137 || (c < 65145 + ? (c < 65143 + ? c == 65139 + : c <= 65143) + : (c <= 65145 || (c < 65149 + ? c == 65147 + : c <= 65149))))) + : (c <= 65276 || (c < 65474 + ? (c < 65343 + ? (c < 65313 + ? (c >= 65296 && c <= 65305) + : c <= 65338) + : (c <= 65343 || (c < 65382 + ? (c >= 65345 && c <= 65370) + : c <= 65470))) + : (c <= 65479 || (c < 65498 + ? (c < 65490 + ? (c >= 65482 && c <= 65487) + : c <= 65495) + : (c <= 65500 || (c >= 65536 && c <= 65547))))))) + : (c <= 65574 || (c < 66349 + ? (c < 65856 + ? (c < 65599 + ? (c < 65596 + ? (c >= 65576 && c <= 65594) + : c <= 65597) + : (c <= 65613 || (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786))) + : (c <= 65908 || (c < 66208 + ? (c < 66176 + ? c == 66045 + : c <= 66204) + : (c <= 66256 || (c < 66304 + ? c == 66272 + : c <= 66335))))) + : (c <= 66378 || (c < 66560 + ? (c < 66464 + ? (c < 66432 + ? (c >= 66384 && c <= 66426) + : c <= 66461) + : (c <= 66499 || (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517))) + : (c <= 66717 || (c < 66776 + ? (c < 66736 + ? (c >= 66720 && c <= 66729) + : c <= 66771) + : (c <= 66811 || (c >= 66816 && c <= 66855))))))))))) + : (c <= 66915 || (c < 69632 + ? (c < 68152 + ? (c < 67808 + ? (c < 67594 + ? (c < 67424 + ? (c < 67392 + ? (c >= 67072 && c <= 67382) + : c <= 67413) + : (c <= 67431 || (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592))) + : (c <= 67637 || (c < 67647 + ? (c < 67644 + ? (c >= 67639 && c <= 67640) + : c <= 67644) + : (c <= 67669 || (c < 67712 + ? (c >= 67680 && c <= 67702) + : c <= 67742))))) + : (c <= 67826 || (c < 68096 + ? (c < 67872 + ? (c < 67840 + ? (c >= 67828 && c <= 67829) + : c <= 67861) + : (c <= 67897 || (c < 68030 + ? (c >= 67968 && c <= 68023) + : c <= 68031))) + : (c <= 68099 || (c < 68117 + ? (c < 68108 + ? (c >= 68101 && c <= 68102) + : c <= 68115) + : (c <= 68119 || (c >= 68121 && c <= 68149))))))) + : (c <= 68154 || (c < 68800 + ? (c < 68352 + ? (c < 68224 + ? (c < 68192 + ? c == 68159 + : c <= 68220) + : (c <= 68252 || (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68326))) + : (c <= 68405 || (c < 68480 + ? (c < 68448 + ? (c >= 68416 && c <= 68437) + : c <= 68466) + : (c <= 68497 || (c < 68736 + ? (c >= 68608 && c <= 68680) + : c <= 68786))))) + : (c <= 68850 || (c < 69376 + ? (c < 69248 + ? (c < 68912 + ? (c >= 68864 && c <= 68903) + : c <= 68921) + : (c <= 69289 || (c < 69296 + ? (c >= 69291 && c <= 69292) + : c <= 69297))) + : (c <= 69404 || (c < 69552 + ? (c < 69424 + ? c == 69415 + : c <= 69456) + : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) + : (c <= 69702 || (c < 70384 + ? (c < 70094 + ? (c < 69942 + ? (c < 69840 + ? (c < 69759 + ? (c >= 69734 && c <= 69743) + : c <= 69818) + : (c <= 69864 || (c < 69888 + ? (c >= 69872 && c <= 69881) + : c <= 69940))) + : (c <= 69951 || (c < 70006 + ? (c < 69968 + ? (c >= 69956 && c <= 69959) + : c <= 70003) + : (c <= 70006 || (c < 70089 + ? (c >= 70016 && c <= 70084) + : c <= 70092))))) + : (c <= 70106 || (c < 70280 + ? (c < 70163 + ? (c < 70144 + ? c == 70108 + : c <= 70161) + : (c <= 70199 || (c < 70272 + ? c == 70206 + : c <= 70278))) + : (c <= 70280 || (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c >= 70320 && c <= 70378))))))) + : (c <= 70393 || (c < 70487 + ? (c < 70450 + ? (c < 70415 + ? (c < 70405 + ? (c >= 70400 && c <= 70403) + : c <= 70412) + : (c <= 70416 || (c < 70442 + ? (c >= 70419 && c <= 70440) + : c <= 70448))) + : (c <= 70451 || (c < 70471 + ? (c < 70459 + ? (c >= 70453 && c <= 70457) + : c <= 70468) + : (c <= 70472 || (c < 70480 + ? (c >= 70475 && c <= 70477) + : c <= 70480))))) + : (c <= 70487 || (c < 70750 + ? (c < 70512 + ? (c < 70502 + ? (c >= 70493 && c <= 70499) + : c <= 70508) + : (c <= 70516 || (c < 70736 + ? (c >= 70656 && c <= 70730) + : c <= 70745))) + : (c <= 70753 || (c < 70864 + ? (c < 70855 + ? (c >= 70784 && c <= 70853) + : c <= 70855) + : (c <= 70873 || (c >= 71040 && c <= 71093))))))))))))) + : (c <= 71104 || (c < 119894 + ? (c < 73104 + ? (c < 72163 + ? (c < 71935 + ? (c < 71360 + ? (c < 71236 + ? (c < 71168 ? (c >= 71128 && c <= 71133) - : c <= 71232))) - : (c <= 71236 || (c < 71360 - ? (c < 71296 + : c <= 71232) + : (c <= 71236 || (c < 71296 ? (c >= 71248 && c <= 71257) - : c <= 71352) - : (c <= 71369 || (c >= 71424 && c <= 71450))))))))))))) - : (c <= 71467 || (c < 119973 - ? (c < 77824 - ? (c < 72760 - ? (c < 72016 - ? (c < 71945 - ? (c < 71680 - ? (c < 71488 - ? (c >= 71472 && c <= 71481) - : c <= 71494) - : (c <= 71738 || (c < 71935 - ? (c >= 71840 && c <= 71913) - : c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71989 || (c < 71995 - ? (c >= 71991 && c <= 71992) - : c <= 72003))))) - : (c <= 72025 || (c < 72263 - ? (c < 72154 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72151) - : (c <= 72161 || (c < 72192 - ? (c >= 72163 && c <= 72164) - : c <= 72254))) - : (c <= 72263 || (c < 72368 - ? (c < 72349 - ? (c >= 72272 && c <= 72345) - : c <= 72349) - : (c <= 72440 || (c < 72714 - ? (c >= 72704 && c <= 72712) - : c <= 72758))))))) - : (c <= 72768 || (c < 73056 - ? (c < 72968 - ? (c < 72850 - ? (c < 72818 - ? (c >= 72784 && c <= 72793) - : c <= 72847) - : (c <= 72871 || (c < 72960 - ? (c >= 72873 && c <= 72886) - : c <= 72966))) - : (c <= 72969 || (c < 73020 - ? (c < 73018 - ? (c >= 72971 && c <= 73014) - : c <= 73018) - : (c <= 73021 || (c < 73040 - ? (c >= 73023 && c <= 73031) - : c <= 73049))))) - : (c <= 73061 || (c < 73440 - ? (c < 73104 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73102) - : (c <= 73105 || (c < 73120 + : c <= 71352))) + : (c <= 71369 || (c < 71472 + ? (c < 71453 + ? (c >= 71424 && c <= 71450) + : c <= 71467) + : (c <= 71481 || (c < 71840 + ? (c >= 71680 && c <= 71738) + : c <= 71913))))) + : (c <= 71942 || (c < 71995 + ? (c < 71957 + ? (c < 71948 + ? c == 71945 + : c <= 71955) + : (c <= 71958 || (c < 71991 + ? (c >= 71960 && c <= 71989) + : c <= 71992))) + : (c <= 72003 || (c < 72106 + ? (c < 72096 + ? (c >= 72016 && c <= 72025) + : c <= 72103) + : (c <= 72151 || (c >= 72154 && c <= 72161))))))) + : (c <= 72164 || (c < 72873 + ? (c < 72704 + ? (c < 72272 + ? (c < 72263 + ? (c >= 72192 && c <= 72254) + : c <= 72263) + : (c <= 72345 || (c < 72384 + ? c == 72349 + : c <= 72440))) + : (c <= 72712 || (c < 72784 + ? (c < 72760 + ? (c >= 72714 && c <= 72758) + : c <= 72768) + : (c <= 72793 || (c < 72850 + ? (c >= 72818 && c <= 72847) + : c <= 72871))))) + : (c <= 72886 || (c < 73023 + ? (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73014 || (c < 73020 + ? c == 73018 + : c <= 73021))) + : (c <= 73031 || (c < 73063 + ? (c < 73056 + ? (c >= 73040 && c <= 73049) + : c <= 73061) + : (c <= 73064 || (c >= 73066 && c <= 73102))))))))) + : (c <= 73105 || (c < 94095 + ? (c < 92768 + ? (c < 74752 + ? (c < 73440 + ? (c < 73120 ? (c >= 73107 && c <= 73112) - : c <= 73129))) - : (c <= 73462 || (c < 74752 - ? (c < 73728 + : c <= 73129) + : (c <= 73462 || (c < 73728 ? c == 73648 - : c <= 74649) - : (c <= 74862 || (c < 77712 + : c <= 74649))) + : (c <= 74862 || (c < 82944 + ? (c < 77824 ? (c >= 74880 && c <= 75075) - : c <= 77808))))))))) - : (c <= 78894 || (c < 110576 - ? (c < 93027 - ? (c < 92864 - ? (c < 92736 - ? (c < 92160 - ? (c >= 82944 && c <= 83526) - : c <= 92728) - : (c <= 92766 || (c < 92784 - ? (c >= 92768 && c <= 92777) - : c <= 92862))) - : (c <= 92873 || (c < 92928 + : c <= 78894) + : (c <= 83526 || (c < 92736 + ? (c >= 92160 && c <= 92728) + : c <= 92766))))) + : (c <= 92777 || (c < 93027 + ? (c < 92928 ? (c < 92912 ? (c >= 92880 && c <= 92909) : c <= 92916) : (c <= 92982 || (c < 93008 ? (c >= 92992 && c <= 92995) - : c <= 93017))))) - : (c <= 93047 || (c < 94176 - ? (c < 93952 + : c <= 93017))) + : (c <= 93047 || (c < 93952 ? (c < 93760 ? (c >= 93053 && c <= 93071) : c <= 93823) - : (c <= 94026 || (c < 94095 - ? (c >= 94031 && c <= 94087) - : c <= 94111))) - : (c <= 94177 || (c < 94208 - ? (c < 94192 - ? (c >= 94179 && c <= 94180) - : c <= 94193) - : (c <= 100343 || (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640))))))) - : (c <= 110579 || (c < 118528 - ? (c < 110960 - ? (c < 110592 - ? (c < 110589 - ? (c >= 110581 && c <= 110587) - : c <= 110590) - : (c <= 110882 || (c < 110948 - ? (c >= 110928 && c <= 110930) - : c <= 110951))) - : (c <= 111355 || (c < 113792 - ? (c < 113776 - ? (c >= 113664 && c <= 113770) - : c <= 113788) - : (c <= 113800 || (c < 113821 - ? (c >= 113808 && c <= 113817) - : c <= 113822))))) - : (c <= 118573 || (c < 119210 - ? (c < 119149 - ? (c < 119141 - ? (c >= 118576 && c <= 118598) - : c <= 119145) - : (c <= 119154 || (c < 119173 - ? (c >= 119163 && c <= 119170) - : c <= 119179))) - : (c <= 119213 || (c < 119894 - ? (c < 119808 - ? (c >= 119362 && c <= 119364) - : c <= 119892) - : (c <= 119964 || (c < 119970 + : (c <= 94026 || (c >= 94031 && c <= 94087))))))) + : (c <= 94111 || (c < 113776 + ? (c < 101632 + ? (c < 94192 + ? (c < 94179 + ? (c >= 94176 && c <= 94177) + : c <= 94180) + : (c <= 94193 || (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589))) + : (c <= 101640 || (c < 110948 + ? (c < 110928 + ? (c >= 110592 && c <= 110878) + : c <= 110930) + : (c <= 110951 || (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770))))) + : (c <= 113788 || (c < 119163 + ? (c < 113821 + ? (c < 113808 + ? (c >= 113792 && c <= 113800) + : c <= 113817) + : (c <= 113822 || (c < 119149 + ? (c >= 119141 && c <= 119145) + : c <= 119154))) + : (c <= 119170 || (c < 119362 + ? (c < 119210 + ? (c >= 119173 && c <= 119179) + : c <= 119213) + : (c <= 119364 || (c >= 119808 && c <= 119892))))))))))) + : (c <= 119964 || (c < 124928 + ? (c < 120630 + ? (c < 120094 + ? (c < 119995 + ? (c < 119973 + ? (c < 119970 ? (c >= 119966 && c <= 119967) - : c <= 119970))))))))))) - : (c <= 119974 || (c < 124912 - ? (c < 120746 - ? (c < 120134 - ? (c < 120071 - ? (c < 119995 - ? (c < 119982 + : c <= 119970) + : (c <= 119974 || (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 ? (c >= 119997 && c <= 120003) - : c <= 120069))) - : (c <= 120074 || (c < 120094 - ? (c < 120086 + : c <= 120069) + : (c <= 120074 || (c < 120086 ? (c >= 120077 && c <= 120084) - : c <= 120092) - : (c <= 120121 || (c < 120128 + : c <= 120092))))) + : (c <= 120121 || (c < 120488 + ? (c < 120134 + ? (c < 120128 ? (c >= 120123 && c <= 120126) - : c <= 120132))))) - : (c <= 120134 || (c < 120572 - ? (c < 120488 - ? (c < 120146 + : c <= 120132) + : (c <= 120134 || (c < 120146 ? (c >= 120138 && c <= 120144) - : c <= 120485) - : (c <= 120512 || (c < 120540 + : c <= 120485))) + : (c <= 120512 || (c < 120572 + ? (c < 120540 ? (c >= 120514 && c <= 120538) - : c <= 120570))) - : (c <= 120596 || (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744))))))) - : (c <= 120770 || (c < 122907 - ? (c < 121476 - ? (c < 121344 - ? (c < 120782 - ? (c >= 120772 && c <= 120779) - : c <= 120831) - : (c <= 121398 || (c < 121461 - ? (c >= 121403 && c <= 121452) - : c <= 121461))) - : (c <= 121476 || (c < 122624 - ? (c < 121505 - ? (c >= 121499 && c <= 121503) - : c <= 121519) - : (c <= 122654 || (c < 122888 + : c <= 120570) + : (c <= 120596 || (c >= 120598 && c <= 120628))))))) + : (c <= 120654 || (c < 121505 + ? (c < 120782 + ? (c < 120714 + ? (c < 120688 + ? (c >= 120656 && c <= 120686) + : c <= 120712) + : (c <= 120744 || (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779))) + : (c <= 120831 || (c < 121461 + ? (c < 121403 + ? (c >= 121344 && c <= 121398) + : c <= 121452) + : (c <= 121461 || (c < 121499 + ? c == 121476 + : c <= 121503))))) + : (c <= 121519 || (c < 123136 + ? (c < 122907 + ? (c < 122888 ? (c >= 122880 && c <= 122886) - : c <= 122904))))) - : (c <= 122913 || (c < 123214 - ? (c < 123136 - ? (c < 122918 + : c <= 122904) + : (c <= 122913 || (c < 122918 ? (c >= 122915 && c <= 122916) - : c <= 122922) - : (c <= 123180 || (c < 123200 + : c <= 122922))) + : (c <= 123180 || (c < 123214 + ? (c < 123200 ? (c >= 123184 && c <= 123197) - : c <= 123209))) - : (c <= 123214 || (c < 124896 - ? (c < 123584 - ? (c >= 123536 && c <= 123566) - : c <= 123641) - : (c <= 124902 || (c < 124909 - ? (c >= 124904 && c <= 124907) - : c <= 124910))))))))) - : (c <= 124926 || (c < 126557 - ? (c < 126521 - ? (c < 126469 - ? (c < 125184 - ? (c < 125136 - ? (c >= 124928 && c <= 125124) - : c <= 125142) - : (c <= 125259 || (c < 126464 - ? (c >= 125264 && c <= 125273) - : c <= 126467))) - : (c <= 126495 || (c < 126503 - ? (c < 126500 - ? (c >= 126497 && c <= 126498) - : c <= 126500) - : (c <= 126503 || (c < 126516 - ? (c >= 126505 && c <= 126514) - : c <= 126519))))) - : (c <= 126521 || (c < 126541 - ? (c < 126535 - ? (c < 126530 - ? c == 126523 - : c <= 126530) - : (c <= 126535 || (c < 126539 - ? c == 126537 - : c <= 126539))) - : (c <= 126543 || (c < 126551 - ? (c < 126548 - ? (c >= 126545 && c <= 126546) - : c <= 126548) - : (c <= 126551 || (c < 126555 - ? c == 126553 - : c <= 126555))))))) + : c <= 123209) + : (c <= 123214 || (c >= 123584 && c <= 123641))))))))) + : (c <= 125124 || (c < 126557 + ? (c < 126523 + ? (c < 126497 + ? (c < 125264 + ? (c < 125184 + ? (c >= 125136 && c <= 125142) + : c <= 125259) + : (c <= 125273 || (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495))) + : (c <= 126498 || (c < 126505 + ? (c < 126503 + ? c == 126500 + : c <= 126503) + : (c <= 126514 || (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521))))) + : (c <= 126523 || (c < 126545 + ? (c < 126537 + ? (c < 126535 + ? c == 126530 + : c <= 126535) + : (c <= 126537 || (c < 126541 + ? c == 126539 + : c <= 126543))) + : (c <= 126546 || (c < 126553 + ? (c < 126551 + ? c == 126548 + : c <= 126551) + : (c <= 126553 || c == 126555)))))) : (c <= 126557 || (c < 126629 ? (c < 126580 ? (c < 126564 @@ -6282,8 +4724,8 @@ static inline bool sym_identifier_character_set_2(int32_t c) { ? (c < 130032 ? (c >= 126635 && c <= 126651) : c <= 130041) - : (c <= 173791 || (c < 177984 - ? (c >= 173824 && c <= 177976) + : (c <= 173789 || (c < 177984 + ? (c >= 173824 && c <= 177972) : c <= 178205))) : (c <= 183969 || (c < 196608 ? (c < 194560 @@ -7739,10 +6181,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [57] = {.lex_state = 50, .external_lex_state = 3}, [58] = {.lex_state = 50, .external_lex_state = 3}, [59] = {.lex_state = 50, .external_lex_state = 3}, - [60] = {.lex_state = 50, .external_lex_state = 3}, - [61] = {.lex_state = 50, .external_lex_state = 2}, - [62] = {.lex_state = 50, .external_lex_state = 3}, - [63] = {.lex_state = 50, .external_lex_state = 2}, + [60] = {.lex_state = 50, .external_lex_state = 2}, + [61] = {.lex_state = 50, .external_lex_state = 3}, + [62] = {.lex_state = 50, .external_lex_state = 2}, + [63] = {.lex_state = 50, .external_lex_state = 3}, [64] = {.lex_state = 50, .external_lex_state = 3}, [65] = {.lex_state = 50, .external_lex_state = 3}, [66] = {.lex_state = 50, .external_lex_state = 4}, @@ -7751,7 +6193,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [69] = {.lex_state = 50, .external_lex_state = 5}, [70] = {.lex_state = 50, .external_lex_state = 5}, [71] = {.lex_state = 50, .external_lex_state = 5}, - [72] = {.lex_state = 50, .external_lex_state = 4}, + [72] = {.lex_state = 50, .external_lex_state = 5}, [73] = {.lex_state = 50, .external_lex_state = 5}, [74] = {.lex_state = 50, .external_lex_state = 5}, [75] = {.lex_state = 50, .external_lex_state = 5}, @@ -7763,7 +6205,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [81] = {.lex_state = 50, .external_lex_state = 5}, [82] = {.lex_state = 50, .external_lex_state = 5}, [83] = {.lex_state = 50, .external_lex_state = 5}, - [84] = {.lex_state = 50, .external_lex_state = 5}, + [84] = {.lex_state = 50, .external_lex_state = 4}, [85] = {.lex_state = 50, .external_lex_state = 5}, [86] = {.lex_state = 50, .external_lex_state = 5}, [87] = {.lex_state = 50, .external_lex_state = 5}, @@ -7816,15 +6258,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [134] = {.lex_state = 50, .external_lex_state = 4}, [135] = {.lex_state = 50, .external_lex_state = 2}, [136] = {.lex_state = 50, .external_lex_state = 2}, - [137] = {.lex_state = 50, .external_lex_state = 2}, - [138] = {.lex_state = 14, .external_lex_state = 2}, + [137] = {.lex_state = 14, .external_lex_state = 2}, + [138] = {.lex_state = 50, .external_lex_state = 2}, [139] = {.lex_state = 14, .external_lex_state = 2}, [140] = {.lex_state = 14, .external_lex_state = 2}, - [141] = {.lex_state = 14, .external_lex_state = 2}, - [142] = {.lex_state = 50, .external_lex_state = 4}, - [143] = {.lex_state = 50, .external_lex_state = 2}, + [141] = {.lex_state = 50, .external_lex_state = 4}, + [142] = {.lex_state = 14, .external_lex_state = 2}, + [143] = {.lex_state = 50, .external_lex_state = 4}, [144] = {.lex_state = 50, .external_lex_state = 2}, - [145] = {.lex_state = 50, .external_lex_state = 4}, + [145] = {.lex_state = 50, .external_lex_state = 2}, [146] = {.lex_state = 50, .external_lex_state = 2}, [147] = {.lex_state = 14, .external_lex_state = 2}, [148] = {.lex_state = 50, .external_lex_state = 2}, @@ -7833,18 +6275,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [151] = {.lex_state = 50, .external_lex_state = 2}, [152] = {.lex_state = 14, .external_lex_state = 2}, [153] = {.lex_state = 50, .external_lex_state = 2}, - [154] = {.lex_state = 50, .external_lex_state = 2}, - [155] = {.lex_state = 14, .external_lex_state = 2}, + [154] = {.lex_state = 14, .external_lex_state = 2}, + [155] = {.lex_state = 50, .external_lex_state = 2}, [156] = {.lex_state = 50, .external_lex_state = 2}, [157] = {.lex_state = 50, .external_lex_state = 2}, - [158] = {.lex_state = 50, .external_lex_state = 2}, + [158] = {.lex_state = 14, .external_lex_state = 2}, [159] = {.lex_state = 50, .external_lex_state = 2}, - [160] = {.lex_state = 14, .external_lex_state = 2}, + [160] = {.lex_state = 50, .external_lex_state = 2}, [161] = {.lex_state = 14, .external_lex_state = 2}, - [162] = {.lex_state = 14, .external_lex_state = 2}, + [162] = {.lex_state = 50, .external_lex_state = 2}, [163] = {.lex_state = 14, .external_lex_state = 2}, [164] = {.lex_state = 50, .external_lex_state = 2}, - [165] = {.lex_state = 50, .external_lex_state = 2}, + [165] = {.lex_state = 14, .external_lex_state = 2}, [166] = {.lex_state = 50, .external_lex_state = 2}, [167] = {.lex_state = 50, .external_lex_state = 2}, [168] = {.lex_state = 50, .external_lex_state = 4}, @@ -7862,10 +6304,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [180] = {.lex_state = 50, .external_lex_state = 2}, [181] = {.lex_state = 50, .external_lex_state = 2}, [182] = {.lex_state = 50, .external_lex_state = 2}, - [183] = {.lex_state = 50, .external_lex_state = 2}, - [184] = {.lex_state = 50, .external_lex_state = 4}, + [183] = {.lex_state = 50, .external_lex_state = 4}, + [184] = {.lex_state = 50, .external_lex_state = 2}, [185] = {.lex_state = 50, .external_lex_state = 4}, - [186] = {.lex_state = 50, .external_lex_state = 2}, + [186] = {.lex_state = 50, .external_lex_state = 4}, [187] = {.lex_state = 50, .external_lex_state = 2}, [188] = {.lex_state = 50, .external_lex_state = 2}, [189] = {.lex_state = 50, .external_lex_state = 2}, @@ -7873,16 +6315,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [191] = {.lex_state = 50, .external_lex_state = 2}, [192] = {.lex_state = 50, .external_lex_state = 2}, [193] = {.lex_state = 50, .external_lex_state = 2}, - [194] = {.lex_state = 50, .external_lex_state = 4}, + [194] = {.lex_state = 50, .external_lex_state = 2}, [195] = {.lex_state = 50, .external_lex_state = 2}, [196] = {.lex_state = 50, .external_lex_state = 2}, [197] = {.lex_state = 50, .external_lex_state = 2}, [198] = {.lex_state = 50, .external_lex_state = 2}, - [199] = {.lex_state = 50, .external_lex_state = 2}, + [199] = {.lex_state = 50, .external_lex_state = 4}, [200] = {.lex_state = 50, .external_lex_state = 2}, [201] = {.lex_state = 50, .external_lex_state = 2}, [202] = {.lex_state = 50, .external_lex_state = 2}, - [203] = {.lex_state = 50, .external_lex_state = 4}, + [203] = {.lex_state = 50, .external_lex_state = 2}, [204] = {.lex_state = 50, .external_lex_state = 2}, [205] = {.lex_state = 50, .external_lex_state = 2}, [206] = {.lex_state = 50, .external_lex_state = 2}, @@ -7891,114 +6333,114 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [209] = {.lex_state = 50, .external_lex_state = 2}, [210] = {.lex_state = 50, .external_lex_state = 2}, [211] = {.lex_state = 50, .external_lex_state = 2}, - [212] = {.lex_state = 14, .external_lex_state = 2}, - [213] = {.lex_state = 14, .external_lex_state = 2}, + [212] = {.lex_state = 50, .external_lex_state = 2}, + [213] = {.lex_state = 50, .external_lex_state = 2}, [214] = {.lex_state = 14, .external_lex_state = 2}, [215] = {.lex_state = 50, .external_lex_state = 2}, - [216] = {.lex_state = 50, .external_lex_state = 2}, - [217] = {.lex_state = 16}, - [218] = {.lex_state = 50, .external_lex_state = 2}, - [219] = {.lex_state = 16}, + [216] = {.lex_state = 14, .external_lex_state = 2}, + [217] = {.lex_state = 14, .external_lex_state = 2}, + [218] = {.lex_state = 14, .external_lex_state = 2}, + [219] = {.lex_state = 14, .external_lex_state = 2}, [220] = {.lex_state = 14, .external_lex_state = 2}, - [221] = {.lex_state = 14, .external_lex_state = 2}, - [222] = {.lex_state = 14, .external_lex_state = 2}, + [221] = {.lex_state = 50, .external_lex_state = 2}, + [222] = {.lex_state = 50, .external_lex_state = 2}, [223] = {.lex_state = 50, .external_lex_state = 2}, [224] = {.lex_state = 50, .external_lex_state = 2}, [225] = {.lex_state = 50, .external_lex_state = 2}, - [226] = {.lex_state = 50, .external_lex_state = 3}, - [227] = {.lex_state = 50, .external_lex_state = 3}, + [226] = {.lex_state = 50, .external_lex_state = 2}, + [227] = {.lex_state = 14, .external_lex_state = 2}, [228] = {.lex_state = 50, .external_lex_state = 2}, - [229] = {.lex_state = 50, .external_lex_state = 3}, + [229] = {.lex_state = 50, .external_lex_state = 2}, [230] = {.lex_state = 50, .external_lex_state = 2}, [231] = {.lex_state = 50, .external_lex_state = 2}, [232] = {.lex_state = 50, .external_lex_state = 2}, [233] = {.lex_state = 50, .external_lex_state = 2}, - [234] = {.lex_state = 50, .external_lex_state = 3}, - [235] = {.lex_state = 14, .external_lex_state = 2}, + [234] = {.lex_state = 50, .external_lex_state = 2}, + [235] = {.lex_state = 50, .external_lex_state = 2}, [236] = {.lex_state = 50, .external_lex_state = 2}, [237] = {.lex_state = 50, .external_lex_state = 2}, [238] = {.lex_state = 50, .external_lex_state = 2}, - [239] = {.lex_state = 15, .external_lex_state = 6}, - [240] = {.lex_state = 50, .external_lex_state = 2}, - [241] = {.lex_state = 15, .external_lex_state = 6}, + [239] = {.lex_state = 50, .external_lex_state = 2}, + [240] = {.lex_state = 50, .external_lex_state = 3}, + [241] = {.lex_state = 50, .external_lex_state = 2}, [242] = {.lex_state = 50, .external_lex_state = 2}, - [243] = {.lex_state = 50, .external_lex_state = 2}, - [244] = {.lex_state = 50, .external_lex_state = 2}, + [243] = {.lex_state = 16}, + [244] = {.lex_state = 50, .external_lex_state = 3}, [245] = {.lex_state = 50, .external_lex_state = 2}, - [246] = {.lex_state = 50, .external_lex_state = 2}, + [246] = {.lex_state = 16}, [247] = {.lex_state = 50, .external_lex_state = 2}, [248] = {.lex_state = 50, .external_lex_state = 2}, - [249] = {.lex_state = 50, .external_lex_state = 2}, + [249] = {.lex_state = 14, .external_lex_state = 2}, [250] = {.lex_state = 50, .external_lex_state = 2}, [251] = {.lex_state = 50, .external_lex_state = 2}, [252] = {.lex_state = 50, .external_lex_state = 2}, - [253] = {.lex_state = 50, .external_lex_state = 3}, - [254] = {.lex_state = 50, .external_lex_state = 3}, - [255] = {.lex_state = 50, .external_lex_state = 3}, - [256] = {.lex_state = 15, .external_lex_state = 4}, + [253] = {.lex_state = 50, .external_lex_state = 2}, + [254] = {.lex_state = 14, .external_lex_state = 2}, + [255] = {.lex_state = 50, .external_lex_state = 2}, + [256] = {.lex_state = 50, .external_lex_state = 2}, [257] = {.lex_state = 50, .external_lex_state = 2}, [258] = {.lex_state = 50, .external_lex_state = 2}, - [259] = {.lex_state = 50, .external_lex_state = 2}, - [260] = {.lex_state = 50, .external_lex_state = 2}, + [259] = {.lex_state = 50, .external_lex_state = 3}, + [260] = {.lex_state = 50, .external_lex_state = 3}, [261] = {.lex_state = 50, .external_lex_state = 2}, [262] = {.lex_state = 50, .external_lex_state = 2}, - [263] = {.lex_state = 50, .external_lex_state = 3}, + [263] = {.lex_state = 50, .external_lex_state = 2}, [264] = {.lex_state = 50, .external_lex_state = 2}, - [265] = {.lex_state = 14, .external_lex_state = 2}, - [266] = {.lex_state = 50, .external_lex_state = 3}, + [265] = {.lex_state = 50, .external_lex_state = 2}, + [266] = {.lex_state = 50, .external_lex_state = 2}, [267] = {.lex_state = 50, .external_lex_state = 2}, - [268] = {.lex_state = 50, .external_lex_state = 3}, - [269] = {.lex_state = 50, .external_lex_state = 2}, + [268] = {.lex_state = 50, .external_lex_state = 2}, + [269] = {.lex_state = 50, .external_lex_state = 4}, [270] = {.lex_state = 50, .external_lex_state = 2}, - [271] = {.lex_state = 50, .external_lex_state = 2}, + [271] = {.lex_state = 50, .external_lex_state = 4}, [272] = {.lex_state = 50, .external_lex_state = 2}, [273] = {.lex_state = 50, .external_lex_state = 2}, - [274] = {.lex_state = 50, .external_lex_state = 3}, - [275] = {.lex_state = 50, .external_lex_state = 3}, + [274] = {.lex_state = 50, .external_lex_state = 2}, + [275] = {.lex_state = 50, .external_lex_state = 2}, [276] = {.lex_state = 50, .external_lex_state = 2}, [277] = {.lex_state = 50, .external_lex_state = 2}, - [278] = {.lex_state = 14, .external_lex_state = 2}, - [279] = {.lex_state = 50, .external_lex_state = 3}, + [278] = {.lex_state = 50, .external_lex_state = 4}, + [279] = {.lex_state = 50, .external_lex_state = 4}, [280] = {.lex_state = 50, .external_lex_state = 2}, - [281] = {.lex_state = 50, .external_lex_state = 3}, - [282] = {.lex_state = 50, .external_lex_state = 2}, - [283] = {.lex_state = 50, .external_lex_state = 3}, + [281] = {.lex_state = 50, .external_lex_state = 2}, + [282] = {.lex_state = 14, .external_lex_state = 2}, + [283] = {.lex_state = 14, .external_lex_state = 2}, [284] = {.lex_state = 50, .external_lex_state = 2}, [285] = {.lex_state = 50, .external_lex_state = 2}, - [286] = {.lex_state = 50, .external_lex_state = 2}, - [287] = {.lex_state = 50, .external_lex_state = 2}, - [288] = {.lex_state = 14, .external_lex_state = 2}, + [286] = {.lex_state = 50, .external_lex_state = 3}, + [287] = {.lex_state = 15, .external_lex_state = 6}, + [288] = {.lex_state = 50, .external_lex_state = 2}, [289] = {.lex_state = 50, .external_lex_state = 2}, [290] = {.lex_state = 50, .external_lex_state = 2}, - [291] = {.lex_state = 50, .external_lex_state = 2}, + [291] = {.lex_state = 50, .external_lex_state = 3}, [292] = {.lex_state = 50, .external_lex_state = 2}, - [293] = {.lex_state = 50, .external_lex_state = 4}, - [294] = {.lex_state = 50, .external_lex_state = 2}, - [295] = {.lex_state = 50, .external_lex_state = 2}, - [296] = {.lex_state = 50, .external_lex_state = 2}, - [297] = {.lex_state = 50, .external_lex_state = 2}, - [298] = {.lex_state = 50, .external_lex_state = 2}, - [299] = {.lex_state = 50, .external_lex_state = 2}, - [300] = {.lex_state = 50, .external_lex_state = 4}, - [301] = {.lex_state = 15, .external_lex_state = 6}, + [293] = {.lex_state = 50, .external_lex_state = 3}, + [294] = {.lex_state = 50, .external_lex_state = 3}, + [295] = {.lex_state = 50, .external_lex_state = 3}, + [296] = {.lex_state = 50, .external_lex_state = 3}, + [297] = {.lex_state = 50, .external_lex_state = 3}, + [298] = {.lex_state = 50, .external_lex_state = 3}, + [299] = {.lex_state = 50, .external_lex_state = 3}, + [300] = {.lex_state = 15, .external_lex_state = 6}, + [301] = {.lex_state = 50, .external_lex_state = 2}, [302] = {.lex_state = 50, .external_lex_state = 2}, - [303] = {.lex_state = 50, .external_lex_state = 2}, - [304] = {.lex_state = 50, .external_lex_state = 2}, + [303] = {.lex_state = 50, .external_lex_state = 3}, + [304] = {.lex_state = 14, .external_lex_state = 2}, [305] = {.lex_state = 50, .external_lex_state = 2}, - [306] = {.lex_state = 50, .external_lex_state = 4}, - [307] = {.lex_state = 50, .external_lex_state = 4}, + [306] = {.lex_state = 50, .external_lex_state = 2}, + [307] = {.lex_state = 50, .external_lex_state = 2}, [308] = {.lex_state = 50, .external_lex_state = 3}, [309] = {.lex_state = 50, .external_lex_state = 2}, [310] = {.lex_state = 50, .external_lex_state = 2}, - [311] = {.lex_state = 50, .external_lex_state = 2}, - [312] = {.lex_state = 14, .external_lex_state = 2}, + [311] = {.lex_state = 14, .external_lex_state = 2}, + [312] = {.lex_state = 50, .external_lex_state = 2}, [313] = {.lex_state = 50, .external_lex_state = 2}, - [314] = {.lex_state = 16, .external_lex_state = 6}, + [314] = {.lex_state = 50, .external_lex_state = 2}, [315] = {.lex_state = 50, .external_lex_state = 2}, - [316] = {.lex_state = 15}, - [317] = {.lex_state = 15}, - [318] = {.lex_state = 16, .external_lex_state = 6}, - [319] = {.lex_state = 14, .external_lex_state = 2}, + [316] = {.lex_state = 50, .external_lex_state = 2}, + [317] = {.lex_state = 50, .external_lex_state = 2}, + [318] = {.lex_state = 50, .external_lex_state = 2}, + [319] = {.lex_state = 50, .external_lex_state = 2}, [320] = {.lex_state = 50, .external_lex_state = 2}, [321] = {.lex_state = 50, .external_lex_state = 2}, [322] = {.lex_state = 50, .external_lex_state = 2}, @@ -8009,21 +6451,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [327] = {.lex_state = 50, .external_lex_state = 2}, [328] = {.lex_state = 50, .external_lex_state = 2}, [329] = {.lex_state = 50, .external_lex_state = 2}, - [330] = {.lex_state = 15, .external_lex_state = 6}, - [331] = {.lex_state = 15, .external_lex_state = 6}, - [332] = {.lex_state = 50, .external_lex_state = 3}, - [333] = {.lex_state = 50, .external_lex_state = 3}, - [334] = {.lex_state = 50, .external_lex_state = 3}, - [335] = {.lex_state = 50, .external_lex_state = 3}, - [336] = {.lex_state = 50, .external_lex_state = 3}, - [337] = {.lex_state = 50, .external_lex_state = 3}, - [338] = {.lex_state = 50, .external_lex_state = 3}, - [339] = {.lex_state = 50, .external_lex_state = 3}, - [340] = {.lex_state = 50, .external_lex_state = 3}, - [341] = {.lex_state = 50, .external_lex_state = 3}, - [342] = {.lex_state = 50, .external_lex_state = 3}, - [343] = {.lex_state = 50, .external_lex_state = 3}, - [344] = {.lex_state = 14, .external_lex_state = 2}, + [330] = {.lex_state = 50, .external_lex_state = 2}, + [331] = {.lex_state = 50, .external_lex_state = 2}, + [332] = {.lex_state = 50, .external_lex_state = 2}, + [333] = {.lex_state = 50, .external_lex_state = 2}, + [334] = {.lex_state = 50, .external_lex_state = 2}, + [335] = {.lex_state = 50, .external_lex_state = 2}, + [336] = {.lex_state = 50, .external_lex_state = 2}, + [337] = {.lex_state = 50, .external_lex_state = 2}, + [338] = {.lex_state = 50, .external_lex_state = 2}, + [339] = {.lex_state = 50, .external_lex_state = 2}, + [340] = {.lex_state = 50, .external_lex_state = 2}, + [341] = {.lex_state = 50, .external_lex_state = 2}, + [342] = {.lex_state = 50, .external_lex_state = 2}, + [343] = {.lex_state = 50, .external_lex_state = 2}, + [344] = {.lex_state = 50, .external_lex_state = 2}, [345] = {.lex_state = 50, .external_lex_state = 2}, [346] = {.lex_state = 50, .external_lex_state = 2}, [347] = {.lex_state = 50, .external_lex_state = 2}, @@ -8032,8 +6474,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [350] = {.lex_state = 50, .external_lex_state = 2}, [351] = {.lex_state = 50, .external_lex_state = 2}, [352] = {.lex_state = 50, .external_lex_state = 2}, - [353] = {.lex_state = 50, .external_lex_state = 2}, - [354] = {.lex_state = 16, .external_lex_state = 6}, + [353] = {.lex_state = 15, .external_lex_state = 7}, + [354] = {.lex_state = 50, .external_lex_state = 2}, [355] = {.lex_state = 50, .external_lex_state = 2}, [356] = {.lex_state = 50, .external_lex_state = 2}, [357] = {.lex_state = 50, .external_lex_state = 2}, @@ -8056,119 +6498,119 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [374] = {.lex_state = 50, .external_lex_state = 2}, [375] = {.lex_state = 50, .external_lex_state = 2}, [376] = {.lex_state = 50, .external_lex_state = 2}, - [377] = {.lex_state = 16}, + [377] = {.lex_state = 50, .external_lex_state = 2}, [378] = {.lex_state = 50, .external_lex_state = 2}, [379] = {.lex_state = 50, .external_lex_state = 2}, [380] = {.lex_state = 50, .external_lex_state = 2}, [381] = {.lex_state = 50, .external_lex_state = 2}, [382] = {.lex_state = 50, .external_lex_state = 2}, [383] = {.lex_state = 50, .external_lex_state = 2}, - [384] = {.lex_state = 50, .external_lex_state = 2}, + [384] = {.lex_state = 50, .external_lex_state = 3}, [385] = {.lex_state = 50, .external_lex_state = 2}, - [386] = {.lex_state = 50, .external_lex_state = 3}, + [386] = {.lex_state = 50, .external_lex_state = 2}, [387] = {.lex_state = 50, .external_lex_state = 2}, [388] = {.lex_state = 50, .external_lex_state = 2}, - [389] = {.lex_state = 50, .external_lex_state = 2}, - [390] = {.lex_state = 50, .external_lex_state = 3}, + [389] = {.lex_state = 50, .external_lex_state = 3}, + [390] = {.lex_state = 50, .external_lex_state = 2}, [391] = {.lex_state = 50, .external_lex_state = 3}, [392] = {.lex_state = 50, .external_lex_state = 3}, - [393] = {.lex_state = 50, .external_lex_state = 3}, + [393] = {.lex_state = 50, .external_lex_state = 2}, [394] = {.lex_state = 50, .external_lex_state = 2}, [395] = {.lex_state = 50, .external_lex_state = 3}, - [396] = {.lex_state = 50, .external_lex_state = 3}, - [397] = {.lex_state = 50, .external_lex_state = 3}, - [398] = {.lex_state = 50, .external_lex_state = 2}, + [396] = {.lex_state = 50, .external_lex_state = 2}, + [397] = {.lex_state = 50, .external_lex_state = 2}, + [398] = {.lex_state = 50, .external_lex_state = 3}, [399] = {.lex_state = 50, .external_lex_state = 2}, [400] = {.lex_state = 50, .external_lex_state = 3}, [401] = {.lex_state = 50, .external_lex_state = 3}, [402] = {.lex_state = 50, .external_lex_state = 2}, - [403] = {.lex_state = 16, .external_lex_state = 6}, + [403] = {.lex_state = 50, .external_lex_state = 2}, [404] = {.lex_state = 50, .external_lex_state = 3}, [405] = {.lex_state = 50, .external_lex_state = 2}, - [406] = {.lex_state = 50, .external_lex_state = 2}, - [407] = {.lex_state = 50, .external_lex_state = 2}, + [406] = {.lex_state = 50, .external_lex_state = 3}, + [407] = {.lex_state = 50, .external_lex_state = 3}, [408] = {.lex_state = 50, .external_lex_state = 2}, - [409] = {.lex_state = 50, .external_lex_state = 2}, + [409] = {.lex_state = 15, .external_lex_state = 6}, [410] = {.lex_state = 50, .external_lex_state = 2}, - [411] = {.lex_state = 50, .external_lex_state = 2}, + [411] = {.lex_state = 50, .external_lex_state = 3}, [412] = {.lex_state = 50, .external_lex_state = 2}, - [413] = {.lex_state = 50, .external_lex_state = 2}, - [414] = {.lex_state = 50, .external_lex_state = 2}, + [413] = {.lex_state = 50, .external_lex_state = 3}, + [414] = {.lex_state = 15, .external_lex_state = 6}, [415] = {.lex_state = 50, .external_lex_state = 2}, - [416] = {.lex_state = 50, .external_lex_state = 2}, - [417] = {.lex_state = 50, .external_lex_state = 2}, + [416] = {.lex_state = 16, .external_lex_state = 6}, + [417] = {.lex_state = 50, .external_lex_state = 3}, [418] = {.lex_state = 50, .external_lex_state = 2}, [419] = {.lex_state = 50, .external_lex_state = 2}, [420] = {.lex_state = 50, .external_lex_state = 2}, [421] = {.lex_state = 50, .external_lex_state = 2}, - [422] = {.lex_state = 50, .external_lex_state = 2}, + [422] = {.lex_state = 50, .external_lex_state = 3}, [423] = {.lex_state = 50, .external_lex_state = 2}, - [424] = {.lex_state = 50, .external_lex_state = 2}, - [425] = {.lex_state = 50, .external_lex_state = 2}, - [426] = {.lex_state = 50, .external_lex_state = 2}, + [424] = {.lex_state = 50, .external_lex_state = 3}, + [425] = {.lex_state = 50, .external_lex_state = 3}, + [426] = {.lex_state = 50, .external_lex_state = 3}, [427] = {.lex_state = 50, .external_lex_state = 2}, [428] = {.lex_state = 50, .external_lex_state = 2}, - [429] = {.lex_state = 50, .external_lex_state = 2}, - [430] = {.lex_state = 50, .external_lex_state = 2}, - [431] = {.lex_state = 16, .external_lex_state = 6}, - [432] = {.lex_state = 50, .external_lex_state = 2}, - [433] = {.lex_state = 50, .external_lex_state = 2}, - [434] = {.lex_state = 50, .external_lex_state = 2}, - [435] = {.lex_state = 50, .external_lex_state = 2}, + [429] = {.lex_state = 16, .external_lex_state = 6}, + [430] = {.lex_state = 50, .external_lex_state = 3}, + [431] = {.lex_state = 50, .external_lex_state = 2}, + [432] = {.lex_state = 50, .external_lex_state = 3}, + [433] = {.lex_state = 50, .external_lex_state = 3}, + [434] = {.lex_state = 50, .external_lex_state = 3}, + [435] = {.lex_state = 15, .external_lex_state = 6}, [436] = {.lex_state = 50, .external_lex_state = 2}, - [437] = {.lex_state = 50, .external_lex_state = 2}, - [438] = {.lex_state = 50, .external_lex_state = 2}, + [437] = {.lex_state = 15}, + [438] = {.lex_state = 15}, [439] = {.lex_state = 50, .external_lex_state = 2}, - [440] = {.lex_state = 50, .external_lex_state = 2}, + [440] = {.lex_state = 50, .external_lex_state = 3}, [441] = {.lex_state = 50, .external_lex_state = 2}, - [442] = {.lex_state = 50, .external_lex_state = 2}, + [442] = {.lex_state = 50, .external_lex_state = 3}, [443] = {.lex_state = 50, .external_lex_state = 2}, [444] = {.lex_state = 50, .external_lex_state = 2}, [445] = {.lex_state = 50, .external_lex_state = 2}, [446] = {.lex_state = 50, .external_lex_state = 2}, [447] = {.lex_state = 50, .external_lex_state = 2}, - [448] = {.lex_state = 50, .external_lex_state = 3}, - [449] = {.lex_state = 50, .external_lex_state = 2}, - [450] = {.lex_state = 50, .external_lex_state = 3}, + [448] = {.lex_state = 50, .external_lex_state = 2}, + [449] = {.lex_state = 50, .external_lex_state = 3}, + [450] = {.lex_state = 50, .external_lex_state = 2}, [451] = {.lex_state = 50, .external_lex_state = 3}, - [452] = {.lex_state = 50, .external_lex_state = 3}, - [453] = {.lex_state = 50, .external_lex_state = 3}, - [454] = {.lex_state = 50, .external_lex_state = 2}, - [455] = {.lex_state = 50, .external_lex_state = 3}, - [456] = {.lex_state = 50, .external_lex_state = 2}, - [457] = {.lex_state = 50, .external_lex_state = 2}, - [458] = {.lex_state = 50, .external_lex_state = 3}, - [459] = {.lex_state = 50, .external_lex_state = 2}, - [460] = {.lex_state = 50, .external_lex_state = 3}, - [461] = {.lex_state = 50, .external_lex_state = 3}, - [462] = {.lex_state = 50, .external_lex_state = 2}, - [463] = {.lex_state = 50, .external_lex_state = 3}, - [464] = {.lex_state = 50, .external_lex_state = 3}, - [465] = {.lex_state = 50, .external_lex_state = 2}, + [452] = {.lex_state = 50, .external_lex_state = 2}, + [453] = {.lex_state = 50, .external_lex_state = 2}, + [454] = {.lex_state = 16, .external_lex_state = 6}, + [455] = {.lex_state = 16}, + [456] = {.lex_state = 16, .external_lex_state = 6}, + [457] = {.lex_state = 50, .external_lex_state = 3}, + [458] = {.lex_state = 50, .external_lex_state = 2}, + [459] = {.lex_state = 50, .external_lex_state = 3}, + [460] = {.lex_state = 50, .external_lex_state = 2}, + [461] = {.lex_state = 50, .external_lex_state = 2}, + [462] = {.lex_state = 50, .external_lex_state = 3}, + [463] = {.lex_state = 16, .external_lex_state = 6}, + [464] = {.lex_state = 50, .external_lex_state = 2}, + [465] = {.lex_state = 50, .external_lex_state = 3}, [466] = {.lex_state = 50, .external_lex_state = 2}, - [467] = {.lex_state = 50, .external_lex_state = 2}, - [468] = {.lex_state = 50, .external_lex_state = 3}, - [469] = {.lex_state = 50, .external_lex_state = 2}, + [467] = {.lex_state = 50, .external_lex_state = 3}, + [468] = {.lex_state = 50, .external_lex_state = 2}, + [469] = {.lex_state = 50, .external_lex_state = 3}, [470] = {.lex_state = 50, .external_lex_state = 3}, - [471] = {.lex_state = 50, .external_lex_state = 3}, - [472] = {.lex_state = 50, .external_lex_state = 2}, - [473] = {.lex_state = 50, .external_lex_state = 2}, - [474] = {.lex_state = 50, .external_lex_state = 3}, + [471] = {.lex_state = 50, .external_lex_state = 2}, + [472] = {.lex_state = 50, .external_lex_state = 3}, + [473] = {.lex_state = 50, .external_lex_state = 3}, + [474] = {.lex_state = 50, .external_lex_state = 2}, [475] = {.lex_state = 50, .external_lex_state = 3}, [476] = {.lex_state = 50, .external_lex_state = 3}, - [477] = {.lex_state = 50, .external_lex_state = 3}, - [478] = {.lex_state = 50, .external_lex_state = 3}, - [479] = {.lex_state = 50, .external_lex_state = 3}, - [480] = {.lex_state = 50, .external_lex_state = 3}, - [481] = {.lex_state = 50, .external_lex_state = 3}, + [477] = {.lex_state = 50, .external_lex_state = 2}, + [478] = {.lex_state = 50, .external_lex_state = 2}, + [479] = {.lex_state = 50, .external_lex_state = 2}, + [480] = {.lex_state = 50, .external_lex_state = 2}, + [481] = {.lex_state = 50, .external_lex_state = 2}, [482] = {.lex_state = 50, .external_lex_state = 3}, [483] = {.lex_state = 50, .external_lex_state = 3}, [484] = {.lex_state = 50, .external_lex_state = 3}, - [485] = {.lex_state = 50, .external_lex_state = 2}, + [485] = {.lex_state = 50, .external_lex_state = 3}, [486] = {.lex_state = 50, .external_lex_state = 3}, [487] = {.lex_state = 50, .external_lex_state = 3}, [488] = {.lex_state = 50, .external_lex_state = 3}, - [489] = {.lex_state = 50, .external_lex_state = 2}, + [489] = {.lex_state = 50, .external_lex_state = 3}, [490] = {.lex_state = 50, .external_lex_state = 3}, [491] = {.lex_state = 50, .external_lex_state = 3}, [492] = {.lex_state = 50, .external_lex_state = 3}, @@ -8176,137 +6618,137 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [494] = {.lex_state = 50, .external_lex_state = 3}, [495] = {.lex_state = 50, .external_lex_state = 3}, [496] = {.lex_state = 50, .external_lex_state = 3}, - [497] = {.lex_state = 50, .external_lex_state = 2}, - [498] = {.lex_state = 50, .external_lex_state = 3}, - [499] = {.lex_state = 50, .external_lex_state = 3}, - [500] = {.lex_state = 50, .external_lex_state = 3}, + [497] = {.lex_state = 50, .external_lex_state = 3}, + [498] = {.lex_state = 50, .external_lex_state = 2}, + [499] = {.lex_state = 50, .external_lex_state = 2}, + [500] = {.lex_state = 50, .external_lex_state = 2}, [501] = {.lex_state = 50, .external_lex_state = 3}, [502] = {.lex_state = 50, .external_lex_state = 2}, [503] = {.lex_state = 50, .external_lex_state = 2}, - [504] = {.lex_state = 50, .external_lex_state = 3}, + [504] = {.lex_state = 50, .external_lex_state = 2}, [505] = {.lex_state = 50, .external_lex_state = 3}, - [506] = {.lex_state = 50, .external_lex_state = 3}, - [507] = {.lex_state = 50, .external_lex_state = 2}, - [508] = {.lex_state = 50, .external_lex_state = 3}, + [506] = {.lex_state = 50, .external_lex_state = 2}, + [507] = {.lex_state = 50, .external_lex_state = 3}, + [508] = {.lex_state = 50, .external_lex_state = 2}, [509] = {.lex_state = 50, .external_lex_state = 2}, [510] = {.lex_state = 50, .external_lex_state = 3}, - [511] = {.lex_state = 50, .external_lex_state = 2}, + [511] = {.lex_state = 50, .external_lex_state = 3}, [512] = {.lex_state = 50, .external_lex_state = 3}, [513] = {.lex_state = 50, .external_lex_state = 3}, - [514] = {.lex_state = 50, .external_lex_state = 3}, + [514] = {.lex_state = 50, .external_lex_state = 2}, [515] = {.lex_state = 50, .external_lex_state = 2}, [516] = {.lex_state = 50, .external_lex_state = 2}, - [517] = {.lex_state = 50, .external_lex_state = 3}, + [517] = {.lex_state = 50, .external_lex_state = 2}, [518] = {.lex_state = 50, .external_lex_state = 3}, [519] = {.lex_state = 50, .external_lex_state = 3}, [520] = {.lex_state = 50, .external_lex_state = 3}, - [521] = {.lex_state = 50, .external_lex_state = 3}, + [521] = {.lex_state = 50, .external_lex_state = 2}, [522] = {.lex_state = 50, .external_lex_state = 2}, - [523] = {.lex_state = 50, .external_lex_state = 2}, + [523] = {.lex_state = 50, .external_lex_state = 3}, [524] = {.lex_state = 50, .external_lex_state = 3}, - [525] = {.lex_state = 50, .external_lex_state = 3}, + [525] = {.lex_state = 50, .external_lex_state = 2}, [526] = {.lex_state = 50, .external_lex_state = 2}, [527] = {.lex_state = 50, .external_lex_state = 2}, [528] = {.lex_state = 50, .external_lex_state = 2}, - [529] = {.lex_state = 50, .external_lex_state = 2}, + [529] = {.lex_state = 50, .external_lex_state = 3}, [530] = {.lex_state = 50, .external_lex_state = 2}, [531] = {.lex_state = 50, .external_lex_state = 2}, [532] = {.lex_state = 50, .external_lex_state = 2}, [533] = {.lex_state = 50, .external_lex_state = 2}, [534] = {.lex_state = 50, .external_lex_state = 2}, [535] = {.lex_state = 50, .external_lex_state = 2}, - [536] = {.lex_state = 50, .external_lex_state = 2}, - [537] = {.lex_state = 50, .external_lex_state = 2}, - [538] = {.lex_state = 50, .external_lex_state = 2}, - [539] = {.lex_state = 50, .external_lex_state = 2}, + [536] = {.lex_state = 50, .external_lex_state = 3}, + [537] = {.lex_state = 50, .external_lex_state = 3}, + [538] = {.lex_state = 50, .external_lex_state = 3}, + [539] = {.lex_state = 50, .external_lex_state = 3}, [540] = {.lex_state = 50, .external_lex_state = 2}, [541] = {.lex_state = 50, .external_lex_state = 2}, [542] = {.lex_state = 50, .external_lex_state = 2}, - [543] = {.lex_state = 50, .external_lex_state = 2}, + [543] = {.lex_state = 50, .external_lex_state = 3}, [544] = {.lex_state = 50, .external_lex_state = 2}, [545] = {.lex_state = 50, .external_lex_state = 2}, [546] = {.lex_state = 50, .external_lex_state = 2}, - [547] = {.lex_state = 50, .external_lex_state = 2}, + [547] = {.lex_state = 50, .external_lex_state = 3}, [548] = {.lex_state = 50, .external_lex_state = 2}, - [549] = {.lex_state = 50, .external_lex_state = 2}, + [549] = {.lex_state = 50, .external_lex_state = 3}, [550] = {.lex_state = 50, .external_lex_state = 2}, [551] = {.lex_state = 50, .external_lex_state = 2}, [552] = {.lex_state = 50, .external_lex_state = 2}, - [553] = {.lex_state = 50, .external_lex_state = 2}, + [553] = {.lex_state = 50, .external_lex_state = 3}, [554] = {.lex_state = 50, .external_lex_state = 2}, - [555] = {.lex_state = 50, .external_lex_state = 2}, - [556] = {.lex_state = 50, .external_lex_state = 2}, + [555] = {.lex_state = 50, .external_lex_state = 3}, + [556] = {.lex_state = 50, .external_lex_state = 3}, [557] = {.lex_state = 50, .external_lex_state = 2}, - [558] = {.lex_state = 50, .external_lex_state = 3}, - [559] = {.lex_state = 50, .external_lex_state = 2}, + [558] = {.lex_state = 50, .external_lex_state = 2}, + [559] = {.lex_state = 50, .external_lex_state = 3}, [560] = {.lex_state = 50, .external_lex_state = 2}, [561] = {.lex_state = 50, .external_lex_state = 2}, [562] = {.lex_state = 50, .external_lex_state = 2}, - [563] = {.lex_state = 50, .external_lex_state = 2}, - [564] = {.lex_state = 50, .external_lex_state = 2}, - [565] = {.lex_state = 16, .external_lex_state = 2}, - [566] = {.lex_state = 16, .external_lex_state = 2}, - [567] = {.lex_state = 50, .external_lex_state = 2}, - [568] = {.lex_state = 50, .external_lex_state = 2}, - [569] = {.lex_state = 16, .external_lex_state = 2}, - [570] = {.lex_state = 16, .external_lex_state = 2}, - [571] = {.lex_state = 14, .external_lex_state = 2}, - [572] = {.lex_state = 16, .external_lex_state = 2}, - [573] = {.lex_state = 16}, - [574] = {.lex_state = 16}, - [575] = {.lex_state = 16}, - [576] = {.lex_state = 16}, - [577] = {.lex_state = 16}, - [578] = {.lex_state = 16}, - [579] = {.lex_state = 16}, - [580] = {.lex_state = 16}, - [581] = {.lex_state = 16}, - [582] = {.lex_state = 16}, - [583] = {.lex_state = 16}, - [584] = {.lex_state = 16}, - [585] = {.lex_state = 16}, - [586] = {.lex_state = 16}, - [587] = {.lex_state = 16}, - [588] = {.lex_state = 16}, - [589] = {.lex_state = 16}, - [590] = {.lex_state = 16}, - [591] = {.lex_state = 16}, - [592] = {.lex_state = 16}, - [593] = {.lex_state = 16}, - [594] = {.lex_state = 16}, - [595] = {.lex_state = 16}, - [596] = {.lex_state = 16}, - [597] = {.lex_state = 16}, - [598] = {.lex_state = 16}, - [599] = {.lex_state = 16}, - [600] = {.lex_state = 16}, - [601] = {.lex_state = 16}, - [602] = {.lex_state = 16}, - [603] = {.lex_state = 16}, - [604] = {.lex_state = 16}, - [605] = {.lex_state = 16}, - [606] = {.lex_state = 16}, + [563] = {.lex_state = 50, .external_lex_state = 3}, + [564] = {.lex_state = 50, .external_lex_state = 3}, + [565] = {.lex_state = 50, .external_lex_state = 2}, + [566] = {.lex_state = 50, .external_lex_state = 2}, + [567] = {.lex_state = 14, .external_lex_state = 2}, + [568] = {.lex_state = 16, .external_lex_state = 8}, + [569] = {.lex_state = 16, .external_lex_state = 9}, + [570] = {.lex_state = 16, .external_lex_state = 8}, + [571] = {.lex_state = 16, .external_lex_state = 9}, + [572] = {.lex_state = 16, .external_lex_state = 8}, + [573] = {.lex_state = 16, .external_lex_state = 9}, + [574] = {.lex_state = 50, .external_lex_state = 2}, + [575] = {.lex_state = 50, .external_lex_state = 2}, + [576] = {.lex_state = 50, .external_lex_state = 2}, + [577] = {.lex_state = 50, .external_lex_state = 2}, + [578] = {.lex_state = 50, .external_lex_state = 2}, + [579] = {.lex_state = 50, .external_lex_state = 2}, + [580] = {.lex_state = 50, .external_lex_state = 2}, + [581] = {.lex_state = 16, .external_lex_state = 8}, + [582] = {.lex_state = 16, .external_lex_state = 9}, + [583] = {.lex_state = 50, .external_lex_state = 2}, + [584] = {.lex_state = 50, .external_lex_state = 2}, + [585] = {.lex_state = 50, .external_lex_state = 2}, + [586] = {.lex_state = 50, .external_lex_state = 2}, + [587] = {.lex_state = 16, .external_lex_state = 9}, + [588] = {.lex_state = 50, .external_lex_state = 2}, + [589] = {.lex_state = 50, .external_lex_state = 2}, + [590] = {.lex_state = 50, .external_lex_state = 2}, + [591] = {.lex_state = 50, .external_lex_state = 2}, + [592] = {.lex_state = 50, .external_lex_state = 2}, + [593] = {.lex_state = 50, .external_lex_state = 2}, + [594] = {.lex_state = 50, .external_lex_state = 2}, + [595] = {.lex_state = 50, .external_lex_state = 2}, + [596] = {.lex_state = 50, .external_lex_state = 2}, + [597] = {.lex_state = 50, .external_lex_state = 2}, + [598] = {.lex_state = 50, .external_lex_state = 2}, + [599] = {.lex_state = 50, .external_lex_state = 2}, + [600] = {.lex_state = 50, .external_lex_state = 2}, + [601] = {.lex_state = 50, .external_lex_state = 2}, + [602] = {.lex_state = 16, .external_lex_state = 8}, + [603] = {.lex_state = 50, .external_lex_state = 2}, + [604] = {.lex_state = 50, .external_lex_state = 2}, + [605] = {.lex_state = 50, .external_lex_state = 2}, + [606] = {.lex_state = 50, .external_lex_state = 2}, [607] = {.lex_state = 50, .external_lex_state = 2}, - [608] = {.lex_state = 16}, - [609] = {.lex_state = 16}, + [608] = {.lex_state = 50, .external_lex_state = 2}, + [609] = {.lex_state = 50, .external_lex_state = 2}, [610] = {.lex_state = 50, .external_lex_state = 2}, - [611] = {.lex_state = 16}, - [612] = {.lex_state = 16}, - [613] = {.lex_state = 16}, - [614] = {.lex_state = 16}, - [615] = {.lex_state = 16}, - [616] = {.lex_state = 16}, + [611] = {.lex_state = 50, .external_lex_state = 2}, + [612] = {.lex_state = 50, .external_lex_state = 2}, + [613] = {.lex_state = 50, .external_lex_state = 2}, + [614] = {.lex_state = 50, .external_lex_state = 2}, + [615] = {.lex_state = 50, .external_lex_state = 2}, + [616] = {.lex_state = 50, .external_lex_state = 2}, [617] = {.lex_state = 50, .external_lex_state = 2}, - [618] = {.lex_state = 16}, + [618] = {.lex_state = 50, .external_lex_state = 2}, [619] = {.lex_state = 50, .external_lex_state = 2}, - [620] = {.lex_state = 16}, - [621] = {.lex_state = 16}, - [622] = {.lex_state = 16}, - [623] = {.lex_state = 16}, - [624] = {.lex_state = 16}, - [625] = {.lex_state = 16}, - [626] = {.lex_state = 16}, - [627] = {.lex_state = 16}, + [620] = {.lex_state = 50, .external_lex_state = 2}, + [621] = {.lex_state = 50, .external_lex_state = 2}, + [622] = {.lex_state = 50, .external_lex_state = 2}, + [623] = {.lex_state = 50, .external_lex_state = 2}, + [624] = {.lex_state = 50, .external_lex_state = 2}, + [625] = {.lex_state = 50, .external_lex_state = 2}, + [626] = {.lex_state = 50, .external_lex_state = 2}, + [627] = {.lex_state = 50, .external_lex_state = 2}, [628] = {.lex_state = 16}, [629] = {.lex_state = 16}, [630] = {.lex_state = 16}, @@ -8314,126 +6756,126 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [632] = {.lex_state = 16}, [633] = {.lex_state = 16}, [634] = {.lex_state = 16}, - [635] = {.lex_state = 50, .external_lex_state = 2}, - [636] = {.lex_state = 50, .external_lex_state = 2}, - [637] = {.lex_state = 50, .external_lex_state = 2}, - [638] = {.lex_state = 50, .external_lex_state = 2}, - [639] = {.lex_state = 50, .external_lex_state = 2}, - [640] = {.lex_state = 50, .external_lex_state = 2}, - [641] = {.lex_state = 50, .external_lex_state = 2}, - [642] = {.lex_state = 50, .external_lex_state = 2}, - [643] = {.lex_state = 16, .external_lex_state = 2}, - [644] = {.lex_state = 50, .external_lex_state = 2}, - [645] = {.lex_state = 50, .external_lex_state = 2}, - [646] = {.lex_state = 50, .external_lex_state = 2}, - [647] = {.lex_state = 16, .external_lex_state = 2}, - [648] = {.lex_state = 50, .external_lex_state = 2}, - [649] = {.lex_state = 50, .external_lex_state = 2}, - [650] = {.lex_state = 50, .external_lex_state = 2}, - [651] = {.lex_state = 50, .external_lex_state = 2}, - [652] = {.lex_state = 50, .external_lex_state = 2}, - [653] = {.lex_state = 50, .external_lex_state = 2}, - [654] = {.lex_state = 50, .external_lex_state = 2}, - [655] = {.lex_state = 50, .external_lex_state = 2}, + [635] = {.lex_state = 16}, + [636] = {.lex_state = 16}, + [637] = {.lex_state = 16}, + [638] = {.lex_state = 16}, + [639] = {.lex_state = 16}, + [640] = {.lex_state = 16}, + [641] = {.lex_state = 16}, + [642] = {.lex_state = 16}, + [643] = {.lex_state = 16}, + [644] = {.lex_state = 16}, + [645] = {.lex_state = 16}, + [646] = {.lex_state = 16}, + [647] = {.lex_state = 16}, + [648] = {.lex_state = 16}, + [649] = {.lex_state = 16}, + [650] = {.lex_state = 16}, + [651] = {.lex_state = 16}, + [652] = {.lex_state = 16}, + [653] = {.lex_state = 16}, + [654] = {.lex_state = 16}, + [655] = {.lex_state = 16}, [656] = {.lex_state = 16}, - [657] = {.lex_state = 15}, - [658] = {.lex_state = 15}, - [659] = {.lex_state = 50, .external_lex_state = 2}, - [660] = {.lex_state = 50, .external_lex_state = 2}, - [661] = {.lex_state = 50, .external_lex_state = 2}, - [662] = {.lex_state = 50, .external_lex_state = 2}, - [663] = {.lex_state = 50, .external_lex_state = 2}, - [664] = {.lex_state = 50, .external_lex_state = 2}, - [665] = {.lex_state = 50, .external_lex_state = 2}, - [666] = {.lex_state = 50, .external_lex_state = 2}, - [667] = {.lex_state = 50, .external_lex_state = 2}, - [668] = {.lex_state = 50, .external_lex_state = 2}, - [669] = {.lex_state = 50, .external_lex_state = 2}, - [670] = {.lex_state = 50, .external_lex_state = 2}, - [671] = {.lex_state = 15}, - [672] = {.lex_state = 50, .external_lex_state = 2}, - [673] = {.lex_state = 50, .external_lex_state = 2}, - [674] = {.lex_state = 15}, - [675] = {.lex_state = 50, .external_lex_state = 2}, - [676] = {.lex_state = 50, .external_lex_state = 2}, - [677] = {.lex_state = 50, .external_lex_state = 2}, - [678] = {.lex_state = 50, .external_lex_state = 2}, - [679] = {.lex_state = 50, .external_lex_state = 2}, - [680] = {.lex_state = 50, .external_lex_state = 2}, - [681] = {.lex_state = 50, .external_lex_state = 2}, - [682] = {.lex_state = 50, .external_lex_state = 2}, - [683] = {.lex_state = 50, .external_lex_state = 2}, - [684] = {.lex_state = 50, .external_lex_state = 2}, - [685] = {.lex_state = 50, .external_lex_state = 2}, - [686] = {.lex_state = 50, .external_lex_state = 2}, - [687] = {.lex_state = 50, .external_lex_state = 2}, - [688] = {.lex_state = 16, .external_lex_state = 4}, - [689] = {.lex_state = 16, .external_lex_state = 6}, - [690] = {.lex_state = 16}, - [691] = {.lex_state = 16}, - [692] = {.lex_state = 16, .external_lex_state = 4}, - [693] = {.lex_state = 16, .external_lex_state = 4}, - [694] = {.lex_state = 16, .external_lex_state = 6}, - [695] = {.lex_state = 16, .external_lex_state = 2}, - [696] = {.lex_state = 16, .external_lex_state = 6}, + [657] = {.lex_state = 16}, + [658] = {.lex_state = 16}, + [659] = {.lex_state = 16}, + [660] = {.lex_state = 16}, + [661] = {.lex_state = 16}, + [662] = {.lex_state = 16}, + [663] = {.lex_state = 16}, + [664] = {.lex_state = 16}, + [665] = {.lex_state = 16}, + [666] = {.lex_state = 16}, + [667] = {.lex_state = 16}, + [668] = {.lex_state = 16}, + [669] = {.lex_state = 16}, + [670] = {.lex_state = 16}, + [671] = {.lex_state = 16}, + [672] = {.lex_state = 16}, + [673] = {.lex_state = 16}, + [674] = {.lex_state = 16}, + [675] = {.lex_state = 16}, + [676] = {.lex_state = 16}, + [677] = {.lex_state = 16}, + [678] = {.lex_state = 16}, + [679] = {.lex_state = 16}, + [680] = {.lex_state = 16}, + [681] = {.lex_state = 16}, + [682] = {.lex_state = 16}, + [683] = {.lex_state = 16}, + [684] = {.lex_state = 16}, + [685] = {.lex_state = 15}, + [686] = {.lex_state = 16, .external_lex_state = 9}, + [687] = {.lex_state = 16}, + [688] = {.lex_state = 15}, + [689] = {.lex_state = 16, .external_lex_state = 8}, + [690] = {.lex_state = 15}, + [691] = {.lex_state = 16, .external_lex_state = 9}, + [692] = {.lex_state = 16}, + [693] = {.lex_state = 16, .external_lex_state = 8}, + [694] = {.lex_state = 15}, + [695] = {.lex_state = 16, .external_lex_state = 10}, + [696] = {.lex_state = 16, .external_lex_state = 7}, [697] = {.lex_state = 16, .external_lex_state = 6}, - [698] = {.lex_state = 16}, - [699] = {.lex_state = 16, .external_lex_state = 2}, - [700] = {.lex_state = 16, .external_lex_state = 2}, - [701] = {.lex_state = 16, .external_lex_state = 6}, - [702] = {.lex_state = 16, .external_lex_state = 6}, - [703] = {.lex_state = 16, .external_lex_state = 6}, - [704] = {.lex_state = 16, .external_lex_state = 6}, + [698] = {.lex_state = 16, .external_lex_state = 7}, + [699] = {.lex_state = 16, .external_lex_state = 10}, + [700] = {.lex_state = 16}, + [701] = {.lex_state = 16, .external_lex_state = 10}, + [702] = {.lex_state = 16, .external_lex_state = 7}, + [703] = {.lex_state = 16}, + [704] = {.lex_state = 16, .external_lex_state = 8}, [705] = {.lex_state = 16, .external_lex_state = 6}, - [706] = {.lex_state = 16, .external_lex_state = 6}, - [707] = {.lex_state = 16, .external_lex_state = 6}, + [706] = {.lex_state = 16, .external_lex_state = 9}, + [707] = {.lex_state = 16, .external_lex_state = 8}, [708] = {.lex_state = 16, .external_lex_state = 6}, [709] = {.lex_state = 16, .external_lex_state = 6}, - [710] = {.lex_state = 15}, - [711] = {.lex_state = 16}, - [712] = {.lex_state = 15}, - [713] = {.lex_state = 16}, - [714] = {.lex_state = 15}, - [715] = {.lex_state = 15, .external_lex_state = 6}, - [716] = {.lex_state = 16}, - [717] = {.lex_state = 16, .external_lex_state = 4}, - [718] = {.lex_state = 16}, - [719] = {.lex_state = 16}, - [720] = {.lex_state = 16}, - [721] = {.lex_state = 16}, + [710] = {.lex_state = 16, .external_lex_state = 6}, + [711] = {.lex_state = 16, .external_lex_state = 6}, + [712] = {.lex_state = 16, .external_lex_state = 6}, + [713] = {.lex_state = 16, .external_lex_state = 6}, + [714] = {.lex_state = 16, .external_lex_state = 6}, + [715] = {.lex_state = 16, .external_lex_state = 6}, + [716] = {.lex_state = 16, .external_lex_state = 8}, + [717] = {.lex_state = 16, .external_lex_state = 6}, + [718] = {.lex_state = 16, .external_lex_state = 9}, + [719] = {.lex_state = 16, .external_lex_state = 9}, + [720] = {.lex_state = 16, .external_lex_state = 6}, + [721] = {.lex_state = 16, .external_lex_state = 6}, [722] = {.lex_state = 16}, [723] = {.lex_state = 16}, - [724] = {.lex_state = 16, .external_lex_state = 4}, - [725] = {.lex_state = 15}, - [726] = {.lex_state = 16}, - [727] = {.lex_state = 16}, + [724] = {.lex_state = 16}, + [725] = {.lex_state = 50, .external_lex_state = 2}, + [726] = {.lex_state = 16, .external_lex_state = 7}, + [727] = {.lex_state = 15}, [728] = {.lex_state = 16}, [729] = {.lex_state = 16}, - [730] = {.lex_state = 16}, - [731] = {.lex_state = 16}, + [730] = {.lex_state = 16, .external_lex_state = 7}, + [731] = {.lex_state = 14, .external_lex_state = 2}, [732] = {.lex_state = 16}, - [733] = {.lex_state = 16}, - [734] = {.lex_state = 16}, - [735] = {.lex_state = 15, .external_lex_state = 6}, - [736] = {.lex_state = 16, .external_lex_state = 6}, - [737] = {.lex_state = 16, .external_lex_state = 6}, - [738] = {.lex_state = 16, .external_lex_state = 6}, - [739] = {.lex_state = 16, .external_lex_state = 6}, - [740] = {.lex_state = 16, .external_lex_state = 6}, - [741] = {.lex_state = 16}, + [733] = {.lex_state = 15}, + [734] = {.lex_state = 16, .external_lex_state = 10}, + [735] = {.lex_state = 16, .external_lex_state = 10}, + [736] = {.lex_state = 15}, + [737] = {.lex_state = 15}, + [738] = {.lex_state = 16}, + [739] = {.lex_state = 16}, + [740] = {.lex_state = 16}, + [741] = {.lex_state = 15, .external_lex_state = 6}, [742] = {.lex_state = 16}, - [743] = {.lex_state = 16}, - [744] = {.lex_state = 16, .external_lex_state = 6}, - [745] = {.lex_state = 16, .external_lex_state = 6}, - [746] = {.lex_state = 16, .external_lex_state = 6}, - [747] = {.lex_state = 16, .external_lex_state = 6}, - [748] = {.lex_state = 16, .external_lex_state = 6}, - [749] = {.lex_state = 16, .external_lex_state = 6}, - [750] = {.lex_state = 16, .external_lex_state = 6}, - [751] = {.lex_state = 16, .external_lex_state = 6}, - [752] = {.lex_state = 16, .external_lex_state = 6}, - [753] = {.lex_state = 16, .external_lex_state = 6}, - [754] = {.lex_state = 16, .external_lex_state = 6}, + [743] = {.lex_state = 15, .external_lex_state = 6}, + [744] = {.lex_state = 16}, + [745] = {.lex_state = 16}, + [746] = {.lex_state = 50, .external_lex_state = 2}, + [747] = {.lex_state = 16}, + [748] = {.lex_state = 16}, + [749] = {.lex_state = 16}, + [750] = {.lex_state = 16}, + [751] = {.lex_state = 16}, + [752] = {.lex_state = 16}, + [753] = {.lex_state = 14, .external_lex_state = 2}, + [754] = {.lex_state = 16}, [755] = {.lex_state = 16, .external_lex_state = 6}, [756] = {.lex_state = 16, .external_lex_state = 6}, [757] = {.lex_state = 16, .external_lex_state = 6}, @@ -8443,636 +6885,636 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [761] = {.lex_state = 16, .external_lex_state = 6}, [762] = {.lex_state = 16, .external_lex_state = 6}, [763] = {.lex_state = 16, .external_lex_state = 6}, - [764] = {.lex_state = 16, .external_lex_state = 6}, + [764] = {.lex_state = 15}, [765] = {.lex_state = 16, .external_lex_state = 6}, [766] = {.lex_state = 16, .external_lex_state = 6}, [767] = {.lex_state = 16, .external_lex_state = 6}, - [768] = {.lex_state = 16, .external_lex_state = 6}, - [769] = {.lex_state = 15}, - [770] = {.lex_state = 15}, + [768] = {.lex_state = 50, .external_lex_state = 2}, + [769] = {.lex_state = 16}, + [770] = {.lex_state = 50, .external_lex_state = 2}, [771] = {.lex_state = 16, .external_lex_state = 6}, [772] = {.lex_state = 16, .external_lex_state = 6}, [773] = {.lex_state = 16, .external_lex_state = 6}, - [774] = {.lex_state = 16}, - [775] = {.lex_state = 16}, - [776] = {.lex_state = 16}, + [774] = {.lex_state = 16, .external_lex_state = 6}, + [775] = {.lex_state = 16, .external_lex_state = 6}, + [776] = {.lex_state = 16, .external_lex_state = 6}, [777] = {.lex_state = 16}, - [778] = {.lex_state = 16}, - [779] = {.lex_state = 16}, - [780] = {.lex_state = 16}, - [781] = {.lex_state = 16}, - [782] = {.lex_state = 16}, - [783] = {.lex_state = 16}, - [784] = {.lex_state = 16}, - [785] = {.lex_state = 16}, - [786] = {.lex_state = 16}, - [787] = {.lex_state = 16}, - [788] = {.lex_state = 16}, - [789] = {.lex_state = 16}, - [790] = {.lex_state = 16}, + [778] = {.lex_state = 16, .external_lex_state = 6}, + [779] = {.lex_state = 16, .external_lex_state = 6}, + [780] = {.lex_state = 15}, + [781] = {.lex_state = 16, .external_lex_state = 6}, + [782] = {.lex_state = 16, .external_lex_state = 6}, + [783] = {.lex_state = 50, .external_lex_state = 2}, + [784] = {.lex_state = 16, .external_lex_state = 6}, + [785] = {.lex_state = 16, .external_lex_state = 6}, + [786] = {.lex_state = 16, .external_lex_state = 6}, + [787] = {.lex_state = 16, .external_lex_state = 6}, + [788] = {.lex_state = 50, .external_lex_state = 2}, + [789] = {.lex_state = 50, .external_lex_state = 2}, + [790] = {.lex_state = 16, .external_lex_state = 6}, [791] = {.lex_state = 16}, - [792] = {.lex_state = 16}, - [793] = {.lex_state = 16}, - [794] = {.lex_state = 15}, - [795] = {.lex_state = 15}, - [796] = {.lex_state = 16}, - [797] = {.lex_state = 16}, - [798] = {.lex_state = 16}, + [792] = {.lex_state = 16, .external_lex_state = 6}, + [793] = {.lex_state = 16, .external_lex_state = 6}, + [794] = {.lex_state = 16, .external_lex_state = 6}, + [795] = {.lex_state = 16, .external_lex_state = 6}, + [796] = {.lex_state = 16, .external_lex_state = 6}, + [797] = {.lex_state = 16, .external_lex_state = 6}, + [798] = {.lex_state = 50, .external_lex_state = 2}, [799] = {.lex_state = 16}, - [800] = {.lex_state = 16}, - [801] = {.lex_state = 16}, - [802] = {.lex_state = 16}, - [803] = {.lex_state = 16}, + [800] = {.lex_state = 50, .external_lex_state = 2}, + [801] = {.lex_state = 15}, + [802] = {.lex_state = 50, .external_lex_state = 2}, + [803] = {.lex_state = 15}, [804] = {.lex_state = 16}, [805] = {.lex_state = 16}, [806] = {.lex_state = 16}, [807] = {.lex_state = 16}, [808] = {.lex_state = 16}, - [809] = {.lex_state = 50, .external_lex_state = 2}, - [810] = {.lex_state = 50, .external_lex_state = 2}, - [811] = {.lex_state = 14, .external_lex_state = 2}, - [812] = {.lex_state = 14, .external_lex_state = 2}, - [813] = {.lex_state = 50, .external_lex_state = 2}, - [814] = {.lex_state = 50, .external_lex_state = 2}, - [815] = {.lex_state = 50, .external_lex_state = 2}, - [816] = {.lex_state = 50, .external_lex_state = 2}, + [809] = {.lex_state = 16}, + [810] = {.lex_state = 16}, + [811] = {.lex_state = 16}, + [812] = {.lex_state = 16}, + [813] = {.lex_state = 16}, + [814] = {.lex_state = 16}, + [815] = {.lex_state = 16}, + [816] = {.lex_state = 16}, [817] = {.lex_state = 50, .external_lex_state = 2}, - [818] = {.lex_state = 50, .external_lex_state = 2}, - [819] = {.lex_state = 50, .external_lex_state = 2}, - [820] = {.lex_state = 50, .external_lex_state = 2}, - [821] = {.lex_state = 50, .external_lex_state = 2}, - [822] = {.lex_state = 50, .external_lex_state = 2}, - [823] = {.lex_state = 50, .external_lex_state = 2}, - [824] = {.lex_state = 50, .external_lex_state = 2}, + [818] = {.lex_state = 16}, + [819] = {.lex_state = 16}, + [820] = {.lex_state = 16}, + [821] = {.lex_state = 16}, + [822] = {.lex_state = 16}, + [823] = {.lex_state = 16}, + [824] = {.lex_state = 16}, [825] = {.lex_state = 50, .external_lex_state = 2}, - [826] = {.lex_state = 50, .external_lex_state = 2}, - [827] = {.lex_state = 50, .external_lex_state = 2}, - [828] = {.lex_state = 14}, - [829] = {.lex_state = 14}, - [830] = {.lex_state = 14}, - [831] = {.lex_state = 14}, - [832] = {.lex_state = 14}, - [833] = {.lex_state = 14}, - [834] = {.lex_state = 14}, - [835] = {.lex_state = 0, .external_lex_state = 6}, - [836] = {.lex_state = 14}, - [837] = {.lex_state = 0, .external_lex_state = 6}, - [838] = {.lex_state = 16}, - [839] = {.lex_state = 16}, - [840] = {.lex_state = 14}, - [841] = {.lex_state = 14}, - [842] = {.lex_state = 14}, + [826] = {.lex_state = 16}, + [827] = {.lex_state = 16}, + [828] = {.lex_state = 16}, + [829] = {.lex_state = 16}, + [830] = {.lex_state = 16}, + [831] = {.lex_state = 16}, + [832] = {.lex_state = 16}, + [833] = {.lex_state = 16}, + [834] = {.lex_state = 16}, + [835] = {.lex_state = 16}, + [836] = {.lex_state = 16}, + [837] = {.lex_state = 16}, + [838] = {.lex_state = 50, .external_lex_state = 2}, + [839] = {.lex_state = 50, .external_lex_state = 2}, + [840] = {.lex_state = 50, .external_lex_state = 2}, + [841] = {.lex_state = 50, .external_lex_state = 2}, + [842] = {.lex_state = 50, .external_lex_state = 2}, [843] = {.lex_state = 14}, - [844] = {.lex_state = 16}, + [844] = {.lex_state = 14}, [845] = {.lex_state = 14}, [846] = {.lex_state = 14}, [847] = {.lex_state = 14}, - [848] = {.lex_state = 14}, + [848] = {.lex_state = 50, .external_lex_state = 2}, [849] = {.lex_state = 14}, - [850] = {.lex_state = 14}, - [851] = {.lex_state = 0}, - [852] = {.lex_state = 50, .external_lex_state = 2}, - [853] = {.lex_state = 50, .external_lex_state = 2}, - [854] = {.lex_state = 50, .external_lex_state = 2}, + [850] = {.lex_state = 50, .external_lex_state = 2}, + [851] = {.lex_state = 50, .external_lex_state = 2}, + [852] = {.lex_state = 0, .external_lex_state = 6}, + [853] = {.lex_state = 14}, + [854] = {.lex_state = 14}, [855] = {.lex_state = 14}, - [856] = {.lex_state = 14}, - [857] = {.lex_state = 0}, - [858] = {.lex_state = 14}, - [859] = {.lex_state = 0}, + [856] = {.lex_state = 16}, + [857] = {.lex_state = 0, .external_lex_state = 6}, + [858] = {.lex_state = 16}, + [859] = {.lex_state = 14}, [860] = {.lex_state = 14}, - [861] = {.lex_state = 0}, - [862] = {.lex_state = 0}, + [861] = {.lex_state = 16}, + [862] = {.lex_state = 14}, [863] = {.lex_state = 14}, - [864] = {.lex_state = 50, .external_lex_state = 2}, - [865] = {.lex_state = 16}, + [864] = {.lex_state = 14}, + [865] = {.lex_state = 14}, [866] = {.lex_state = 14}, [867] = {.lex_state = 14}, [868] = {.lex_state = 14}, - [869] = {.lex_state = 16}, - [870] = {.lex_state = 14}, - [871] = {.lex_state = 14}, + [869] = {.lex_state = 50, .external_lex_state = 2}, + [870] = {.lex_state = 0}, + [871] = {.lex_state = 0}, [872] = {.lex_state = 14}, - [873] = {.lex_state = 14}, + [873] = {.lex_state = 0}, [874] = {.lex_state = 14}, [875] = {.lex_state = 14}, [876] = {.lex_state = 14}, - [877] = {.lex_state = 14}, + [877] = {.lex_state = 0}, [878] = {.lex_state = 14}, - [879] = {.lex_state = 14}, - [880] = {.lex_state = 14}, + [879] = {.lex_state = 0}, + [880] = {.lex_state = 16}, [881] = {.lex_state = 14}, - [882] = {.lex_state = 16}, - [883] = {.lex_state = 16}, - [884] = {.lex_state = 0}, + [882] = {.lex_state = 14}, + [883] = {.lex_state = 0}, + [884] = {.lex_state = 16}, [885] = {.lex_state = 14}, - [886] = {.lex_state = 14, .external_lex_state = 2}, + [886] = {.lex_state = 16}, [887] = {.lex_state = 14}, [888] = {.lex_state = 14}, - [889] = {.lex_state = 18, .external_lex_state = 7}, - [890] = {.lex_state = 18, .external_lex_state = 7}, - [891] = {.lex_state = 18, .external_lex_state = 7}, - [892] = {.lex_state = 18, .external_lex_state = 7}, - [893] = {.lex_state = 0}, - [894] = {.lex_state = 0}, - [895] = {.lex_state = 0}, + [889] = {.lex_state = 14}, + [890] = {.lex_state = 14}, + [891] = {.lex_state = 14}, + [892] = {.lex_state = 14}, + [893] = {.lex_state = 14}, + [894] = {.lex_state = 14}, + [895] = {.lex_state = 14}, [896] = {.lex_state = 14}, - [897] = {.lex_state = 14}, - [898] = {.lex_state = 14}, + [897] = {.lex_state = 14, .external_lex_state = 8}, + [898] = {.lex_state = 14, .external_lex_state = 9}, [899] = {.lex_state = 14}, - [900] = {.lex_state = 0}, - [901] = {.lex_state = 0}, + [900] = {.lex_state = 14}, + [901] = {.lex_state = 14}, [902] = {.lex_state = 14}, - [903] = {.lex_state = 18, .external_lex_state = 7}, - [904] = {.lex_state = 18, .external_lex_state = 7}, - [905] = {.lex_state = 0}, - [906] = {.lex_state = 0}, - [907] = {.lex_state = 18, .external_lex_state = 7}, + [903] = {.lex_state = 16}, + [904] = {.lex_state = 14}, + [905] = {.lex_state = 18, .external_lex_state = 11}, + [906] = {.lex_state = 18, .external_lex_state = 11}, + [907] = {.lex_state = 18, .external_lex_state = 11}, [908] = {.lex_state = 14}, - [909] = {.lex_state = 18, .external_lex_state = 7}, + [909] = {.lex_state = 18, .external_lex_state = 11}, [910] = {.lex_state = 0}, [911] = {.lex_state = 0}, - [912] = {.lex_state = 18, .external_lex_state = 7}, + [912] = {.lex_state = 0}, [913] = {.lex_state = 0}, [914] = {.lex_state = 14}, - [915] = {.lex_state = 14}, + [915] = {.lex_state = 0}, [916] = {.lex_state = 0}, - [917] = {.lex_state = 14}, + [917] = {.lex_state = 18, .external_lex_state = 11}, [918] = {.lex_state = 14}, - [919] = {.lex_state = 0}, - [920] = {.lex_state = 0}, - [921] = {.lex_state = 0}, - [922] = {.lex_state = 0}, - [923] = {.lex_state = 14}, - [924] = {.lex_state = 14}, + [919] = {.lex_state = 18, .external_lex_state = 11}, + [920] = {.lex_state = 18, .external_lex_state = 11}, + [921] = {.lex_state = 14}, + [922] = {.lex_state = 18, .external_lex_state = 11}, + [923] = {.lex_state = 18, .external_lex_state = 11}, + [924] = {.lex_state = 0}, [925] = {.lex_state = 14}, [926] = {.lex_state = 14}, - [927] = {.lex_state = 0, .external_lex_state = 6}, + [927] = {.lex_state = 18, .external_lex_state = 11}, [928] = {.lex_state = 0}, - [929] = {.lex_state = 14}, - [930] = {.lex_state = 14}, - [931] = {.lex_state = 0}, + [929] = {.lex_state = 18, .external_lex_state = 11}, + [930] = {.lex_state = 18, .external_lex_state = 11}, + [931] = {.lex_state = 18, .external_lex_state = 11}, [932] = {.lex_state = 0}, - [933] = {.lex_state = 14}, - [934] = {.lex_state = 14}, - [935] = {.lex_state = 14}, - [936] = {.lex_state = 14}, - [937] = {.lex_state = 14}, - [938] = {.lex_state = 0}, - [939] = {.lex_state = 0, .external_lex_state = 6}, - [940] = {.lex_state = 0, .external_lex_state = 6}, + [933] = {.lex_state = 18, .external_lex_state = 11}, + [934] = {.lex_state = 18, .external_lex_state = 11}, + [935] = {.lex_state = 0}, + [936] = {.lex_state = 0}, + [937] = {.lex_state = 0}, + [938] = {.lex_state = 14}, + [939] = {.lex_state = 14}, + [940] = {.lex_state = 14}, [941] = {.lex_state = 0}, [942] = {.lex_state = 14}, - [943] = {.lex_state = 14}, - [944] = {.lex_state = 14}, - [945] = {.lex_state = 0}, - [946] = {.lex_state = 0, .external_lex_state = 6}, - [947] = {.lex_state = 14}, - [948] = {.lex_state = 14}, - [949] = {.lex_state = 14}, + [943] = {.lex_state = 0}, + [944] = {.lex_state = 0}, + [945] = {.lex_state = 0, .external_lex_state = 6}, + [946] = {.lex_state = 14}, + [947] = {.lex_state = 0, .external_lex_state = 6}, + [948] = {.lex_state = 0, .external_lex_state = 6}, + [949] = {.lex_state = 0, .external_lex_state = 6}, [950] = {.lex_state = 14}, [951] = {.lex_state = 14}, - [952] = {.lex_state = 0, .external_lex_state = 6}, - [953] = {.lex_state = 14}, + [952] = {.lex_state = 14}, + [953] = {.lex_state = 0, .external_lex_state = 6}, [954] = {.lex_state = 14}, [955] = {.lex_state = 14}, [956] = {.lex_state = 0, .external_lex_state = 6}, - [957] = {.lex_state = 0}, - [958] = {.lex_state = 0, .external_lex_state = 6}, - [959] = {.lex_state = 0, .external_lex_state = 6}, - [960] = {.lex_state = 0, .external_lex_state = 6}, + [957] = {.lex_state = 14}, + [958] = {.lex_state = 14}, + [959] = {.lex_state = 14}, + [960] = {.lex_state = 0}, [961] = {.lex_state = 14}, [962] = {.lex_state = 14}, - [963] = {.lex_state = 0}, - [964] = {.lex_state = 14}, - [965] = {.lex_state = 16}, + [963] = {.lex_state = 14}, + [964] = {.lex_state = 0}, + [965] = {.lex_state = 0, .external_lex_state = 6}, [966] = {.lex_state = 0, .external_lex_state = 6}, - [967] = {.lex_state = 0, .external_lex_state = 6}, - [968] = {.lex_state = 14}, + [967] = {.lex_state = 16}, + [968] = {.lex_state = 0}, [969] = {.lex_state = 0}, - [970] = {.lex_state = 14}, + [970] = {.lex_state = 0}, [971] = {.lex_state = 14}, - [972] = {.lex_state = 14}, - [973] = {.lex_state = 0}, - [974] = {.lex_state = 0, .external_lex_state = 6}, - [975] = {.lex_state = 0}, + [972] = {.lex_state = 0}, + [973] = {.lex_state = 14}, + [974] = {.lex_state = 14}, + [975] = {.lex_state = 14}, [976] = {.lex_state = 14}, [977] = {.lex_state = 0, .external_lex_state = 6}, [978] = {.lex_state = 0, .external_lex_state = 6}, - [979] = {.lex_state = 0}, - [980] = {.lex_state = 0, .external_lex_state = 6}, - [981] = {.lex_state = 0}, + [979] = {.lex_state = 14}, + [980] = {.lex_state = 0}, + [981] = {.lex_state = 14}, [982] = {.lex_state = 14}, - [983] = {.lex_state = 14}, - [984] = {.lex_state = 0}, + [983] = {.lex_state = 0, .external_lex_state = 6}, + [984] = {.lex_state = 14}, [985] = {.lex_state = 0}, - [986] = {.lex_state = 0}, + [986] = {.lex_state = 14}, [987] = {.lex_state = 14}, - [988] = {.lex_state = 18, .external_lex_state = 7}, - [989] = {.lex_state = 0}, - [990] = {.lex_state = 0}, - [991] = {.lex_state = 0}, + [988] = {.lex_state = 14}, + [989] = {.lex_state = 14}, + [990] = {.lex_state = 14}, + [991] = {.lex_state = 0, .external_lex_state = 6}, [992] = {.lex_state = 0}, - [993] = {.lex_state = 0, .external_lex_state = 6}, - [994] = {.lex_state = 0, .external_lex_state = 6}, + [993] = {.lex_state = 0}, + [994] = {.lex_state = 18, .external_lex_state = 11}, [995] = {.lex_state = 14}, - [996] = {.lex_state = 0}, - [997] = {.lex_state = 16}, - [998] = {.lex_state = 0, .external_lex_state = 6}, - [999] = {.lex_state = 0, .external_lex_state = 6}, - [1000] = {.lex_state = 14}, - [1001] = {.lex_state = 14}, - [1002] = {.lex_state = 0}, + [996] = {.lex_state = 16}, + [997] = {.lex_state = 0, .external_lex_state = 6}, + [998] = {.lex_state = 14}, + [999] = {.lex_state = 14}, + [1000] = {.lex_state = 0, .external_lex_state = 6}, + [1001] = {.lex_state = 0}, + [1002] = {.lex_state = 14}, [1003] = {.lex_state = 14}, - [1004] = {.lex_state = 0, .external_lex_state = 6}, + [1004] = {.lex_state = 0}, [1005] = {.lex_state = 14}, - [1006] = {.lex_state = 14}, + [1006] = {.lex_state = 0, .external_lex_state = 6}, [1007] = {.lex_state = 14}, - [1008] = {.lex_state = 0, .external_lex_state = 6}, - [1009] = {.lex_state = 18, .external_lex_state = 7}, - [1010] = {.lex_state = 0}, - [1011] = {.lex_state = 14}, - [1012] = {.lex_state = 14}, - [1013] = {.lex_state = 18, .external_lex_state = 7}, - [1014] = {.lex_state = 14}, - [1015] = {.lex_state = 14}, - [1016] = {.lex_state = 0, .external_lex_state = 6}, - [1017] = {.lex_state = 16, .external_lex_state = 6}, - [1018] = {.lex_state = 0, .external_lex_state = 6}, - [1019] = {.lex_state = 0}, - [1020] = {.lex_state = 18, .external_lex_state = 7}, - [1021] = {.lex_state = 14}, + [1008] = {.lex_state = 14}, + [1009] = {.lex_state = 14}, + [1010] = {.lex_state = 14}, + [1011] = {.lex_state = 0}, + [1012] = {.lex_state = 0}, + [1013] = {.lex_state = 0}, + [1014] = {.lex_state = 0}, + [1015] = {.lex_state = 0}, + [1016] = {.lex_state = 14}, + [1017] = {.lex_state = 18, .external_lex_state = 11}, + [1018] = {.lex_state = 0}, + [1019] = {.lex_state = 14}, + [1020] = {.lex_state = 0}, + [1021] = {.lex_state = 0}, [1022] = {.lex_state = 14}, - [1023] = {.lex_state = 18, .external_lex_state = 7}, - [1024] = {.lex_state = 0}, + [1023] = {.lex_state = 14}, + [1024] = {.lex_state = 0, .external_lex_state = 6}, [1025] = {.lex_state = 0, .external_lex_state = 6}, [1026] = {.lex_state = 0}, - [1027] = {.lex_state = 14}, - [1028] = {.lex_state = 14}, - [1029] = {.lex_state = 16, .external_lex_state = 6}, - [1030] = {.lex_state = 14}, - [1031] = {.lex_state = 14}, - [1032] = {.lex_state = 16}, - [1033] = {.lex_state = 14}, + [1027] = {.lex_state = 0}, + [1028] = {.lex_state = 0, .external_lex_state = 6}, + [1029] = {.lex_state = 0}, + [1030] = {.lex_state = 0, .external_lex_state = 6}, + [1031] = {.lex_state = 0, .external_lex_state = 6}, + [1032] = {.lex_state = 0, .external_lex_state = 6}, + [1033] = {.lex_state = 0, .external_lex_state = 6}, [1034] = {.lex_state = 16, .external_lex_state = 6}, - [1035] = {.lex_state = 0, .external_lex_state = 6}, - [1036] = {.lex_state = 18, .external_lex_state = 7}, + [1035] = {.lex_state = 14}, + [1036] = {.lex_state = 18, .external_lex_state = 11}, [1037] = {.lex_state = 14}, [1038] = {.lex_state = 14}, [1039] = {.lex_state = 14}, - [1040] = {.lex_state = 16}, - [1041] = {.lex_state = 18, .external_lex_state = 7}, - [1042] = {.lex_state = 18, .external_lex_state = 7}, + [1040] = {.lex_state = 18, .external_lex_state = 11}, + [1041] = {.lex_state = 14}, + [1042] = {.lex_state = 14}, [1043] = {.lex_state = 14}, - [1044] = {.lex_state = 14}, + [1044] = {.lex_state = 18, .external_lex_state = 11}, [1045] = {.lex_state = 14}, - [1046] = {.lex_state = 14}, - [1047] = {.lex_state = 14}, + [1046] = {.lex_state = 16}, + [1047] = {.lex_state = 16, .external_lex_state = 6}, [1048] = {.lex_state = 14}, - [1049] = {.lex_state = 0, .external_lex_state = 6}, - [1050] = {.lex_state = 0, .external_lex_state = 6}, - [1051] = {.lex_state = 0}, - [1052] = {.lex_state = 0}, - [1053] = {.lex_state = 14}, - [1054] = {.lex_state = 0}, - [1055] = {.lex_state = 0, .external_lex_state = 6}, - [1056] = {.lex_state = 0}, - [1057] = {.lex_state = 0}, - [1058] = {.lex_state = 8}, - [1059] = {.lex_state = 0}, - [1060] = {.lex_state = 14}, - [1061] = {.lex_state = 0}, - [1062] = {.lex_state = 16, .external_lex_state = 6}, - [1063] = {.lex_state = 0}, - [1064] = {.lex_state = 0, .external_lex_state = 6}, - [1065] = {.lex_state = 0, .external_lex_state = 6}, - [1066] = {.lex_state = 0, .external_lex_state = 6}, - [1067] = {.lex_state = 14}, - [1068] = {.lex_state = 0, .external_lex_state = 6}, - [1069] = {.lex_state = 8}, + [1049] = {.lex_state = 14}, + [1050] = {.lex_state = 14}, + [1051] = {.lex_state = 16}, + [1052] = {.lex_state = 14}, + [1053] = {.lex_state = 0, .external_lex_state = 6}, + [1054] = {.lex_state = 14}, + [1055] = {.lex_state = 0}, + [1056] = {.lex_state = 0, .external_lex_state = 6}, + [1057] = {.lex_state = 0, .external_lex_state = 6}, + [1058] = {.lex_state = 18, .external_lex_state = 11}, + [1059] = {.lex_state = 18, .external_lex_state = 11}, + [1060] = {.lex_state = 0}, + [1061] = {.lex_state = 14}, + [1062] = {.lex_state = 14}, + [1063] = {.lex_state = 14}, + [1064] = {.lex_state = 0}, + [1065] = {.lex_state = 14}, + [1066] = {.lex_state = 16, .external_lex_state = 6}, + [1067] = {.lex_state = 18, .external_lex_state = 11}, + [1068] = {.lex_state = 0}, + [1069] = {.lex_state = 0}, [1070] = {.lex_state = 0}, [1071] = {.lex_state = 0}, - [1072] = {.lex_state = 0, .external_lex_state = 6}, + [1072] = {.lex_state = 0}, [1073] = {.lex_state = 0}, - [1074] = {.lex_state = 0, .external_lex_state = 6}, - [1075] = {.lex_state = 0, .external_lex_state = 6}, - [1076] = {.lex_state = 0}, - [1077] = {.lex_state = 14}, - [1078] = {.lex_state = 14}, - [1079] = {.lex_state = 0, .external_lex_state = 6}, - [1080] = {.lex_state = 8}, - [1081] = {.lex_state = 0}, - [1082] = {.lex_state = 0}, - [1083] = {.lex_state = 0, .external_lex_state = 6}, - [1084] = {.lex_state = 0}, - [1085] = {.lex_state = 14}, - [1086] = {.lex_state = 0}, + [1074] = {.lex_state = 14}, + [1075] = {.lex_state = 0}, + [1076] = {.lex_state = 0, .external_lex_state = 6}, + [1077] = {.lex_state = 0, .external_lex_state = 6}, + [1078] = {.lex_state = 0, .external_lex_state = 6}, + [1079] = {.lex_state = 0}, + [1080] = {.lex_state = 14}, + [1081] = {.lex_state = 14}, + [1082] = {.lex_state = 0, .external_lex_state = 6}, + [1083] = {.lex_state = 0}, + [1084] = {.lex_state = 0, .external_lex_state = 6}, + [1085] = {.lex_state = 0, .external_lex_state = 6}, + [1086] = {.lex_state = 14}, [1087] = {.lex_state = 0}, - [1088] = {.lex_state = 14}, - [1089] = {.lex_state = 14}, + [1088] = {.lex_state = 0, .external_lex_state = 6}, + [1089] = {.lex_state = 0, .external_lex_state = 6}, [1090] = {.lex_state = 0}, [1091] = {.lex_state = 14}, - [1092] = {.lex_state = 0, .external_lex_state = 6}, + [1092] = {.lex_state = 14}, [1093] = {.lex_state = 0}, - [1094] = {.lex_state = 0}, + [1094] = {.lex_state = 8}, [1095] = {.lex_state = 0, .external_lex_state = 6}, [1096] = {.lex_state = 14}, - [1097] = {.lex_state = 0, .external_lex_state = 6}, - [1098] = {.lex_state = 0, .external_lex_state = 6}, - [1099] = {.lex_state = 0, .external_lex_state = 6}, - [1100] = {.lex_state = 0}, - [1101] = {.lex_state = 14, .external_lex_state = 2}, - [1102] = {.lex_state = 14}, - [1103] = {.lex_state = 0}, - [1104] = {.lex_state = 14}, - [1105] = {.lex_state = 0}, - [1106] = {.lex_state = 0}, - [1107] = {.lex_state = 0, .external_lex_state = 6}, - [1108] = {.lex_state = 16}, + [1097] = {.lex_state = 0}, + [1098] = {.lex_state = 0}, + [1099] = {.lex_state = 14}, + [1100] = {.lex_state = 0, .external_lex_state = 6}, + [1101] = {.lex_state = 8}, + [1102] = {.lex_state = 0, .external_lex_state = 6}, + [1103] = {.lex_state = 0, .external_lex_state = 6}, + [1104] = {.lex_state = 8}, + [1105] = {.lex_state = 16, .external_lex_state = 6}, + [1106] = {.lex_state = 0, .external_lex_state = 6}, + [1107] = {.lex_state = 0}, + [1108] = {.lex_state = 0}, [1109] = {.lex_state = 0}, - [1110] = {.lex_state = 0}, - [1111] = {.lex_state = 0, .external_lex_state = 6}, - [1112] = {.lex_state = 0, .external_lex_state = 6}, - [1113] = {.lex_state = 0}, - [1114] = {.lex_state = 14}, - [1115] = {.lex_state = 14}, + [1110] = {.lex_state = 14, .external_lex_state = 8}, + [1111] = {.lex_state = 0}, + [1112] = {.lex_state = 14, .external_lex_state = 9}, + [1113] = {.lex_state = 0, .external_lex_state = 6}, + [1114] = {.lex_state = 0, .external_lex_state = 6}, + [1115] = {.lex_state = 0}, [1116] = {.lex_state = 0, .external_lex_state = 6}, - [1117] = {.lex_state = 0, .external_lex_state = 6}, - [1118] = {.lex_state = 0}, - [1119] = {.lex_state = 0}, - [1120] = {.lex_state = 0}, + [1117] = {.lex_state = 14}, + [1118] = {.lex_state = 0, .external_lex_state = 6}, + [1119] = {.lex_state = 0, .external_lex_state = 6}, + [1120] = {.lex_state = 14}, [1121] = {.lex_state = 0, .external_lex_state = 6}, - [1122] = {.lex_state = 0, .external_lex_state = 6}, - [1123] = {.lex_state = 14}, - [1124] = {.lex_state = 0, .external_lex_state = 6}, + [1122] = {.lex_state = 14}, + [1123] = {.lex_state = 0}, + [1124] = {.lex_state = 0}, [1125] = {.lex_state = 0}, - [1126] = {.lex_state = 0, .external_lex_state = 6}, - [1127] = {.lex_state = 0, .external_lex_state = 6}, - [1128] = {.lex_state = 0, .external_lex_state = 6}, - [1129] = {.lex_state = 0}, + [1126] = {.lex_state = 0}, + [1127] = {.lex_state = 0}, + [1128] = {.lex_state = 14}, + [1129] = {.lex_state = 16}, [1130] = {.lex_state = 0}, [1131] = {.lex_state = 0}, [1132] = {.lex_state = 0}, - [1133] = {.lex_state = 0, .external_lex_state = 6}, - [1134] = {.lex_state = 14}, - [1135] = {.lex_state = 14}, + [1133] = {.lex_state = 0}, + [1134] = {.lex_state = 0}, + [1135] = {.lex_state = 0}, [1136] = {.lex_state = 14}, [1137] = {.lex_state = 0}, - [1138] = {.lex_state = 16}, + [1138] = {.lex_state = 14}, [1139] = {.lex_state = 14}, [1140] = {.lex_state = 14}, [1141] = {.lex_state = 14}, [1142] = {.lex_state = 14}, - [1143] = {.lex_state = 14}, - [1144] = {.lex_state = 0, .external_lex_state = 6}, + [1143] = {.lex_state = 0}, + [1144] = {.lex_state = 0}, [1145] = {.lex_state = 0}, - [1146] = {.lex_state = 0}, - [1147] = {.lex_state = 0}, - [1148] = {.lex_state = 14}, - [1149] = {.lex_state = 0, .external_lex_state = 6}, + [1146] = {.lex_state = 0, .external_lex_state = 6}, + [1147] = {.lex_state = 0, .external_lex_state = 6}, + [1148] = {.lex_state = 16}, + [1149] = {.lex_state = 0}, [1150] = {.lex_state = 0}, - [1151] = {.lex_state = 0}, + [1151] = {.lex_state = 14}, [1152] = {.lex_state = 0}, [1153] = {.lex_state = 0, .external_lex_state = 6}, - [1154] = {.lex_state = 14}, - [1155] = {.lex_state = 0}, - [1156] = {.lex_state = 0}, - [1157] = {.lex_state = 0}, - [1158] = {.lex_state = 0, .external_lex_state = 6}, - [1159] = {.lex_state = 0}, - [1160] = {.lex_state = 0}, - [1161] = {.lex_state = 14}, - [1162] = {.lex_state = 0}, - [1163] = {.lex_state = 0}, - [1164] = {.lex_state = 0}, - [1165] = {.lex_state = 0}, + [1154] = {.lex_state = 0}, + [1155] = {.lex_state = 14}, + [1156] = {.lex_state = 0, .external_lex_state = 6}, + [1157] = {.lex_state = 14}, + [1158] = {.lex_state = 0}, + [1159] = {.lex_state = 14}, + [1160] = {.lex_state = 0, .external_lex_state = 6}, + [1161] = {.lex_state = 0, .external_lex_state = 6}, + [1162] = {.lex_state = 14}, + [1163] = {.lex_state = 14}, + [1164] = {.lex_state = 0, .external_lex_state = 6}, + [1165] = {.lex_state = 0, .external_lex_state = 6}, [1166] = {.lex_state = 0}, - [1167] = {.lex_state = 0}, - [1168] = {.lex_state = 14}, - [1169] = {.lex_state = 0}, - [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 14}, - [1172] = {.lex_state = 0}, + [1167] = {.lex_state = 14}, + [1168] = {.lex_state = 0}, + [1169] = {.lex_state = 14}, + [1170] = {.lex_state = 0, .external_lex_state = 6}, + [1171] = {.lex_state = 0, .external_lex_state = 6}, + [1172] = {.lex_state = 0, .external_lex_state = 6}, [1173] = {.lex_state = 0}, - [1174] = {.lex_state = 0}, - [1175] = {.lex_state = 8}, + [1174] = {.lex_state = 0, .external_lex_state = 6}, + [1175] = {.lex_state = 14}, [1176] = {.lex_state = 0}, [1177] = {.lex_state = 0}, - [1178] = {.lex_state = 0, .external_lex_state = 6}, - [1179] = {.lex_state = 0}, - [1180] = {.lex_state = 8}, - [1181] = {.lex_state = 14}, - [1182] = {.lex_state = 0, .external_lex_state = 6}, + [1178] = {.lex_state = 0}, + [1179] = {.lex_state = 8}, + [1180] = {.lex_state = 0}, + [1181] = {.lex_state = 0}, + [1182] = {.lex_state = 0}, [1183] = {.lex_state = 0}, - [1184] = {.lex_state = 0}, - [1185] = {.lex_state = 0}, - [1186] = {.lex_state = 0}, + [1184] = {.lex_state = 0, .external_lex_state = 6}, + [1185] = {.lex_state = 8}, + [1186] = {.lex_state = 0, .external_lex_state = 6}, [1187] = {.lex_state = 0}, [1188] = {.lex_state = 0}, - [1189] = {.lex_state = 14}, + [1189] = {.lex_state = 0}, [1190] = {.lex_state = 0}, - [1191] = {.lex_state = 14}, - [1192] = {.lex_state = 14}, - [1193] = {.lex_state = 0, .external_lex_state = 6}, - [1194] = {.lex_state = 0}, + [1191] = {.lex_state = 0}, + [1192] = {.lex_state = 0, .external_lex_state = 6}, + [1193] = {.lex_state = 0}, + [1194] = {.lex_state = 14}, [1195] = {.lex_state = 14}, - [1196] = {.lex_state = 0}, - [1197] = {.lex_state = 0}, + [1196] = {.lex_state = 14}, + [1197] = {.lex_state = 14}, [1198] = {.lex_state = 14}, [1199] = {.lex_state = 0}, - [1200] = {.lex_state = 14}, + [1200] = {.lex_state = 0}, [1201] = {.lex_state = 0}, [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 14}, - [1204] = {.lex_state = 14}, - [1205] = {.lex_state = 0}, + [1203] = {.lex_state = 0, .external_lex_state = 6}, + [1204] = {.lex_state = 0, .external_lex_state = 6}, + [1205] = {.lex_state = 14}, [1206] = {.lex_state = 14}, - [1207] = {.lex_state = 0}, - [1208] = {.lex_state = 0}, - [1209] = {.lex_state = 14}, - [1210] = {.lex_state = 0}, + [1207] = {.lex_state = 0, .external_lex_state = 6}, + [1208] = {.lex_state = 8}, + [1209] = {.lex_state = 0}, + [1210] = {.lex_state = 14}, [1211] = {.lex_state = 0}, - [1212] = {.lex_state = 16}, + [1212] = {.lex_state = 14}, [1213] = {.lex_state = 0}, - [1214] = {.lex_state = 0}, + [1214] = {.lex_state = 0, .external_lex_state = 6}, [1215] = {.lex_state = 0}, [1216] = {.lex_state = 0}, - [1217] = {.lex_state = 8}, + [1217] = {.lex_state = 0}, [1218] = {.lex_state = 0}, - [1219] = {.lex_state = 8}, - [1220] = {.lex_state = 0, .external_lex_state = 6}, + [1219] = {.lex_state = 16}, + [1220] = {.lex_state = 0}, [1221] = {.lex_state = 0}, [1222] = {.lex_state = 0}, [1223] = {.lex_state = 0}, [1224] = {.lex_state = 0}, - [1225] = {.lex_state = 14}, + [1225] = {.lex_state = 0}, [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 0, .external_lex_state = 6}, - [1228] = {.lex_state = 0, .external_lex_state = 6}, + [1227] = {.lex_state = 0}, + [1228] = {.lex_state = 0}, [1229] = {.lex_state = 0}, - [1230] = {.lex_state = 0}, - [1231] = {.lex_state = 14}, + [1230] = {.lex_state = 0, .external_lex_state = 6}, + [1231] = {.lex_state = 0}, [1232] = {.lex_state = 0}, [1233] = {.lex_state = 0}, [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 14}, - [1236] = {.lex_state = 0}, - [1237] = {.lex_state = 0}, - [1238] = {.lex_state = 0}, + [1235] = {.lex_state = 0}, + [1236] = {.lex_state = 0, .external_lex_state = 6}, + [1237] = {.lex_state = 14}, + [1238] = {.lex_state = 8}, [1239] = {.lex_state = 0}, [1240] = {.lex_state = 0}, - [1241] = {.lex_state = 0, .external_lex_state = 6}, + [1241] = {.lex_state = 0}, [1242] = {.lex_state = 0}, - [1243] = {.lex_state = 0, .external_lex_state = 6}, - [1244] = {.lex_state = 0, .external_lex_state = 6}, + [1243] = {.lex_state = 0}, + [1244] = {.lex_state = 0}, [1245] = {.lex_state = 0}, [1246] = {.lex_state = 0}, [1247] = {.lex_state = 0}, [1248] = {.lex_state = 0}, - [1249] = {.lex_state = 14}, - [1250] = {.lex_state = 14}, - [1251] = {.lex_state = 0, .external_lex_state = 6}, + [1249] = {.lex_state = 0, .external_lex_state = 6}, + [1250] = {.lex_state = 0}, + [1251] = {.lex_state = 0}, [1252] = {.lex_state = 0}, - [1253] = {.lex_state = 0, .external_lex_state = 6}, - [1254] = {.lex_state = 14}, - [1255] = {.lex_state = 14}, - [1256] = {.lex_state = 14}, + [1253] = {.lex_state = 0}, + [1254] = {.lex_state = 0}, + [1255] = {.lex_state = 0}, + [1256] = {.lex_state = 0}, [1257] = {.lex_state = 0}, [1258] = {.lex_state = 0, .external_lex_state = 6}, - [1259] = {.lex_state = 8}, + [1259] = {.lex_state = 0}, [1260] = {.lex_state = 14}, [1261] = {.lex_state = 0}, - [1262] = {.lex_state = 14}, + [1262] = {.lex_state = 0}, [1263] = {.lex_state = 0}, - [1264] = {.lex_state = 0, .external_lex_state = 6}, + [1264] = {.lex_state = 0}, [1265] = {.lex_state = 0}, - [1266] = {.lex_state = 0}, - [1267] = {.lex_state = 0}, - [1268] = {.lex_state = 0, .external_lex_state = 6}, + [1266] = {.lex_state = 14}, + [1267] = {.lex_state = 14}, + [1268] = {.lex_state = 0}, [1269] = {.lex_state = 0}, [1270] = {.lex_state = 0}, [1271] = {.lex_state = 0}, [1272] = {.lex_state = 0}, - [1273] = {.lex_state = 0}, + [1273] = {.lex_state = 14}, [1274] = {.lex_state = 0}, [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 0}, + [1276] = {.lex_state = 14}, [1277] = {.lex_state = 0}, - [1278] = {.lex_state = 0}, + [1278] = {.lex_state = 14}, [1279] = {.lex_state = 0}, [1280] = {.lex_state = 0}, - [1281] = {.lex_state = 0}, - [1282] = {.lex_state = 0}, - [1283] = {.lex_state = 0}, - [1284] = {.lex_state = 0}, - [1285] = {.lex_state = 0}, + [1281] = {.lex_state = 14}, + [1282] = {.lex_state = 14}, + [1283] = {.lex_state = 8}, + [1284] = {.lex_state = 14}, + [1285] = {.lex_state = 0, .external_lex_state = 6}, [1286] = {.lex_state = 0}, [1287] = {.lex_state = 0}, - [1288] = {.lex_state = 17}, - [1289] = {.lex_state = 0}, - [1290] = {.lex_state = 0}, - [1291] = {.lex_state = 0, .external_lex_state = 6}, - [1292] = {.lex_state = 0, .external_lex_state = 6}, - [1293] = {.lex_state = 0, .external_lex_state = 6}, - [1294] = {.lex_state = 0, .external_lex_state = 6}, + [1288] = {.lex_state = 0, .external_lex_state = 6}, + [1289] = {.lex_state = 0, .external_lex_state = 6}, + [1290] = {.lex_state = 0, .external_lex_state = 6}, + [1291] = {.lex_state = 0}, + [1292] = {.lex_state = 0}, + [1293] = {.lex_state = 0}, + [1294] = {.lex_state = 14}, [1295] = {.lex_state = 14}, - [1296] = {.lex_state = 0}, - [1297] = {.lex_state = 0, .external_lex_state = 6}, - [1298] = {.lex_state = 0, .external_lex_state = 6}, - [1299] = {.lex_state = 17}, + [1296] = {.lex_state = 14}, + [1297] = {.lex_state = 0}, + [1298] = {.lex_state = 0}, + [1299] = {.lex_state = 14}, [1300] = {.lex_state = 0}, - [1301] = {.lex_state = 0, .external_lex_state = 6}, - [1302] = {.lex_state = 17}, - [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 0, .external_lex_state = 6}, - [1305] = {.lex_state = 0, .external_lex_state = 6}, - [1306] = {.lex_state = 0}, - [1307] = {.lex_state = 17}, - [1308] = {.lex_state = 0}, - [1309] = {.lex_state = 0}, + [1301] = {.lex_state = 0}, + [1302] = {.lex_state = 0, .external_lex_state = 6}, + [1303] = {.lex_state = 14}, + [1304] = {.lex_state = 0}, + [1305] = {.lex_state = 14}, + [1306] = {.lex_state = 17}, + [1307] = {.lex_state = 0}, + [1308] = {.lex_state = 0, .external_lex_state = 6}, + [1309] = {.lex_state = 0, .external_lex_state = 6}, [1310] = {.lex_state = 0}, - [1311] = {.lex_state = 0}, + [1311] = {.lex_state = 0, .external_lex_state = 6}, [1312] = {.lex_state = 0}, - [1313] = {.lex_state = 0}, + [1313] = {.lex_state = 16}, [1314] = {.lex_state = 0}, [1315] = {.lex_state = 0, .external_lex_state = 6}, - [1316] = {.lex_state = 0, .external_lex_state = 6}, - [1317] = {.lex_state = 0}, - [1318] = {.lex_state = 0}, + [1316] = {.lex_state = 0}, + [1317] = {.lex_state = 0, .external_lex_state = 6}, + [1318] = {.lex_state = 0, .external_lex_state = 6}, [1319] = {.lex_state = 0}, [1320] = {.lex_state = 0}, [1321] = {.lex_state = 0}, [1322] = {.lex_state = 0}, [1323] = {.lex_state = 0}, - [1324] = {.lex_state = 17}, - [1325] = {.lex_state = 0}, + [1324] = {.lex_state = 0, .external_lex_state = 6}, + [1325] = {.lex_state = 14}, [1326] = {.lex_state = 0}, - [1327] = {.lex_state = 0, .external_lex_state = 6}, - [1328] = {.lex_state = 17}, - [1329] = {.lex_state = 17}, - [1330] = {.lex_state = 17}, - [1331] = {.lex_state = 17}, - [1332] = {.lex_state = 0}, - [1333] = {.lex_state = 0}, + [1327] = {.lex_state = 0}, + [1328] = {.lex_state = 0}, + [1329] = {.lex_state = 0}, + [1330] = {.lex_state = 0, .external_lex_state = 6}, + [1331] = {.lex_state = 0, .external_lex_state = 6}, + [1332] = {.lex_state = 0, .external_lex_state = 6}, + [1333] = {.lex_state = 0, .external_lex_state = 6}, [1334] = {.lex_state = 17}, [1335] = {.lex_state = 0}, - [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 0, .external_lex_state = 6}, - [1338] = {.lex_state = 0, .external_lex_state = 6}, + [1336] = {.lex_state = 0, .external_lex_state = 6}, + [1337] = {.lex_state = 0}, + [1338] = {.lex_state = 0}, [1339] = {.lex_state = 0}, [1340] = {.lex_state = 0, .external_lex_state = 6}, - [1341] = {.lex_state = 0, .external_lex_state = 6}, - [1342] = {.lex_state = 0, .external_lex_state = 6}, + [1341] = {.lex_state = 0}, + [1342] = {.lex_state = 17}, [1343] = {.lex_state = 0}, - [1344] = {.lex_state = 0}, + [1344] = {.lex_state = 0, .external_lex_state = 6}, [1345] = {.lex_state = 0}, - [1346] = {.lex_state = 0}, + [1346] = {.lex_state = 0, .external_lex_state = 6}, [1347] = {.lex_state = 0}, [1348] = {.lex_state = 0}, - [1349] = {.lex_state = 0}, - [1350] = {.lex_state = 0, .external_lex_state = 6}, - [1351] = {.lex_state = 0}, - [1352] = {.lex_state = 16}, + [1349] = {.lex_state = 17}, + [1350] = {.lex_state = 17}, + [1351] = {.lex_state = 17}, + [1352] = {.lex_state = 0}, [1353] = {.lex_state = 0}, - [1354] = {.lex_state = 14}, + [1354] = {.lex_state = 17}, [1355] = {.lex_state = 0}, - [1356] = {.lex_state = 14}, - [1357] = {.lex_state = 14}, - [1358] = {.lex_state = 14}, + [1356] = {.lex_state = 17}, + [1357] = {.lex_state = 0, .external_lex_state = 6}, + [1358] = {.lex_state = 0, .external_lex_state = 6}, [1359] = {.lex_state = 0}, [1360] = {.lex_state = 0}, [1361] = {.lex_state = 0}, [1362] = {.lex_state = 0}, [1363] = {.lex_state = 0}, [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 14}, + [1365] = {.lex_state = 0}, [1366] = {.lex_state = 0}, - [1367] = {.lex_state = 0}, + [1367] = {.lex_state = 17}, [1368] = {.lex_state = 0}, [1369] = {.lex_state = 0}, - [1370] = {.lex_state = 14}, + [1370] = {.lex_state = 0}, [1371] = {.lex_state = 0}, [1372] = {.lex_state = 0}, [1373] = {.lex_state = 0}, [1374] = {.lex_state = 0}, - [1375] = {.lex_state = 0}, - [1376] = {.lex_state = 0}, - [1377] = {.lex_state = 0}, - [1378] = {.lex_state = 0}, + [1375] = {.lex_state = 0, .external_lex_state = 6}, + [1376] = {.lex_state = 17}, + [1377] = {.lex_state = 14}, + [1378] = {.lex_state = 14}, [1379] = {.lex_state = 0}, [1380] = {.lex_state = 0}, [1381] = {.lex_state = 0}, - [1382] = {.lex_state = 14}, - [1383] = {.lex_state = 0}, - [1384] = {.lex_state = 14}, - [1385] = {.lex_state = 14}, + [1382] = {.lex_state = 0}, + [1383] = {.lex_state = 14}, + [1384] = {.lex_state = 0}, + [1385] = {.lex_state = 0}, [1386] = {.lex_state = 0}, [1387] = {.lex_state = 0}, [1388] = {.lex_state = 0}, [1389] = {.lex_state = 0}, [1390] = {.lex_state = 0}, - [1391] = {.lex_state = 14}, + [1391] = {.lex_state = 0}, [1392] = {.lex_state = 0}, - [1393] = {.lex_state = 14}, + [1393] = {.lex_state = 0}, [1394] = {.lex_state = 0}, [1395] = {.lex_state = 0}, [1396] = {.lex_state = 0}, @@ -9082,82 +7524,105 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1400] = {.lex_state = 0}, [1401] = {.lex_state = 0}, [1402] = {.lex_state = 14}, - [1403] = {.lex_state = 14}, - [1404] = {.lex_state = 14}, + [1403] = {.lex_state = 0}, + [1404] = {.lex_state = 0}, [1405] = {.lex_state = 0}, [1406] = {.lex_state = 0}, [1407] = {.lex_state = 0}, - [1408] = {.lex_state = 14}, + [1408] = {.lex_state = 0}, [1409] = {.lex_state = 0}, - [1410] = {.lex_state = 14}, - [1411] = {.lex_state = 14}, + [1410] = {.lex_state = 0}, + [1411] = {.lex_state = 0}, [1412] = {.lex_state = 14}, - [1413] = {.lex_state = 0}, - [1414] = {.lex_state = 14}, + [1413] = {.lex_state = 14}, + [1414] = {.lex_state = 0}, [1415] = {.lex_state = 0}, - [1416] = {.lex_state = 14}, - [1417] = {.lex_state = 0}, + [1416] = {.lex_state = 0}, + [1417] = {.lex_state = 14}, [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 14}, + [1419] = {.lex_state = 0}, [1420] = {.lex_state = 0}, - [1421] = {.lex_state = 14}, - [1422] = {.lex_state = 14}, - [1423] = {.lex_state = 14}, - [1424] = {.lex_state = 0}, + [1421] = {.lex_state = 0}, + [1422] = {.lex_state = 0}, + [1423] = {.lex_state = 0}, + [1424] = {.lex_state = 14}, [1425] = {.lex_state = 0}, - [1426] = {.lex_state = 0}, - [1427] = {.lex_state = 0}, - [1428] = {.lex_state = 14}, + [1426] = {.lex_state = 14}, + [1427] = {.lex_state = 14}, + [1428] = {.lex_state = 0}, [1429] = {.lex_state = 0}, [1430] = {.lex_state = 14}, [1431] = {.lex_state = 14}, - [1432] = {.lex_state = 14}, + [1432] = {.lex_state = 0}, [1433] = {.lex_state = 14}, [1434] = {.lex_state = 14}, [1435] = {.lex_state = 14}, - [1436] = {.lex_state = 14}, - [1437] = {.lex_state = 0}, + [1436] = {.lex_state = 0}, + [1437] = {.lex_state = 14}, [1438] = {.lex_state = 14}, [1439] = {.lex_state = 0}, [1440] = {.lex_state = 0}, [1441] = {.lex_state = 14}, - [1442] = {.lex_state = 0}, - [1443] = {.lex_state = 0}, - [1444] = {.lex_state = 14}, - [1445] = {.lex_state = 0}, - [1446] = {.lex_state = 0}, + [1442] = {.lex_state = 14}, + [1443] = {.lex_state = 14}, + [1444] = {.lex_state = 0}, + [1445] = {.lex_state = 14}, + [1446] = {.lex_state = 14}, [1447] = {.lex_state = 14}, [1448] = {.lex_state = 0}, [1449] = {.lex_state = 14}, [1450] = {.lex_state = 0}, [1451] = {.lex_state = 0}, - [1452] = {.lex_state = 0}, - [1453] = {.lex_state = 0}, - [1454] = {.lex_state = 0}, + [1452] = {.lex_state = 14}, + [1453] = {.lex_state = 14}, + [1454] = {.lex_state = 14}, [1455] = {.lex_state = 0}, - [1456] = {.lex_state = 0}, - [1457] = {.lex_state = 0}, - [1458] = {.lex_state = 0}, + [1456] = {.lex_state = 14}, + [1457] = {.lex_state = 14}, + [1458] = {.lex_state = 14}, [1459] = {.lex_state = 0}, - [1460] = {.lex_state = 0}, - [1461] = {.lex_state = 0}, + [1460] = {.lex_state = 14}, + [1461] = {.lex_state = 14}, [1462] = {.lex_state = 0}, [1463] = {.lex_state = 0}, [1464] = {.lex_state = 0}, [1465] = {.lex_state = 0}, [1466] = {.lex_state = 0}, - [1467] = {.lex_state = 14}, + [1467] = {.lex_state = 0}, [1468] = {.lex_state = 0}, [1469] = {.lex_state = 0}, - [1470] = {.lex_state = 0}, - [1471] = {.lex_state = 0}, + [1470] = {.lex_state = 14}, + [1471] = {.lex_state = 14}, [1472] = {.lex_state = 0}, [1473] = {.lex_state = 0}, [1474] = {.lex_state = 0}, - [1475] = {.lex_state = 0}, + [1475] = {.lex_state = 14}, [1476] = {.lex_state = 14}, - [1477] = {.lex_state = 14}, + [1477] = {.lex_state = 0}, [1478] = {.lex_state = 0}, + [1479] = {.lex_state = 0}, + [1480] = {.lex_state = 0}, + [1481] = {.lex_state = 0}, + [1482] = {.lex_state = 0}, + [1483] = {.lex_state = 0}, + [1484] = {.lex_state = 0}, + [1485] = {.lex_state = 0}, + [1486] = {.lex_state = 0}, + [1487] = {.lex_state = 0}, + [1488] = {.lex_state = 14}, + [1489] = {.lex_state = 0}, + [1490] = {.lex_state = 0}, + [1491] = {.lex_state = 0}, + [1492] = {.lex_state = 0}, + [1493] = {.lex_state = 0}, + [1494] = {.lex_state = 0}, + [1495] = {.lex_state = 0}, + [1496] = {.lex_state = 0}, + [1497] = {.lex_state = 0}, + [1498] = {.lex_state = 14}, + [1499] = {.lex_state = 0}, + [1500] = {.lex_state = 14}, + [1501] = {.lex_state = 14}, }; enum { @@ -9167,6 +7632,7 @@ enum { ts_external_token__string_start = 3, ts_external_token__string_content = 4, ts_external_token__string_end = 5, + ts_external_token__template_string_start = 6, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -9176,9 +7642,10 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__string_start] = sym__string_start, [ts_external_token__string_content] = sym__string_content, [ts_external_token__string_end] = sym__string_end, + [ts_external_token__template_string_start] = sym__template_string_start, }; -static const bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[12][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__newline] = true, [ts_external_token__indent] = true, @@ -9186,27 +7653,46 @@ static const bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__string_start] = true, [ts_external_token__string_content] = true, [ts_external_token__string_end] = true, + [ts_external_token__template_string_start] = true, }, [2] = { [ts_external_token__string_start] = true, + [ts_external_token__template_string_start] = true, }, [3] = { [ts_external_token__dedent] = true, [ts_external_token__string_start] = true, + [ts_external_token__template_string_start] = true, }, [4] = { [ts_external_token__newline] = true, [ts_external_token__string_start] = true, + [ts_external_token__template_string_start] = true, }, [5] = { [ts_external_token__newline] = true, [ts_external_token__indent] = true, [ts_external_token__string_start] = true, + [ts_external_token__template_string_start] = true, }, [6] = { [ts_external_token__newline] = true, }, [7] = { + [ts_external_token__newline] = true, + [ts_external_token__string_start] = true, + }, + [8] = { + [ts_external_token__template_string_start] = true, + }, + [9] = { + [ts_external_token__string_start] = true, + }, + [10] = { + [ts_external_token__newline] = true, + [ts_external_token__template_string_start] = true, + }, + [11] = { [ts_external_token__string_content] = true, [ts_external_token__string_end] = true, }, @@ -9317,75 +7803,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1), [sym__string_content] = ACTIONS(1), [sym__string_end] = ACTIONS(1), + [sym__template_string_start] = ACTIONS(1), }, [1] = { - [sym_module] = STATE(1390), - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(957), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(957), + [sym_module] = STATE(1480), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(970), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(970), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), @@ -9432,75 +7921,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [2] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(548), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(468), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9514,24 +8006,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -9545,77 +8037,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [3] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(502), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(491), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9629,24 +8124,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -9660,77 +8155,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [4] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(507), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(535), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9744,24 +8242,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -9775,77 +8273,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [5] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(523), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(510), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9859,24 +8360,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -9890,77 +8391,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [6] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(551), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(505), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9974,24 +8478,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -10005,77 +8509,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [7] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(553), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(462), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10089,24 +8596,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -10120,77 +8627,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [8] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(555), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(424), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10204,24 +8714,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -10235,77 +8745,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [9] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(465), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(400), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10319,24 +8832,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -10350,77 +8863,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [10] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(361), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(450), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10434,24 +8950,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -10465,77 +8981,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [11] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(322), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(565), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10549,24 +9068,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -10580,77 +9099,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [12] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(489), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(444), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10664,24 +9186,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -10695,77 +9217,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [13] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(509), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(504), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10779,24 +9304,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -10810,77 +9335,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [14] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(515), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(488), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10894,24 +9422,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -10925,77 +9453,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [15] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(454), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(391), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11009,24 +9540,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -11040,77 +9571,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [16] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(366), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(434), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11124,24 +9658,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -11155,77 +9689,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [17] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(528), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(419), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11239,24 +9776,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -11270,77 +9807,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [18] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(325), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(399), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11354,24 +9894,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -11385,77 +9925,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [19] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(456), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(307), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11469,24 +10012,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -11500,77 +10043,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [20] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(534), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(413), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11584,24 +10130,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -11615,77 +10161,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [21] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(270), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(465), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11699,24 +10248,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -11730,77 +10279,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [22] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(371), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(522), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11814,24 +10366,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -11845,77 +10397,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [23] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(539), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(446), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11929,24 +10484,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -11960,77 +10515,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [24] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(326), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(417), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12044,24 +10602,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -12075,77 +10633,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [25] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(446), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(519), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12159,24 +10720,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -12190,77 +10751,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [26] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(547), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(406), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12274,24 +10838,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -12305,77 +10869,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [27] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(932), - [sym_block] = STATE(1002), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(457), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12389,24 +10956,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -12420,77 +10987,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [28] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(329), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(554), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12504,24 +11074,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -12535,77 +11105,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [29] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(313), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(523), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12619,24 +11192,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -12650,77 +11223,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [30] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(932), - [sym_block] = STATE(975), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(551), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12734,24 +11310,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -12767,75 +11343,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [31] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(255), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(467), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12849,24 +11428,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -12882,75 +11461,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [32] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(391), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(392), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12964,24 +11546,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -12997,75 +11579,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [33] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(476), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(297), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13079,24 +11664,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -13112,75 +11697,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [34] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(478), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(527), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13194,24 +11782,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -13225,25 +11813,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [35] = { [sym__statement] = STATE(64), [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), [sym_if_statement] = STATE(64), [sym_for_statement] = STATE(64), [sym_while_statement] = STATE(64), @@ -13251,51 +11840,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(64), [sym_match_statement] = STATE(64), [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), [sym_class_definition] = STATE(64), [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(483), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_decorator] = STATE(985), + [sym_block] = STATE(1004), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13309,24 +11900,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -13340,77 +11931,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(107), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [36] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(491), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(487), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13424,24 +12018,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -13457,80 +12051,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [37] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(493), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(481), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), [anon_sym_print] = ACTIONS(17), [anon_sym_assert] = ACTIONS(19), [anon_sym_return] = ACTIONS(21), @@ -13539,24 +12136,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -13570,77 +12167,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [38] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(495), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(541), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13654,24 +12254,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -13685,77 +12285,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [39] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(498), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(469), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13769,24 +12372,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -13802,75 +12405,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [40] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(397), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(482), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13884,24 +12490,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -13917,75 +12523,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [41] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(335), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(420), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13999,24 +12608,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -14030,77 +12639,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [42] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(504), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(430), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14114,24 +12726,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -14147,75 +12759,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [43] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(458), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(436), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14229,24 +12844,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -14260,77 +12875,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [44] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(508), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(394), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14344,24 +12962,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -14375,77 +12993,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [45] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(451), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(484), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14459,24 +13080,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -14492,75 +13113,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [46] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(401), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(532), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14574,24 +13198,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -14605,77 +13229,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [47] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(513), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(478), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14689,24 +13316,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -14720,77 +13347,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [48] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(338), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(486), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14804,24 +13434,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -14837,75 +13467,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [49] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(452), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(402), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14919,24 +13552,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -14950,77 +13583,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [50] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(517), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(516), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15034,24 +13670,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -15065,77 +13701,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [51] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(404), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(408), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15149,24 +13788,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -15180,77 +13819,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [52] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(520), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(460), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15264,24 +13906,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -15295,25 +13937,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [53] = { [sym__statement] = STATE(64), [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), [sym_if_statement] = STATE(64), [sym_for_statement] = STATE(64), [sym_while_statement] = STATE(64), @@ -15321,51 +13964,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(64), [sym_match_statement] = STATE(64), [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), [sym_class_definition] = STATE(64), [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(339), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_decorator] = STATE(985), + [sym_block] = STATE(1026), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15379,24 +14024,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -15410,77 +14055,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(107), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [54] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(455), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(474), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15494,24 +14142,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -15525,77 +14173,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [55] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(524), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(405), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15609,24 +14260,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -15640,77 +14291,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [56] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(525), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(513), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15724,24 +14378,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -15757,75 +14411,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [57] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(342), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(538), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15839,24 +14496,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -15872,75 +14529,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [58] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(343), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(985), + [sym_block] = STATE(471), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15954,24 +14614,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -15985,77 +14645,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [59] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(347), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(985), + [sym_block] = STATE(543), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16069,24 +14732,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -16100,76 +14763,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [60] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(932), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(970), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(970), + [ts_builtin_sym_end] = ACTIONS(109), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16183,24 +14850,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(33), + [anon_sym_async] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_with] = ACTIONS(43), + [anon_sym_match] = ACTIONS(45), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(55), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(65), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -16214,77 +14881,312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [61] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(957), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(957), - [ts_builtin_sym_end] = ACTIONS(109), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(985), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_identifier] = ACTIONS(111), + [anon_sym_import] = ACTIONS(114), + [anon_sym_from] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_STAR] = ACTIONS(123), + [anon_sym_print] = ACTIONS(126), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_return] = ACTIONS(132), + [anon_sym_del] = ACTIONS(135), + [anon_sym_raise] = ACTIONS(138), + [anon_sym_pass] = ACTIONS(141), + [anon_sym_break] = ACTIONS(144), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_if] = ACTIONS(150), + [anon_sym_async] = ACTIONS(153), + [anon_sym_for] = ACTIONS(156), + [anon_sym_while] = ACTIONS(159), + [anon_sym_try] = ACTIONS(162), + [anon_sym_with] = ACTIONS(165), + [anon_sym_match] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(174), + [anon_sym_LBRACE] = ACTIONS(177), + [anon_sym_STAR_STAR] = ACTIONS(180), + [anon_sym_def] = ACTIONS(183), + [anon_sym_global] = ACTIONS(186), + [anon_sym_nonlocal] = ACTIONS(189), + [anon_sym_exec] = ACTIONS(192), + [anon_sym_type] = ACTIONS(195), + [anon_sym_class] = ACTIONS(198), + [anon_sym_AT] = ACTIONS(201), + [anon_sym_not] = ACTIONS(204), + [anon_sym_TILDE] = ACTIONS(171), + [anon_sym_lambda] = ACTIONS(207), + [anon_sym_yield] = ACTIONS(210), + [sym_ellipsis] = ACTIONS(213), + [sym_integer] = ACTIONS(216), + [sym_float] = ACTIONS(213), + [anon_sym_await] = ACTIONS(219), + [sym_true] = ACTIONS(216), + [sym_false] = ACTIONS(216), + [sym_none] = ACTIONS(216), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(222), + [sym__string_start] = ACTIONS(224), + [sym__template_string_start] = ACTIONS(227), + }, + [62] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(970), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(970), + [ts_builtin_sym_end] = ACTIONS(222), + [sym_identifier] = ACTIONS(111), + [anon_sym_import] = ACTIONS(114), + [anon_sym_from] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_STAR] = ACTIONS(123), + [anon_sym_print] = ACTIONS(126), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_return] = ACTIONS(132), + [anon_sym_del] = ACTIONS(135), + [anon_sym_raise] = ACTIONS(138), + [anon_sym_pass] = ACTIONS(141), + [anon_sym_break] = ACTIONS(144), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_if] = ACTIONS(230), + [anon_sym_async] = ACTIONS(233), + [anon_sym_for] = ACTIONS(236), + [anon_sym_while] = ACTIONS(239), + [anon_sym_try] = ACTIONS(242), + [anon_sym_with] = ACTIONS(245), + [anon_sym_match] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(174), + [anon_sym_LBRACE] = ACTIONS(177), + [anon_sym_STAR_STAR] = ACTIONS(180), + [anon_sym_def] = ACTIONS(251), + [anon_sym_global] = ACTIONS(186), + [anon_sym_nonlocal] = ACTIONS(189), + [anon_sym_exec] = ACTIONS(192), + [anon_sym_type] = ACTIONS(195), + [anon_sym_class] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(201), + [anon_sym_not] = ACTIONS(204), + [anon_sym_TILDE] = ACTIONS(171), + [anon_sym_lambda] = ACTIONS(207), + [anon_sym_yield] = ACTIONS(210), + [sym_ellipsis] = ACTIONS(213), + [sym_integer] = ACTIONS(216), + [sym_float] = ACTIONS(213), + [anon_sym_await] = ACTIONS(219), + [sym_true] = ACTIONS(216), + [sym_false] = ACTIONS(216), + [sym_none] = ACTIONS(216), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(224), + [sym__template_string_start] = ACTIONS(227), + }, + [63] = { + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(985), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16298,24 +15200,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_with] = ACTIONS(43), - [anon_sym_match] = ACTIONS(45), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(55), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -16329,75 +15231,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(257), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [62] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(932), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [64] = { + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(985), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16411,24 +15317,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -16442,190 +15348,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(259), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [63] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(957), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(957), - [ts_builtin_sym_end] = ACTIONS(113), - [sym_identifier] = ACTIONS(115), - [anon_sym_import] = ACTIONS(118), - [anon_sym_from] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(124), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_print] = ACTIONS(130), - [anon_sym_assert] = ACTIONS(133), - [anon_sym_return] = ACTIONS(136), - [anon_sym_del] = ACTIONS(139), - [anon_sym_raise] = ACTIONS(142), - [anon_sym_pass] = ACTIONS(145), - [anon_sym_break] = ACTIONS(148), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_if] = ACTIONS(154), - [anon_sym_async] = ACTIONS(157), - [anon_sym_for] = ACTIONS(160), - [anon_sym_while] = ACTIONS(163), - [anon_sym_try] = ACTIONS(166), - [anon_sym_with] = ACTIONS(169), - [anon_sym_match] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(178), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_STAR_STAR] = ACTIONS(184), - [anon_sym_def] = ACTIONS(187), - [anon_sym_global] = ACTIONS(190), - [anon_sym_nonlocal] = ACTIONS(193), - [anon_sym_exec] = ACTIONS(196), - [anon_sym_type] = ACTIONS(199), - [anon_sym_class] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(205), - [anon_sym_not] = ACTIONS(208), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_lambda] = ACTIONS(211), - [anon_sym_yield] = ACTIONS(214), - [sym_ellipsis] = ACTIONS(217), - [sym_integer] = ACTIONS(220), - [sym_float] = ACTIONS(217), - [anon_sym_await] = ACTIONS(223), - [sym_true] = ACTIONS(220), - [sym_false] = ACTIONS(220), - [sym_none] = ACTIONS(220), - [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(226), - }, - [64] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(932), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [65] = { + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_if_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(985), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(985), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16639,24 +15434,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -16670,369 +15465,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(229), + [sym__dedent] = ACTIONS(261), [sym__string_start] = ACTIONS(81), - }, - [65] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(932), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(932), - [sym_identifier] = ACTIONS(115), - [anon_sym_import] = ACTIONS(118), - [anon_sym_from] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(124), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_print] = ACTIONS(130), - [anon_sym_assert] = ACTIONS(133), - [anon_sym_return] = ACTIONS(136), - [anon_sym_del] = ACTIONS(139), - [anon_sym_raise] = ACTIONS(142), - [anon_sym_pass] = ACTIONS(145), - [anon_sym_break] = ACTIONS(148), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_if] = ACTIONS(231), - [anon_sym_async] = ACTIONS(234), - [anon_sym_for] = ACTIONS(237), - [anon_sym_while] = ACTIONS(240), - [anon_sym_try] = ACTIONS(243), - [anon_sym_with] = ACTIONS(246), - [anon_sym_match] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(178), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_STAR_STAR] = ACTIONS(184), - [anon_sym_def] = ACTIONS(252), - [anon_sym_global] = ACTIONS(190), - [anon_sym_nonlocal] = ACTIONS(193), - [anon_sym_exec] = ACTIONS(196), - [anon_sym_type] = ACTIONS(199), - [anon_sym_class] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(205), - [anon_sym_not] = ACTIONS(208), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_lambda] = ACTIONS(211), - [anon_sym_yield] = ACTIONS(214), - [sym_ellipsis] = ACTIONS(217), - [sym_integer] = ACTIONS(220), - [sym_float] = ACTIONS(217), - [anon_sym_await] = ACTIONS(223), - [sym_true] = ACTIONS(220), - [sym_false] = ACTIONS(220), - [sym_none] = ACTIONS(220), - [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(113), - [sym__string_start] = ACTIONS(226), + [sym__template_string_start] = ACTIONS(83), }, [66] = { - [sym_named_expression] = STATE(863), - [sym_list_splat] = STATE(1284), - [sym_dictionary_splat] = STATE(1284), - [sym_expression_list] = STATE(1438), - [sym_expression] = STATE(1014), - [sym_primary_expression] = STATE(595), - [sym_not_operator] = STATE(863), - [sym_boolean_operator] = STATE(863), - [sym_binary_operator] = STATE(589), - [sym_unary_operator] = STATE(589), - [sym_comparison_operator] = STATE(863), - [sym_lambda] = STATE(863), - [sym_attribute] = STATE(589), - [sym_subscript] = STATE(589), - [sym_call] = STATE(589), - [sym_list] = STATE(589), - [sym_set] = STATE(589), - [sym_tuple] = STATE(589), - [sym_dictionary] = STATE(589), - [sym_list_comprehension] = STATE(589), - [sym_dictionary_comprehension] = STATE(589), - [sym_set_comprehension] = STATE(589), - [sym_generator_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_conditional_expression] = STATE(863), - [sym_concatenated_string] = STATE(589), - [sym_string] = STATE(565), - [sym_await] = STATE(589), - [sym_identifier] = ACTIONS(258), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(262), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(268), - [anon_sym_print] = ACTIONS(271), - [anon_sym_GT_GT] = ACTIONS(260), - [anon_sym_COLON_EQ] = ACTIONS(273), - [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(275), - [anon_sym_async] = ACTIONS(271), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR_STAR] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(275), - [anon_sym_exec] = ACTIONS(271), - [anon_sym_type] = ACTIONS(271), - [anon_sym_AT] = ACTIONS(260), - [anon_sym_not] = ACTIONS(288), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [anon_sym_SLASH_SLASH] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_CARET] = ACTIONS(260), - [anon_sym_LT_LT] = ACTIONS(260), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [anon_sym_lambda] = ACTIONS(295), - [anon_sym_PLUS_EQ] = ACTIONS(297), - [anon_sym_DASH_EQ] = ACTIONS(297), - [anon_sym_STAR_EQ] = ACTIONS(297), - [anon_sym_SLASH_EQ] = ACTIONS(297), - [anon_sym_AT_EQ] = ACTIONS(297), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(297), - [anon_sym_PERCENT_EQ] = ACTIONS(297), - [anon_sym_STAR_STAR_EQ] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(297), - [anon_sym_LT_LT_EQ] = ACTIONS(297), - [anon_sym_AMP_EQ] = ACTIONS(297), - [anon_sym_CARET_EQ] = ACTIONS(297), - [anon_sym_PIPE_EQ] = ACTIONS(297), - [sym_ellipsis] = ACTIONS(299), - [sym_integer] = ACTIONS(301), - [sym_float] = ACTIONS(299), - [anon_sym_await] = ACTIONS(303), - [sym_true] = ACTIONS(301), - [sym_false] = ACTIONS(301), - [sym_none] = ACTIONS(301), + [sym_named_expression] = STATE(876), + [sym_list_splat] = STATE(1365), + [sym_dictionary_splat] = STATE(1365), + [sym_expression_list] = STATE(1427), + [sym_expression] = STATE(1043), + [sym_primary_expression] = STATE(634), + [sym_not_operator] = STATE(876), + [sym_boolean_operator] = STATE(876), + [sym_binary_operator] = STATE(658), + [sym_unary_operator] = STATE(658), + [sym_comparison_operator] = STATE(876), + [sym_lambda] = STATE(876), + [sym_attribute] = STATE(658), + [sym_subscript] = STATE(658), + [sym_call] = STATE(658), + [sym_list] = STATE(658), + [sym_set] = STATE(658), + [sym_tuple] = STATE(658), + [sym_dictionary] = STATE(658), + [sym_list_comprehension] = STATE(658), + [sym_dictionary_comprehension] = STATE(658), + [sym_set_comprehension] = STATE(658), + [sym_generator_expression] = STATE(658), + [sym_parenthesized_expression] = STATE(658), + [sym_conditional_expression] = STATE(876), + [sym_concatenated_string] = STATE(658), + [sym_string] = STATE(573), + [sym_concatenated_template_string] = STATE(658), + [sym_template_string] = STATE(572), + [sym_await] = STATE(658), + [sym_identifier] = ACTIONS(263), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_print] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON_EQ] = ACTIONS(278), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_async] = ACTIONS(276), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(276), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_STAR_STAR] = ACTIONS(290), + [anon_sym_EQ] = ACTIONS(280), + [anon_sym_exec] = ACTIONS(276), + [anon_sym_type] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_not] = ACTIONS(293), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [anon_sym_lambda] = ACTIONS(300), + [anon_sym_PLUS_EQ] = ACTIONS(302), + [anon_sym_DASH_EQ] = ACTIONS(302), + [anon_sym_STAR_EQ] = ACTIONS(302), + [anon_sym_SLASH_EQ] = ACTIONS(302), + [anon_sym_AT_EQ] = ACTIONS(302), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(302), + [anon_sym_PERCENT_EQ] = ACTIONS(302), + [anon_sym_STAR_STAR_EQ] = ACTIONS(302), + [anon_sym_GT_GT_EQ] = ACTIONS(302), + [anon_sym_LT_LT_EQ] = ACTIONS(302), + [anon_sym_AMP_EQ] = ACTIONS(302), + [anon_sym_CARET_EQ] = ACTIONS(302), + [anon_sym_PIPE_EQ] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(304), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(308), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(293), - [sym__newline] = ACTIONS(293), - [sym__string_start] = ACTIONS(305), + [sym__semicolon] = ACTIONS(298), + [sym__newline] = ACTIONS(298), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), }, [67] = { - [sym_named_expression] = STATE(863), - [sym_list_splat] = STATE(1284), - [sym_dictionary_splat] = STATE(1284), - [sym_expression_list] = STATE(1403), - [sym_expression] = STATE(1022), - [sym_primary_expression] = STATE(595), - [sym_not_operator] = STATE(863), - [sym_boolean_operator] = STATE(863), - [sym_binary_operator] = STATE(589), - [sym_unary_operator] = STATE(589), - [sym_comparison_operator] = STATE(863), - [sym_lambda] = STATE(863), - [sym_attribute] = STATE(589), - [sym_subscript] = STATE(589), - [sym_call] = STATE(589), - [sym_list] = STATE(589), - [sym_set] = STATE(589), - [sym_tuple] = STATE(589), - [sym_dictionary] = STATE(589), - [sym_list_comprehension] = STATE(589), - [sym_dictionary_comprehension] = STATE(589), - [sym_set_comprehension] = STATE(589), - [sym_generator_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_conditional_expression] = STATE(863), - [sym_concatenated_string] = STATE(589), - [sym_string] = STATE(565), - [sym_await] = STATE(589), - [sym_identifier] = ACTIONS(258), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(262), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(268), - [anon_sym_print] = ACTIONS(271), - [anon_sym_GT_GT] = ACTIONS(260), - [anon_sym_COLON_EQ] = ACTIONS(273), - [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(275), - [anon_sym_async] = ACTIONS(271), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR_STAR] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(275), - [anon_sym_exec] = ACTIONS(271), - [anon_sym_type] = ACTIONS(271), - [anon_sym_AT] = ACTIONS(260), - [anon_sym_not] = ACTIONS(288), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [anon_sym_SLASH_SLASH] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_CARET] = ACTIONS(260), - [anon_sym_LT_LT] = ACTIONS(260), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [anon_sym_lambda] = ACTIONS(295), - [anon_sym_PLUS_EQ] = ACTIONS(297), - [anon_sym_DASH_EQ] = ACTIONS(297), - [anon_sym_STAR_EQ] = ACTIONS(297), - [anon_sym_SLASH_EQ] = ACTIONS(297), - [anon_sym_AT_EQ] = ACTIONS(297), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(297), - [anon_sym_PERCENT_EQ] = ACTIONS(297), - [anon_sym_STAR_STAR_EQ] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(297), - [anon_sym_LT_LT_EQ] = ACTIONS(297), - [anon_sym_AMP_EQ] = ACTIONS(297), - [anon_sym_CARET_EQ] = ACTIONS(297), - [anon_sym_PIPE_EQ] = ACTIONS(297), - [sym_ellipsis] = ACTIONS(299), - [sym_integer] = ACTIONS(301), - [sym_float] = ACTIONS(299), - [anon_sym_await] = ACTIONS(303), - [sym_true] = ACTIONS(301), - [sym_false] = ACTIONS(301), - [sym_none] = ACTIONS(301), + [sym_named_expression] = STATE(876), + [sym_list_splat] = STATE(1365), + [sym_dictionary_splat] = STATE(1365), + [sym_expression_list] = STATE(1449), + [sym_expression] = STATE(1050), + [sym_primary_expression] = STATE(634), + [sym_not_operator] = STATE(876), + [sym_boolean_operator] = STATE(876), + [sym_binary_operator] = STATE(658), + [sym_unary_operator] = STATE(658), + [sym_comparison_operator] = STATE(876), + [sym_lambda] = STATE(876), + [sym_attribute] = STATE(658), + [sym_subscript] = STATE(658), + [sym_call] = STATE(658), + [sym_list] = STATE(658), + [sym_set] = STATE(658), + [sym_tuple] = STATE(658), + [sym_dictionary] = STATE(658), + [sym_list_comprehension] = STATE(658), + [sym_dictionary_comprehension] = STATE(658), + [sym_set_comprehension] = STATE(658), + [sym_generator_expression] = STATE(658), + [sym_parenthesized_expression] = STATE(658), + [sym_conditional_expression] = STATE(876), + [sym_concatenated_string] = STATE(658), + [sym_string] = STATE(573), + [sym_concatenated_template_string] = STATE(658), + [sym_template_string] = STATE(572), + [sym_await] = STATE(658), + [sym_identifier] = ACTIONS(263), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_print] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON_EQ] = ACTIONS(278), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_async] = ACTIONS(276), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(276), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_STAR_STAR] = ACTIONS(290), + [anon_sym_EQ] = ACTIONS(280), + [anon_sym_exec] = ACTIONS(276), + [anon_sym_type] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_not] = ACTIONS(293), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [anon_sym_lambda] = ACTIONS(300), + [anon_sym_PLUS_EQ] = ACTIONS(302), + [anon_sym_DASH_EQ] = ACTIONS(302), + [anon_sym_STAR_EQ] = ACTIONS(302), + [anon_sym_SLASH_EQ] = ACTIONS(302), + [anon_sym_AT_EQ] = ACTIONS(302), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(302), + [anon_sym_PERCENT_EQ] = ACTIONS(302), + [anon_sym_STAR_STAR_EQ] = ACTIONS(302), + [anon_sym_GT_GT_EQ] = ACTIONS(302), + [anon_sym_LT_LT_EQ] = ACTIONS(302), + [anon_sym_AMP_EQ] = ACTIONS(302), + [anon_sym_CARET_EQ] = ACTIONS(302), + [anon_sym_PIPE_EQ] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(304), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(308), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(293), - [sym__newline] = ACTIONS(293), - [sym__string_start] = ACTIONS(305), + [sym__semicolon] = ACTIONS(298), + [sym__newline] = ACTIONS(298), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), }, [68] = { - [sym__simple_statements] = STATE(973), - [sym_import_statement] = STATE(1228), - [sym_future_import_statement] = STATE(1228), - [sym_import_from_statement] = STATE(1228), - [sym_print_statement] = STATE(1228), - [sym_assert_statement] = STATE(1228), - [sym_expression_statement] = STATE(1228), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1228), - [sym_delete_statement] = STATE(1228), - [sym_raise_statement] = STATE(1228), - [sym_pass_statement] = STATE(1228), - [sym_break_statement] = STATE(1228), - [sym_continue_statement] = STATE(1228), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1228), - [sym_nonlocal_statement] = STATE(1228), - [sym_exec_statement] = STATE(1228), - [sym_type_alias_statement] = STATE(1228), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(428), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17046,8 +15736,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17069,64 +15759,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(309), - [sym__indent] = ACTIONS(311), + [sym__newline] = ACTIONS(316), + [sym__indent] = ACTIONS(318), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [69] = { - [sym__simple_statements] = STATE(526), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(309), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17140,8 +15833,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17163,64 +15856,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(313), - [sym__indent] = ACTIONS(315), + [sym__newline] = ACTIONS(320), + [sym__indent] = ACTIONS(322), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [70] = { - [sym__simple_statements] = STATE(324), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(530), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17234,8 +15930,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17257,64 +15953,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(317), - [sym__indent] = ACTIONS(319), + [sym__newline] = ACTIONS(324), + [sym__indent] = ACTIONS(326), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [71] = { - [sym__simple_statements] = STATE(251), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(410), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17328,8 +16027,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17351,158 +16050,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(321), - [sym__indent] = ACTIONS(323), + [sym__newline] = ACTIONS(328), + [sym__indent] = ACTIONS(330), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [72] = { - [sym_chevron] = STATE(1149), - [sym_named_expression] = STATE(940), - [sym_expression] = STATE(999), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_attribute] = STATE(773), - [sym_subscript] = STATE(773), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [sym_identifier] = ACTIONS(325), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(293), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(327), - [anon_sym_GT_GT] = ACTIONS(329), - [anon_sym_COLON_EQ] = ACTIONS(273), - [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(275), - [anon_sym_async] = ACTIONS(327), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(260), - [anon_sym_PLUS] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(293), + [sym__simple_statements] = STATE(545), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(260), - [anon_sym_EQ] = ACTIONS(275), - [anon_sym_exec] = ACTIONS(327), - [anon_sym_type] = ACTIONS(327), - [anon_sym_AT] = ACTIONS(260), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [anon_sym_SLASH_SLASH] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_CARET] = ACTIONS(260), - [anon_sym_LT_LT] = ACTIONS(260), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), [anon_sym_lambda] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(297), - [anon_sym_DASH_EQ] = ACTIONS(297), - [anon_sym_STAR_EQ] = ACTIONS(297), - [anon_sym_SLASH_EQ] = ACTIONS(297), - [anon_sym_AT_EQ] = ACTIONS(297), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(297), - [anon_sym_PERCENT_EQ] = ACTIONS(297), - [anon_sym_STAR_STAR_EQ] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(297), - [anon_sym_LT_LT_EQ] = ACTIONS(297), - [anon_sym_AMP_EQ] = ACTIONS(297), - [anon_sym_CARET_EQ] = ACTIONS(297), - [anon_sym_PIPE_EQ] = ACTIONS(297), + [anon_sym_yield] = ACTIONS(73), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(331), + [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(293), - [sym__newline] = ACTIONS(293), + [sym__newline] = ACTIONS(332), + [sym__indent] = ACTIONS(334), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [73] = { - [sym__simple_statements] = STATE(457), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(401), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17516,8 +16221,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17539,64 +16244,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(333), - [sym__indent] = ACTIONS(335), + [sym__newline] = ACTIONS(336), + [sym__indent] = ACTIONS(338), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [74] = { - [sym__simple_statements] = STATE(349), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(1014), + [sym_import_statement] = STATE(1214), + [sym_future_import_statement] = STATE(1214), + [sym_import_from_statement] = STATE(1214), + [sym_print_statement] = STATE(1214), + [sym_assert_statement] = STATE(1214), + [sym_expression_statement] = STATE(1214), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1214), + [sym_delete_statement] = STATE(1214), + [sym_raise_statement] = STATE(1214), + [sym_pass_statement] = STATE(1214), + [sym_break_statement] = STATE(1214), + [sym_continue_statement] = STATE(1214), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1214), + [sym_nonlocal_statement] = STATE(1214), + [sym_exec_statement] = STATE(1214), + [sym_type_alias_statement] = STATE(1214), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17610,8 +16318,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17633,64 +16341,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(337), - [sym__indent] = ACTIONS(339), + [sym__newline] = ACTIONS(340), + [sym__indent] = ACTIONS(342), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [75] = { - [sym__simple_statements] = STATE(535), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(459), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17704,8 +16415,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17727,64 +16438,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(341), - [sym__indent] = ACTIONS(343), + [sym__newline] = ACTIONS(344), + [sym__indent] = ACTIONS(346), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [76] = { - [sym__simple_statements] = STATE(536), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(296), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17798,8 +16512,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17821,64 +16535,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(345), - [sym__indent] = ACTIONS(347), + [sym__newline] = ACTIONS(348), + [sym__indent] = ACTIONS(350), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [77] = { - [sym__simple_statements] = STATE(540), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(473), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17892,8 +16609,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17915,64 +16632,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(349), - [sym__indent] = ACTIONS(351), + [sym__newline] = ACTIONS(352), + [sym__indent] = ACTIONS(354), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [78] = { - [sym__simple_statements] = STATE(550), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(422), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17986,8 +16706,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18009,64 +16729,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(353), - [sym__indent] = ACTIONS(355), + [sym__newline] = ACTIONS(356), + [sym__indent] = ACTIONS(358), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [79] = { - [sym__simple_statements] = STATE(327), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(441), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18080,8 +16803,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18103,64 +16826,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(357), - [sym__indent] = ACTIONS(359), + [sym__newline] = ACTIONS(360), + [sym__indent] = ACTIONS(362), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [80] = { - [sym__simple_statements] = STATE(328), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(426), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18174,8 +16900,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18197,64 +16923,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(361), - [sym__indent] = ACTIONS(363), + [sym__newline] = ACTIONS(364), + [sym__indent] = ACTIONS(366), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [81] = { - [sym__simple_statements] = STATE(546), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(555), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18268,8 +16997,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18291,64 +17020,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(365), - [sym__indent] = ACTIONS(367), + [sym__newline] = ACTIONS(368), + [sym__indent] = ACTIONS(370), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [82] = { - [sym__simple_statements] = STATE(254), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(549), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18362,8 +17094,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18385,64 +17117,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(369), - [sym__indent] = ACTIONS(371), + [sym__newline] = ACTIONS(372), + [sym__indent] = ACTIONS(374), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [83] = { - [sym__simple_statements] = STATE(386), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(526), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18456,8 +17191,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18479,158 +17214,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(373), - [sym__indent] = ACTIONS(375), + [sym__newline] = ACTIONS(376), + [sym__indent] = ACTIONS(378), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [84] = { - [sym__simple_statements] = STATE(461), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), + [sym_chevron] = STATE(1116), + [sym_named_expression] = STATE(977), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_attribute] = STATE(795), + [sym_subscript] = STATE(795), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [sym_identifier] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(384), + [anon_sym_COLON_EQ] = ACTIONS(278), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_async] = ACTIONS(382), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(298), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_not] = ACTIONS(69), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_EQ] = ACTIONS(280), + [anon_sym_exec] = ACTIONS(382), + [anon_sym_type] = ACTIONS(382), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), + [anon_sym_PLUS_EQ] = ACTIONS(302), + [anon_sym_DASH_EQ] = ACTIONS(302), + [anon_sym_STAR_EQ] = ACTIONS(302), + [anon_sym_SLASH_EQ] = ACTIONS(302), + [anon_sym_AT_EQ] = ACTIONS(302), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(302), + [anon_sym_PERCENT_EQ] = ACTIONS(302), + [anon_sym_STAR_STAR_EQ] = ACTIONS(302), + [anon_sym_GT_GT_EQ] = ACTIONS(302), + [anon_sym_LT_LT_EQ] = ACTIONS(302), + [anon_sym_AMP_EQ] = ACTIONS(302), + [anon_sym_CARET_EQ] = ACTIONS(302), + [anon_sym_PIPE_EQ] = ACTIONS(302), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), + [anon_sym_await] = ACTIONS(386), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(377), - [sym__indent] = ACTIONS(379), + [sym__semicolon] = ACTIONS(298), + [sym__newline] = ACTIONS(298), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [85] = { - [sym__simple_statements] = STATE(464), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(546), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18644,8 +17385,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18667,64 +17408,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(381), - [sym__indent] = ACTIONS(383), + [sym__newline] = ACTIONS(388), + [sym__indent] = ACTIONS(390), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [86] = { - [sym__simple_statements] = STATE(470), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(564), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18738,8 +17482,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18761,64 +17505,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(385), - [sym__indent] = ACTIONS(387), + [sym__newline] = ACTIONS(392), + [sym__indent] = ACTIONS(394), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [87] = { - [sym__simple_statements] = STATE(549), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(514), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18832,8 +17579,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18855,64 +17602,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(389), - [sym__indent] = ACTIONS(391), + [sym__newline] = ACTIONS(396), + [sym__indent] = ACTIONS(398), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [88] = { - [sym__simple_statements] = STATE(477), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(566), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18926,8 +17676,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18949,64 +17699,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(393), - [sym__indent] = ACTIONS(395), + [sym__newline] = ACTIONS(400), + [sym__indent] = ACTIONS(402), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [89] = { - [sym__simple_statements] = STATE(479), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(490), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19020,8 +17773,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19043,64 +17796,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(397), - [sym__indent] = ACTIONS(399), + [sym__newline] = ACTIONS(404), + [sym__indent] = ACTIONS(406), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [90] = { - [sym__simple_statements] = STATE(480), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(539), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19114,8 +17870,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19137,64 +17893,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(401), - [sym__indent] = ACTIONS(403), + [sym__newline] = ACTIONS(408), + [sym__indent] = ACTIONS(410), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [91] = { - [sym__simple_statements] = STATE(462), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(558), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19208,8 +17967,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19231,64 +17990,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(405), - [sym__indent] = ACTIONS(407), + [sym__newline] = ACTIONS(412), + [sym__indent] = ACTIONS(414), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [92] = { - [sym__simple_statements] = STATE(484), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(506), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19302,8 +18064,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19325,64 +18087,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(409), - [sym__indent] = ACTIONS(411), + [sym__newline] = ACTIONS(416), + [sym__indent] = ACTIONS(418), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [93] = { - [sym__simple_statements] = STATE(393), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(415), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19396,8 +18161,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19419,64 +18184,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(413), - [sym__indent] = ACTIONS(415), + [sym__newline] = ACTIONS(420), + [sym__indent] = ACTIONS(422), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [94] = { - [sym__simple_statements] = STATE(334), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(562), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19490,8 +18258,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19513,64 +18281,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(417), - [sym__indent] = ACTIONS(419), + [sym__newline] = ACTIONS(424), + [sym__indent] = ACTIONS(426), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [95] = { - [sym__simple_statements] = STATE(487), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(537), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19584,8 +18355,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19607,64 +18378,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(421), - [sym__indent] = ACTIONS(423), + [sym__newline] = ACTIONS(428), + [sym__indent] = ACTIONS(430), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [96] = { - [sym__simple_statements] = STATE(472), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(503), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19678,8 +18452,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19701,64 +18475,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(425), - [sym__indent] = ACTIONS(427), + [sym__newline] = ACTIONS(432), + [sym__indent] = ACTIONS(434), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [97] = { - [sym__simple_statements] = STATE(365), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(540), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19772,8 +18549,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19795,64 +18572,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(429), - [sym__indent] = ACTIONS(431), + [sym__newline] = ACTIONS(436), + [sym__indent] = ACTIONS(438), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [98] = { - [sym__simple_statements] = STATE(494), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(536), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19866,8 +18646,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19889,64 +18669,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(433), - [sym__indent] = ACTIONS(435), + [sym__newline] = ACTIONS(440), + [sym__indent] = ACTIONS(442), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [99] = { - [sym__simple_statements] = STATE(448), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(412), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19960,8 +18743,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19983,64 +18766,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(437), - [sym__indent] = ACTIONS(439), + [sym__newline] = ACTIONS(444), + [sym__indent] = ACTIONS(446), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [100] = { [sym__simple_statements] = STATE(396), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20054,8 +18840,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20077,64 +18863,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(441), - [sym__indent] = ACTIONS(443), + [sym__newline] = ACTIONS(448), + [sym__indent] = ACTIONS(450), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [101] = { - [sym__simple_statements] = STATE(499), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(411), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20148,8 +18937,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20171,64 +18960,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(445), - [sym__indent] = ACTIONS(447), + [sym__newline] = ACTIONS(452), + [sym__indent] = ACTIONS(454), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [102] = { - [sym__simple_statements] = STATE(531), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(451), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20242,8 +19034,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20265,64 +19057,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(449), - [sym__indent] = ACTIONS(451), + [sym__newline] = ACTIONS(456), + [sym__indent] = ACTIONS(458), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [103] = { - [sym__simple_statements] = STATE(355), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(470), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20336,8 +19131,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20359,64 +19154,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(453), - [sym__indent] = ACTIONS(455), + [sym__newline] = ACTIONS(460), + [sym__indent] = ACTIONS(462), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [104] = { - [sym__simple_statements] = STATE(336), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(507), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20430,8 +19228,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20453,64 +19251,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(457), - [sym__indent] = ACTIONS(459), + [sym__newline] = ACTIONS(464), + [sym__indent] = ACTIONS(466), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [105] = { - [sym__simple_statements] = STATE(321), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(425), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20524,8 +19325,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20547,64 +19348,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(461), - [sym__indent] = ACTIONS(463), + [sym__newline] = ACTIONS(468), + [sym__indent] = ACTIONS(470), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [106] = { - [sym__simple_statements] = STATE(450), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(520), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20618,8 +19422,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20641,64 +19445,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(465), - [sym__indent] = ACTIONS(467), + [sym__newline] = ACTIONS(472), + [sym__indent] = ACTIONS(474), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [107] = { - [sym__simple_statements] = STATE(506), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(404), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20712,8 +19519,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20735,64 +19542,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(469), - [sym__indent] = ACTIONS(471), + [sym__newline] = ACTIONS(476), + [sym__indent] = ACTIONS(478), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [108] = { - [sym__simple_statements] = STATE(541), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(395), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20806,8 +19616,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20829,64 +19639,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(473), - [sym__indent] = ACTIONS(475), + [sym__newline] = ACTIONS(480), + [sym__indent] = ACTIONS(482), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [109] = { - [sym__simple_statements] = STATE(400), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(552), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20900,8 +19713,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20923,64 +19736,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(477), - [sym__indent] = ACTIONS(479), + [sym__newline] = ACTIONS(484), + [sym__indent] = ACTIONS(486), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [110] = { - [sym__simple_statements] = STATE(552), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(493), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20994,8 +19810,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21017,64 +19833,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(481), - [sym__indent] = ACTIONS(483), + [sym__newline] = ACTIONS(488), + [sym__indent] = ACTIONS(490), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [111] = { - [sym__simple_statements] = STATE(512), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(403), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21088,8 +19907,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21111,64 +19930,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(485), - [sym__indent] = ACTIONS(487), + [sym__newline] = ACTIONS(492), + [sym__indent] = ACTIONS(494), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [112] = { - [sym__simple_statements] = STATE(554), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(550), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21182,8 +20004,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21205,64 +20027,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(489), - [sym__indent] = ACTIONS(491), + [sym__newline] = ACTIONS(496), + [sym__indent] = ACTIONS(498), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [113] = { - [sym__simple_statements] = STATE(337), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(389), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21276,8 +20101,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21299,64 +20124,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(493), - [sym__indent] = ACTIONS(495), + [sym__newline] = ACTIONS(500), + [sym__indent] = ACTIONS(502), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [114] = { - [sym__simple_statements] = STATE(447), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(1029), + [sym_import_statement] = STATE(1214), + [sym_future_import_statement] = STATE(1214), + [sym_import_from_statement] = STATE(1214), + [sym_print_statement] = STATE(1214), + [sym_assert_statement] = STATE(1214), + [sym_expression_statement] = STATE(1214), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1214), + [sym_delete_statement] = STATE(1214), + [sym_raise_statement] = STATE(1214), + [sym_pass_statement] = STATE(1214), + [sym_break_statement] = STATE(1214), + [sym_continue_statement] = STATE(1214), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1214), + [sym_nonlocal_statement] = STATE(1214), + [sym_exec_statement] = STATE(1214), + [sym_type_alias_statement] = STATE(1214), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21370,8 +20198,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21393,64 +20221,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(497), - [sym__indent] = ACTIONS(499), + [sym__newline] = ACTIONS(504), + [sym__indent] = ACTIONS(506), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [115] = { - [sym__simple_statements] = STATE(453), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(461), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21464,8 +20295,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21487,64 +20318,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(501), - [sym__indent] = ACTIONS(503), + [sym__newline] = ACTIONS(508), + [sym__indent] = ACTIONS(510), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [116] = { - [sym__simple_statements] = STATE(360), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(477), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21558,8 +20392,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21581,158 +20415,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(505), - [sym__indent] = ACTIONS(507), + [sym__newline] = ACTIONS(512), + [sym__indent] = ACTIONS(514), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [117] = { - [sym__simple_statements] = STATE(518), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(509), - [sym__indent] = ACTIONS(511), - [sym__string_start] = ACTIONS(81), - }, - [118] = { [sym__simple_statements] = STATE(466), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21746,8 +20489,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21769,64 +20512,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(513), - [sym__indent] = ACTIONS(515), + [sym__newline] = ACTIONS(516), + [sym__indent] = ACTIONS(518), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), + }, + [118] = { + [sym__simple_statements] = STATE(485), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(520), + [sym__indent] = ACTIONS(522), + [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [119] = { - [sym__simple_statements] = STATE(521), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(423), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21840,8 +20683,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21863,64 +20706,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(517), - [sym__indent] = ACTIONS(519), + [sym__newline] = ACTIONS(524), + [sym__indent] = ACTIONS(526), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [120] = { - [sym__simple_statements] = STATE(340), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(393), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21934,8 +20780,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21957,64 +20803,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(521), - [sym__indent] = ACTIONS(523), + [sym__newline] = ACTIONS(528), + [sym__indent] = ACTIONS(530), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [121] = { - [sym__simple_statements] = STATE(323), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(483), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22028,8 +20877,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -22051,64 +20900,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(525), - [sym__indent] = ACTIONS(527), + [sym__newline] = ACTIONS(532), + [sym__indent] = ACTIONS(534), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [122] = { - [sym__simple_statements] = STATE(341), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(452), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22122,8 +20974,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -22145,64 +20997,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(529), - [sym__indent] = ACTIONS(531), + [sym__newline] = ACTIONS(536), + [sym__indent] = ACTIONS(538), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [123] = { - [sym__simple_statements] = STATE(449), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(480), + [sym_import_statement] = STATE(1184), + [sym_future_import_statement] = STATE(1184), + [sym_import_from_statement] = STATE(1184), + [sym_print_statement] = STATE(1184), + [sym_assert_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1184), + [sym_delete_statement] = STATE(1184), + [sym_raise_statement] = STATE(1184), + [sym_pass_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1184), + [sym_nonlocal_statement] = STATE(1184), + [sym_exec_statement] = STATE(1184), + [sym_type_alias_statement] = STATE(1184), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22216,8 +21071,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -22239,64 +21094,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(533), - [sym__indent] = ACTIONS(535), + [sym__newline] = ACTIONS(540), + [sym__indent] = ACTIONS(542), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [124] = { - [sym__simple_statements] = STATE(503), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(511), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22310,8 +21168,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -22333,64 +21191,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(537), - [sym__indent] = ACTIONS(539), + [sym__newline] = ACTIONS(544), + [sym__indent] = ACTIONS(546), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [125] = { - [sym__simple_statements] = STATE(992), - [sym_import_statement] = STATE(1228), - [sym_future_import_statement] = STATE(1228), - [sym_import_from_statement] = STATE(1228), - [sym_print_statement] = STATE(1228), - [sym_assert_statement] = STATE(1228), - [sym_expression_statement] = STATE(1228), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1228), - [sym_delete_statement] = STATE(1228), - [sym_raise_statement] = STATE(1228), - [sym_pass_statement] = STATE(1228), - [sym_break_statement] = STATE(1228), - [sym_continue_statement] = STATE(1228), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1228), - [sym_nonlocal_statement] = STATE(1228), - [sym_exec_statement] = STATE(1228), - [sym_type_alias_statement] = STATE(1228), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(449), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22404,8 +21265,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -22427,64 +21288,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(541), - [sym__indent] = ACTIONS(543), + [sym__newline] = ACTIONS(548), + [sym__indent] = ACTIONS(550), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [126] = { - [sym__simple_statements] = STATE(492), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(442), + [sym_import_statement] = STATE(1249), + [sym_future_import_statement] = STATE(1249), + [sym_import_from_statement] = STATE(1249), + [sym_print_statement] = STATE(1249), + [sym_assert_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1249), + [sym_delete_statement] = STATE(1249), + [sym_raise_statement] = STATE(1249), + [sym_pass_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1249), + [sym_nonlocal_statement] = STATE(1249), + [sym_exec_statement] = STATE(1249), + [sym_type_alias_statement] = STATE(1249), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22498,8 +21362,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -22521,63 +21385,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(545), - [sym__indent] = ACTIONS(547), + [sym__newline] = ACTIONS(552), + [sym__indent] = ACTIONS(554), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [127] = { - [sym_import_statement] = STATE(1316), - [sym_future_import_statement] = STATE(1316), - [sym_import_from_statement] = STATE(1316), - [sym_print_statement] = STATE(1316), - [sym_assert_statement] = STATE(1316), - [sym_expression_statement] = STATE(1316), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1316), - [sym_delete_statement] = STATE(1316), - [sym_raise_statement] = STATE(1316), - [sym_pass_statement] = STATE(1316), - [sym_break_statement] = STATE(1316), - [sym_continue_statement] = STATE(1316), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1316), - [sym_nonlocal_statement] = STATE(1316), - [sym_exec_statement] = STATE(1316), - [sym_type_alias_statement] = STATE(1316), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_import_statement] = STATE(1357), + [sym_future_import_statement] = STATE(1357), + [sym_import_from_statement] = STATE(1357), + [sym_print_statement] = STATE(1357), + [sym_assert_statement] = STATE(1357), + [sym_expression_statement] = STATE(1357), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1357), + [sym_delete_statement] = STATE(1357), + [sym_raise_statement] = STATE(1357), + [sym_pass_statement] = STATE(1357), + [sym_break_statement] = STATE(1357), + [sym_continue_statement] = STATE(1357), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1357), + [sym_nonlocal_statement] = STATE(1357), + [sym_exec_statement] = STATE(1357), + [sym_type_alias_statement] = STATE(1357), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22591,8 +21458,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -22614,62 +21481,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(549), + [sym__newline] = ACTIONS(556), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [128] = { - [sym_import_statement] = STATE(1316), - [sym_future_import_statement] = STATE(1316), - [sym_import_from_statement] = STATE(1316), - [sym_print_statement] = STATE(1316), - [sym_assert_statement] = STATE(1316), - [sym_expression_statement] = STATE(1316), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1316), - [sym_delete_statement] = STATE(1316), - [sym_raise_statement] = STATE(1316), - [sym_pass_statement] = STATE(1316), - [sym_break_statement] = STATE(1316), - [sym_continue_statement] = STATE(1316), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1316), - [sym_nonlocal_statement] = STATE(1316), - [sym_exec_statement] = STATE(1316), - [sym_type_alias_statement] = STATE(1316), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_import_statement] = STATE(1357), + [sym_future_import_statement] = STATE(1357), + [sym_import_from_statement] = STATE(1357), + [sym_print_statement] = STATE(1357), + [sym_assert_statement] = STATE(1357), + [sym_expression_statement] = STATE(1357), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1357), + [sym_delete_statement] = STATE(1357), + [sym_raise_statement] = STATE(1357), + [sym_pass_statement] = STATE(1357), + [sym_break_statement] = STATE(1357), + [sym_continue_statement] = STATE(1357), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1357), + [sym_nonlocal_statement] = STATE(1357), + [sym_exec_statement] = STATE(1357), + [sym_type_alias_statement] = STATE(1357), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22683,8 +21553,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -22706,62 +21576,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(551), + [sym__newline] = ACTIONS(558), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [129] = { - [sym_import_statement] = STATE(1316), - [sym_future_import_statement] = STATE(1316), - [sym_import_from_statement] = STATE(1316), - [sym_print_statement] = STATE(1316), - [sym_assert_statement] = STATE(1316), - [sym_expression_statement] = STATE(1316), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1316), - [sym_delete_statement] = STATE(1316), - [sym_raise_statement] = STATE(1316), - [sym_pass_statement] = STATE(1316), - [sym_break_statement] = STATE(1316), - [sym_continue_statement] = STATE(1316), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1316), - [sym_nonlocal_statement] = STATE(1316), - [sym_exec_statement] = STATE(1316), - [sym_type_alias_statement] = STATE(1316), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_import_statement] = STATE(1357), + [sym_future_import_statement] = STATE(1357), + [sym_import_from_statement] = STATE(1357), + [sym_print_statement] = STATE(1357), + [sym_assert_statement] = STATE(1357), + [sym_expression_statement] = STATE(1357), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1357), + [sym_delete_statement] = STATE(1357), + [sym_raise_statement] = STATE(1357), + [sym_pass_statement] = STATE(1357), + [sym_break_statement] = STATE(1357), + [sym_continue_statement] = STATE(1357), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1357), + [sym_nonlocal_statement] = STATE(1357), + [sym_exec_statement] = STATE(1357), + [sym_type_alias_statement] = STATE(1357), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22775,8 +21648,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -22798,62 +21671,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(553), + [sym__newline] = ACTIONS(560), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [130] = { - [sym_import_statement] = STATE(1316), - [sym_future_import_statement] = STATE(1316), - [sym_import_from_statement] = STATE(1316), - [sym_print_statement] = STATE(1316), - [sym_assert_statement] = STATE(1316), - [sym_expression_statement] = STATE(1316), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1316), - [sym_delete_statement] = STATE(1316), - [sym_raise_statement] = STATE(1316), - [sym_pass_statement] = STATE(1316), - [sym_break_statement] = STATE(1316), - [sym_continue_statement] = STATE(1316), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1316), - [sym_nonlocal_statement] = STATE(1316), - [sym_exec_statement] = STATE(1316), - [sym_type_alias_statement] = STATE(1316), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_import_statement] = STATE(1357), + [sym_future_import_statement] = STATE(1357), + [sym_import_from_statement] = STATE(1357), + [sym_print_statement] = STATE(1357), + [sym_assert_statement] = STATE(1357), + [sym_expression_statement] = STATE(1357), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1357), + [sym_delete_statement] = STATE(1357), + [sym_raise_statement] = STATE(1357), + [sym_pass_statement] = STATE(1357), + [sym_break_statement] = STATE(1357), + [sym_continue_statement] = STATE(1357), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1357), + [sym_nonlocal_statement] = STATE(1357), + [sym_exec_statement] = STATE(1357), + [sym_type_alias_statement] = STATE(1357), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22867,8 +21743,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -22890,62 +21766,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(555), + [sym__newline] = ACTIONS(562), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [131] = { - [sym_import_statement] = STATE(1316), - [sym_future_import_statement] = STATE(1316), - [sym_import_from_statement] = STATE(1316), - [sym_print_statement] = STATE(1316), - [sym_assert_statement] = STATE(1316), - [sym_expression_statement] = STATE(1316), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1316), - [sym_delete_statement] = STATE(1316), - [sym_raise_statement] = STATE(1316), - [sym_pass_statement] = STATE(1316), - [sym_break_statement] = STATE(1316), - [sym_continue_statement] = STATE(1316), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1316), - [sym_nonlocal_statement] = STATE(1316), - [sym_exec_statement] = STATE(1316), - [sym_type_alias_statement] = STATE(1316), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_import_statement] = STATE(1357), + [sym_future_import_statement] = STATE(1357), + [sym_import_from_statement] = STATE(1357), + [sym_print_statement] = STATE(1357), + [sym_assert_statement] = STATE(1357), + [sym_expression_statement] = STATE(1357), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1357), + [sym_delete_statement] = STATE(1357), + [sym_raise_statement] = STATE(1357), + [sym_pass_statement] = STATE(1357), + [sym_break_statement] = STATE(1357), + [sym_continue_statement] = STATE(1357), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1357), + [sym_nonlocal_statement] = STATE(1357), + [sym_exec_statement] = STATE(1357), + [sym_type_alias_statement] = STATE(1357), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22959,8 +21838,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -22982,62 +21861,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(557), + [sym__newline] = ACTIONS(564), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [132] = { - [sym_import_statement] = STATE(1316), - [sym_future_import_statement] = STATE(1316), - [sym_import_from_statement] = STATE(1316), - [sym_print_statement] = STATE(1316), - [sym_assert_statement] = STATE(1316), - [sym_expression_statement] = STATE(1316), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1316), - [sym_delete_statement] = STATE(1316), - [sym_raise_statement] = STATE(1316), - [sym_pass_statement] = STATE(1316), - [sym_break_statement] = STATE(1316), - [sym_continue_statement] = STATE(1316), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1316), - [sym_nonlocal_statement] = STATE(1316), - [sym_exec_statement] = STATE(1316), - [sym_type_alias_statement] = STATE(1316), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_import_statement] = STATE(1357), + [sym_future_import_statement] = STATE(1357), + [sym_import_from_statement] = STATE(1357), + [sym_print_statement] = STATE(1357), + [sym_assert_statement] = STATE(1357), + [sym_expression_statement] = STATE(1357), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1357), + [sym_delete_statement] = STATE(1357), + [sym_raise_statement] = STATE(1357), + [sym_pass_statement] = STATE(1357), + [sym_break_statement] = STATE(1357), + [sym_continue_statement] = STATE(1357), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1357), + [sym_nonlocal_statement] = STATE(1357), + [sym_exec_statement] = STATE(1357), + [sym_type_alias_statement] = STATE(1357), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -23051,8 +21933,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -23074,62 +21956,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(559), + [sym__newline] = ACTIONS(566), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [133] = { - [sym_import_statement] = STATE(1316), - [sym_future_import_statement] = STATE(1316), - [sym_import_from_statement] = STATE(1316), - [sym_print_statement] = STATE(1316), - [sym_assert_statement] = STATE(1316), - [sym_expression_statement] = STATE(1316), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1316), - [sym_delete_statement] = STATE(1316), - [sym_raise_statement] = STATE(1316), - [sym_pass_statement] = STATE(1316), - [sym_break_statement] = STATE(1316), - [sym_continue_statement] = STATE(1316), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1316), - [sym_nonlocal_statement] = STATE(1316), - [sym_exec_statement] = STATE(1316), - [sym_type_alias_statement] = STATE(1316), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_import_statement] = STATE(1357), + [sym_future_import_statement] = STATE(1357), + [sym_import_from_statement] = STATE(1357), + [sym_print_statement] = STATE(1357), + [sym_assert_statement] = STATE(1357), + [sym_expression_statement] = STATE(1357), + [sym_named_expression] = STATE(977), + [sym_return_statement] = STATE(1357), + [sym_delete_statement] = STATE(1357), + [sym_raise_statement] = STATE(1357), + [sym_pass_statement] = STATE(1357), + [sym_break_statement] = STATE(1357), + [sym_continue_statement] = STATE(1357), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_global_statement] = STATE(1357), + [sym_nonlocal_statement] = STATE(1357), + [sym_exec_statement] = STATE(1357), + [sym_type_alias_statement] = STATE(1357), + [sym_expression_list] = STATE(1333), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1333), + [sym_augmented_assignment] = STATE(1333), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1333), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -23143,8 +22028,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -23167,1195 +22052,1444 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [134] = { - [sym_primary_expression] = STATE(709), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_attribute] = STATE(773), - [sym_subscript] = STATE(773), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_primary_expression] = STATE(715), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_attribute] = STATE(795), + [sym_subscript] = STATE(795), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(77), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(561), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(260), - [anon_sym_COLON_EQ] = ACTIONS(273), - [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(275), - [anon_sym_async] = ACTIONS(563), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_COMMA] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(570), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON_EQ] = ACTIONS(278), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_async] = ACTIONS(570), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_LBRACK] = ACTIONS(574), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(260), - [anon_sym_EQ] = ACTIONS(275), - [anon_sym_exec] = ACTIONS(563), - [anon_sym_type] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(260), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [anon_sym_SLASH_SLASH] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_CARET] = ACTIONS(260), - [anon_sym_LT_LT] = ACTIONS(260), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_EQ] = ACTIONS(280), + [anon_sym_exec] = ACTIONS(570), + [anon_sym_type] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [anon_sym_PLUS_EQ] = ACTIONS(297), - [anon_sym_DASH_EQ] = ACTIONS(297), - [anon_sym_STAR_EQ] = ACTIONS(297), - [anon_sym_SLASH_EQ] = ACTIONS(297), - [anon_sym_AT_EQ] = ACTIONS(297), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(297), - [anon_sym_PERCENT_EQ] = ACTIONS(297), - [anon_sym_STAR_STAR_EQ] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(297), - [anon_sym_LT_LT_EQ] = ACTIONS(297), - [anon_sym_AMP_EQ] = ACTIONS(297), - [anon_sym_CARET_EQ] = ACTIONS(297), - [anon_sym_PIPE_EQ] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [anon_sym_PLUS_EQ] = ACTIONS(302), + [anon_sym_DASH_EQ] = ACTIONS(302), + [anon_sym_STAR_EQ] = ACTIONS(302), + [anon_sym_SLASH_EQ] = ACTIONS(302), + [anon_sym_AT_EQ] = ACTIONS(302), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(302), + [anon_sym_PERCENT_EQ] = ACTIONS(302), + [anon_sym_STAR_STAR_EQ] = ACTIONS(302), + [anon_sym_GT_GT_EQ] = ACTIONS(302), + [anon_sym_LT_LT_EQ] = ACTIONS(302), + [anon_sym_AMP_EQ] = ACTIONS(302), + [anon_sym_CARET_EQ] = ACTIONS(302), + [anon_sym_PIPE_EQ] = ACTIONS(302), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(569), + [anon_sym_await] = ACTIONS(576), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(293), - [sym__newline] = ACTIONS(293), + [sym__semicolon] = ACTIONS(298), + [sym__newline] = ACTIONS(298), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [135] = { - [sym_primary_expression] = STATE(631), - [sym_binary_operator] = STATE(589), - [sym_unary_operator] = STATE(589), - [sym_attribute] = STATE(589), - [sym_subscript] = STATE(589), - [sym_call] = STATE(589), - [sym_list] = STATE(589), - [sym_set] = STATE(589), - [sym_tuple] = STATE(589), - [sym_dictionary] = STATE(589), - [sym_list_comprehension] = STATE(589), - [sym_dictionary_comprehension] = STATE(589), - [sym_set_comprehension] = STATE(589), - [sym_generator_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string] = STATE(565), - [sym_await] = STATE(589), - [sym_identifier] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(571), - [anon_sym_RPAREN] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(260), - [anon_sym_COLON_EQ] = ACTIONS(578), - [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(580), - [anon_sym_async] = ACTIONS(576), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_RBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR_STAR] = ACTIONS(260), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_exec] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(260), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [anon_sym_SLASH_SLASH] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_CARET] = ACTIONS(260), - [anon_sym_LT_LT] = ACTIONS(260), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [anon_sym_PLUS_EQ] = ACTIONS(586), - [anon_sym_DASH_EQ] = ACTIONS(586), - [anon_sym_STAR_EQ] = ACTIONS(586), - [anon_sym_SLASH_EQ] = ACTIONS(586), - [anon_sym_AT_EQ] = ACTIONS(586), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(586), - [anon_sym_PERCENT_EQ] = ACTIONS(586), - [anon_sym_STAR_STAR_EQ] = ACTIONS(586), - [anon_sym_GT_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT_EQ] = ACTIONS(586), - [anon_sym_AMP_EQ] = ACTIONS(586), - [anon_sym_CARET_EQ] = ACTIONS(586), - [anon_sym_PIPE_EQ] = ACTIONS(586), - [sym_ellipsis] = ACTIONS(299), - [sym_integer] = ACTIONS(301), - [sym_float] = ACTIONS(299), - [anon_sym_await] = ACTIONS(588), - [sym_true] = ACTIONS(301), - [sym_false] = ACTIONS(301), - [sym_none] = ACTIONS(301), + [sym_primary_expression] = STATE(671), + [sym_binary_operator] = STATE(658), + [sym_unary_operator] = STATE(658), + [sym_attribute] = STATE(658), + [sym_subscript] = STATE(658), + [sym_call] = STATE(658), + [sym_list] = STATE(658), + [sym_set] = STATE(658), + [sym_tuple] = STATE(658), + [sym_dictionary] = STATE(658), + [sym_list_comprehension] = STATE(658), + [sym_dictionary_comprehension] = STATE(658), + [sym_set_comprehension] = STATE(658), + [sym_generator_expression] = STATE(658), + [sym_parenthesized_expression] = STATE(658), + [sym_concatenated_string] = STATE(658), + [sym_string] = STATE(573), + [sym_concatenated_template_string] = STATE(658), + [sym_template_string] = STATE(572), + [sym_await] = STATE(658), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(580), + [anon_sym_COMMA] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON_EQ] = ACTIONS(585), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(587), + [anon_sym_async] = ACTIONS(583), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(591), + [anon_sym_RBRACK] = ACTIONS(580), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_EQ] = ACTIONS(587), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [anon_sym_PLUS_EQ] = ACTIONS(593), + [anon_sym_DASH_EQ] = ACTIONS(593), + [anon_sym_STAR_EQ] = ACTIONS(593), + [anon_sym_SLASH_EQ] = ACTIONS(593), + [anon_sym_AT_EQ] = ACTIONS(593), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(593), + [anon_sym_PERCENT_EQ] = ACTIONS(593), + [anon_sym_STAR_STAR_EQ] = ACTIONS(593), + [anon_sym_GT_GT_EQ] = ACTIONS(593), + [anon_sym_LT_LT_EQ] = ACTIONS(593), + [anon_sym_AMP_EQ] = ACTIONS(593), + [anon_sym_CARET_EQ] = ACTIONS(593), + [anon_sym_PIPE_EQ] = ACTIONS(593), + [sym_ellipsis] = ACTIONS(304), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(595), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(305), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), }, [136] = { - [sym_primary_expression] = STATE(631), - [sym_binary_operator] = STATE(589), - [sym_unary_operator] = STATE(589), - [sym_attribute] = STATE(589), - [sym_subscript] = STATE(589), - [sym_call] = STATE(589), - [sym_list] = STATE(589), - [sym_set] = STATE(589), - [sym_tuple] = STATE(589), - [sym_dictionary] = STATE(589), - [sym_list_comprehension] = STATE(589), - [sym_dictionary_comprehension] = STATE(589), - [sym_set_comprehension] = STATE(589), - [sym_generator_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string] = STATE(565), - [sym_await] = STATE(589), - [sym_identifier] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(571), - [anon_sym_RPAREN] = ACTIONS(293), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(293), - [anon_sym_COLON_EQ] = ACTIONS(578), - [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(260), - [anon_sym_else] = ACTIONS(260), - [anon_sym_async] = ACTIONS(576), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(291), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_RBRACK] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_RBRACE] = ACTIONS(293), - [anon_sym_STAR_STAR] = ACTIONS(293), - [anon_sym_EQ] = ACTIONS(260), - [anon_sym_exec] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(293), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(293), - [anon_sym_SLASH_SLASH] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [sym_ellipsis] = ACTIONS(299), - [sym_type_conversion] = ACTIONS(293), - [sym_integer] = ACTIONS(301), - [sym_float] = ACTIONS(299), - [anon_sym_await] = ACTIONS(588), - [sym_true] = ACTIONS(301), - [sym_false] = ACTIONS(301), - [sym_none] = ACTIONS(301), + [sym_primary_expression] = STATE(671), + [sym_binary_operator] = STATE(658), + [sym_unary_operator] = STATE(658), + [sym_attribute] = STATE(658), + [sym_subscript] = STATE(658), + [sym_call] = STATE(658), + [sym_list] = STATE(658), + [sym_set] = STATE(658), + [sym_tuple] = STATE(658), + [sym_dictionary] = STATE(658), + [sym_list_comprehension] = STATE(658), + [sym_dictionary_comprehension] = STATE(658), + [sym_set_comprehension] = STATE(658), + [sym_generator_expression] = STATE(658), + [sym_parenthesized_expression] = STATE(658), + [sym_concatenated_string] = STATE(658), + [sym_string] = STATE(573), + [sym_concatenated_template_string] = STATE(658), + [sym_template_string] = STATE(572), + [sym_await] = STATE(658), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_COLON_EQ] = ACTIONS(585), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(265), + [anon_sym_else] = ACTIONS(265), + [anon_sym_async] = ACTIONS(583), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_LBRACK] = ACTIONS(591), + [anon_sym_RBRACK] = ACTIONS(298), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(298), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_EQ] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(298), + [anon_sym_SLASH_SLASH] = ACTIONS(298), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(304), + [sym_type_conversion] = ACTIONS(298), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(595), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(305), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), }, [137] = { - [sym_primary_expression] = STATE(629), - [sym_binary_operator] = STATE(589), - [sym_unary_operator] = STATE(589), - [sym_attribute] = STATE(589), - [sym_subscript] = STATE(589), - [sym_call] = STATE(589), - [sym_list] = STATE(589), - [sym_set] = STATE(589), - [sym_tuple] = STATE(589), - [sym_dictionary] = STATE(589), - [sym_list_comprehension] = STATE(589), - [sym_dictionary_comprehension] = STATE(589), - [sym_set_comprehension] = STATE(589), - [sym_generator_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string] = STATE(565), - [sym_await] = STATE(589), - [sym_identifier] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(590), - [anon_sym_RPAREN] = ACTIONS(293), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_as] = ACTIONS(260), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(293), - [anon_sym_COLON_EQ] = ACTIONS(592), - [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(260), - [anon_sym_async] = ACTIONS(576), - [anon_sym_for] = ACTIONS(260), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_RBRACK] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_RBRACE] = ACTIONS(293), - [anon_sym_STAR_STAR] = ACTIONS(293), - [anon_sym_exec] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(293), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(293), - [anon_sym_SLASH_SLASH] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [sym_ellipsis] = ACTIONS(299), - [sym_integer] = ACTIONS(301), - [sym_float] = ACTIONS(299), - [anon_sym_await] = ACTIONS(598), - [sym_true] = ACTIONS(301), - [sym_false] = ACTIONS(301), - [sym_none] = ACTIONS(301), + [sym_primary_expression] = STATE(671), + [sym_binary_operator] = STATE(658), + [sym_unary_operator] = STATE(658), + [sym_attribute] = STATE(658), + [sym_subscript] = STATE(658), + [sym_call] = STATE(658), + [sym_list] = STATE(658), + [sym_set] = STATE(658), + [sym_tuple] = STATE(658), + [sym_dictionary] = STATE(658), + [sym_list_comprehension] = STATE(658), + [sym_dictionary_comprehension] = STATE(658), + [sym_set_comprehension] = STATE(658), + [sym_generator_expression] = STATE(658), + [sym_parenthesized_expression] = STATE(658), + [sym_concatenated_string] = STATE(658), + [sym_string] = STATE(573), + [sym_concatenated_template_string] = STATE(658), + [sym_template_string] = STATE(572), + [sym_await] = STATE(658), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_else] = ACTIONS(265), + [anon_sym_async] = ACTIONS(583), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_LBRACK] = ACTIONS(591), + [anon_sym_RBRACK] = ACTIONS(298), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(298), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_EQ] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(298), + [anon_sym_SLASH_SLASH] = ACTIONS(298), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(304), + [sym_type_conversion] = ACTIONS(298), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(595), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(305), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), }, [138] = { - [sym_primary_expression] = STATE(631), - [sym_binary_operator] = STATE(589), - [sym_unary_operator] = STATE(589), - [sym_attribute] = STATE(589), - [sym_subscript] = STATE(589), - [sym_call] = STATE(589), - [sym_list] = STATE(589), - [sym_set] = STATE(589), - [sym_tuple] = STATE(589), - [sym_dictionary] = STATE(589), - [sym_list_comprehension] = STATE(589), - [sym_dictionary_comprehension] = STATE(589), - [sym_set_comprehension] = STATE(589), - [sym_generator_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string] = STATE(565), - [sym_await] = STATE(589), - [sym_identifier] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(571), - [anon_sym_RPAREN] = ACTIONS(293), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(293), - [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(293), - [anon_sym_else] = ACTIONS(260), - [anon_sym_async] = ACTIONS(576), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(291), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_RBRACK] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_RBRACE] = ACTIONS(293), - [anon_sym_STAR_STAR] = ACTIONS(293), - [anon_sym_EQ] = ACTIONS(260), - [anon_sym_exec] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(293), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(293), - [anon_sym_SLASH_SLASH] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [sym_ellipsis] = ACTIONS(299), - [sym_type_conversion] = ACTIONS(293), - [sym_integer] = ACTIONS(301), - [sym_float] = ACTIONS(299), - [anon_sym_await] = ACTIONS(588), - [sym_true] = ACTIONS(301), - [sym_false] = ACTIONS(301), - [sym_none] = ACTIONS(301), + [sym_primary_expression] = STATE(666), + [sym_binary_operator] = STATE(658), + [sym_unary_operator] = STATE(658), + [sym_attribute] = STATE(658), + [sym_subscript] = STATE(658), + [sym_call] = STATE(658), + [sym_list] = STATE(658), + [sym_set] = STATE(658), + [sym_tuple] = STATE(658), + [sym_dictionary] = STATE(658), + [sym_list_comprehension] = STATE(658), + [sym_dictionary_comprehension] = STATE(658), + [sym_set_comprehension] = STATE(658), + [sym_generator_expression] = STATE(658), + [sym_parenthesized_expression] = STATE(658), + [sym_concatenated_string] = STATE(658), + [sym_string] = STATE(573), + [sym_concatenated_template_string] = STATE(658), + [sym_template_string] = STATE(572), + [sym_await] = STATE(658), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_RPAREN] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_as] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_COLON_EQ] = ACTIONS(599), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(265), + [anon_sym_async] = ACTIONS(583), + [anon_sym_for] = ACTIONS(265), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_RBRACK] = ACTIONS(298), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(298), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(298), + [anon_sym_SLASH_SLASH] = ACTIONS(298), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(304), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(605), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(305), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), }, [139] = { - [sym_primary_expression] = STATE(629), - [sym_binary_operator] = STATE(589), - [sym_unary_operator] = STATE(589), - [sym_attribute] = STATE(589), - [sym_subscript] = STATE(589), - [sym_call] = STATE(589), - [sym_list] = STATE(589), - [sym_set] = STATE(589), - [sym_tuple] = STATE(589), - [sym_dictionary] = STATE(589), - [sym_list_comprehension] = STATE(589), - [sym_dictionary_comprehension] = STATE(589), - [sym_set_comprehension] = STATE(589), - [sym_generator_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string] = STATE(565), - [sym_await] = STATE(589), - [sym_identifier] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(590), - [anon_sym_RPAREN] = ACTIONS(293), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_as] = ACTIONS(260), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(293), - [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(293), - [anon_sym_async] = ACTIONS(576), - [anon_sym_for] = ACTIONS(260), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_RBRACK] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_RBRACE] = ACTIONS(293), - [anon_sym_STAR_STAR] = ACTIONS(293), - [anon_sym_exec] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(293), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(293), - [anon_sym_SLASH_SLASH] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [sym_ellipsis] = ACTIONS(299), - [sym_integer] = ACTIONS(301), - [sym_float] = ACTIONS(299), - [anon_sym_await] = ACTIONS(598), - [sym_true] = ACTIONS(301), - [sym_false] = ACTIONS(301), - [sym_none] = ACTIONS(301), + [sym_primary_expression] = STATE(666), + [sym_binary_operator] = STATE(658), + [sym_unary_operator] = STATE(658), + [sym_attribute] = STATE(658), + [sym_subscript] = STATE(658), + [sym_call] = STATE(658), + [sym_list] = STATE(658), + [sym_set] = STATE(658), + [sym_tuple] = STATE(658), + [sym_dictionary] = STATE(658), + [sym_list_comprehension] = STATE(658), + [sym_dictionary_comprehension] = STATE(658), + [sym_set_comprehension] = STATE(658), + [sym_generator_expression] = STATE(658), + [sym_parenthesized_expression] = STATE(658), + [sym_concatenated_string] = STATE(658), + [sym_string] = STATE(573), + [sym_concatenated_template_string] = STATE(658), + [sym_template_string] = STATE(572), + [sym_await] = STATE(658), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_RPAREN] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_as] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_async] = ACTIONS(583), + [anon_sym_for] = ACTIONS(265), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_RBRACK] = ACTIONS(298), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(298), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(298), + [anon_sym_SLASH_SLASH] = ACTIONS(298), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(304), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(605), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(305), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), }, [140] = { - [sym_primary_expression] = STATE(631), - [sym_binary_operator] = STATE(589), - [sym_unary_operator] = STATE(589), - [sym_attribute] = STATE(589), - [sym_subscript] = STATE(589), - [sym_call] = STATE(589), - [sym_list] = STATE(589), - [sym_set] = STATE(589), - [sym_tuple] = STATE(589), - [sym_dictionary] = STATE(589), - [sym_list_comprehension] = STATE(589), - [sym_dictionary_comprehension] = STATE(589), - [sym_set_comprehension] = STATE(589), - [sym_generator_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string] = STATE(565), - [sym_await] = STATE(589), - [sym_identifier] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(571), - [anon_sym_RPAREN] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_async] = ACTIONS(576), - [anon_sym_in] = ACTIONS(580), - [anon_sym_match] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_RBRACK] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR_STAR] = ACTIONS(260), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_exec] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [anon_sym_SLASH_SLASH] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_CARET] = ACTIONS(260), - [anon_sym_LT_LT] = ACTIONS(260), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_PLUS_EQ] = ACTIONS(586), - [anon_sym_DASH_EQ] = ACTIONS(586), - [anon_sym_STAR_EQ] = ACTIONS(586), - [anon_sym_SLASH_EQ] = ACTIONS(586), - [anon_sym_AT_EQ] = ACTIONS(586), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(586), - [anon_sym_PERCENT_EQ] = ACTIONS(586), - [anon_sym_STAR_STAR_EQ] = ACTIONS(586), - [anon_sym_GT_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT_EQ] = ACTIONS(586), - [anon_sym_AMP_EQ] = ACTIONS(586), - [anon_sym_CARET_EQ] = ACTIONS(586), - [anon_sym_PIPE_EQ] = ACTIONS(586), - [sym_ellipsis] = ACTIONS(299), - [sym_integer] = ACTIONS(301), - [sym_float] = ACTIONS(299), - [anon_sym_await] = ACTIONS(588), - [sym_true] = ACTIONS(301), - [sym_false] = ACTIONS(301), - [sym_none] = ACTIONS(301), + [sym_primary_expression] = STATE(671), + [sym_binary_operator] = STATE(658), + [sym_unary_operator] = STATE(658), + [sym_attribute] = STATE(658), + [sym_subscript] = STATE(658), + [sym_call] = STATE(658), + [sym_list] = STATE(658), + [sym_set] = STATE(658), + [sym_tuple] = STATE(658), + [sym_dictionary] = STATE(658), + [sym_list_comprehension] = STATE(658), + [sym_dictionary_comprehension] = STATE(658), + [sym_set_comprehension] = STATE(658), + [sym_generator_expression] = STATE(658), + [sym_parenthesized_expression] = STATE(658), + [sym_concatenated_string] = STATE(658), + [sym_string] = STATE(573), + [sym_concatenated_template_string] = STATE(658), + [sym_template_string] = STATE(572), + [sym_await] = STATE(658), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(302), + [anon_sym_async] = ACTIONS(583), + [anon_sym_in] = ACTIONS(280), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(591), + [anon_sym_RBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_EQ] = ACTIONS(302), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_PLUS_EQ] = ACTIONS(302), + [anon_sym_DASH_EQ] = ACTIONS(302), + [anon_sym_STAR_EQ] = ACTIONS(302), + [anon_sym_SLASH_EQ] = ACTIONS(302), + [anon_sym_AT_EQ] = ACTIONS(302), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(302), + [anon_sym_PERCENT_EQ] = ACTIONS(302), + [anon_sym_STAR_STAR_EQ] = ACTIONS(302), + [anon_sym_GT_GT_EQ] = ACTIONS(302), + [anon_sym_LT_LT_EQ] = ACTIONS(302), + [anon_sym_AMP_EQ] = ACTIONS(302), + [anon_sym_CARET_EQ] = ACTIONS(302), + [anon_sym_PIPE_EQ] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(304), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(595), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(305), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), }, [141] = { - [sym_primary_expression] = STATE(631), - [sym_binary_operator] = STATE(589), - [sym_unary_operator] = STATE(589), - [sym_attribute] = STATE(589), - [sym_subscript] = STATE(589), - [sym_call] = STATE(589), - [sym_list] = STATE(589), - [sym_set] = STATE(589), - [sym_tuple] = STATE(589), - [sym_dictionary] = STATE(589), - [sym_list_comprehension] = STATE(589), - [sym_dictionary_comprehension] = STATE(589), - [sym_set_comprehension] = STATE(589), - [sym_generator_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string] = STATE(565), - [sym_await] = STATE(589), - [sym_identifier] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(571), - [anon_sym_RPAREN] = ACTIONS(297), - [anon_sym_COMMA] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(297), - [anon_sym_async] = ACTIONS(576), - [anon_sym_in] = ACTIONS(275), - [anon_sym_match] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_RBRACK] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR_STAR] = ACTIONS(260), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_exec] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [anon_sym_SLASH_SLASH] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_CARET] = ACTIONS(260), - [anon_sym_LT_LT] = ACTIONS(260), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_PLUS_EQ] = ACTIONS(297), - [anon_sym_DASH_EQ] = ACTIONS(297), - [anon_sym_STAR_EQ] = ACTIONS(297), - [anon_sym_SLASH_EQ] = ACTIONS(297), - [anon_sym_AT_EQ] = ACTIONS(297), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(297), - [anon_sym_PERCENT_EQ] = ACTIONS(297), - [anon_sym_STAR_STAR_EQ] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(297), - [anon_sym_LT_LT_EQ] = ACTIONS(297), - [anon_sym_AMP_EQ] = ACTIONS(297), - [anon_sym_CARET_EQ] = ACTIONS(297), - [anon_sym_PIPE_EQ] = ACTIONS(297), - [sym_ellipsis] = ACTIONS(299), - [sym_integer] = ACTIONS(301), - [sym_float] = ACTIONS(299), - [anon_sym_await] = ACTIONS(588), - [sym_true] = ACTIONS(301), - [sym_false] = ACTIONS(301), - [sym_none] = ACTIONS(301), - [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(305), - }, - [142] = { - [sym_primary_expression] = STATE(709), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_attribute] = STATE(773), - [sym_subscript] = STATE(773), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_primary_expression] = STATE(715), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_attribute] = STATE(795), + [sym_subscript] = STATE(795), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(77), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_from] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(561), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(293), - [anon_sym_COLON_EQ] = ACTIONS(273), - [anon_sym_if] = ACTIONS(260), - [anon_sym_async] = ACTIONS(563), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_from] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(570), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_COLON_EQ] = ACTIONS(278), + [anon_sym_if] = ACTIONS(265), + [anon_sym_async] = ACTIONS(570), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(298), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(574), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(293), - [anon_sym_EQ] = ACTIONS(260), - [anon_sym_exec] = ACTIONS(563), - [anon_sym_type] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(293), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(293), - [anon_sym_SLASH_SLASH] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LT_LT] = ACTIONS(293), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_EQ] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(570), + [anon_sym_type] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(298), + [anon_sym_SLASH_SLASH] = ACTIONS(298), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(298), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(569), + [anon_sym_await] = ACTIONS(576), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(293), - [sym__newline] = ACTIONS(293), + [sym__semicolon] = ACTIONS(298), + [sym__newline] = ACTIONS(298), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [143] = { - [sym_primary_expression] = STATE(727), - [sym_binary_operator] = STATE(796), - [sym_unary_operator] = STATE(796), - [sym_attribute] = STATE(796), - [sym_subscript] = STATE(796), - [sym_call] = STATE(796), - [sym_list] = STATE(796), - [sym_set] = STATE(796), - [sym_tuple] = STATE(796), - [sym_dictionary] = STATE(796), - [sym_list_comprehension] = STATE(796), - [sym_dictionary_comprehension] = STATE(796), - [sym_set_comprehension] = STATE(796), - [sym_generator_expression] = STATE(796), - [sym_parenthesized_expression] = STATE(796), - [sym_concatenated_string] = STATE(796), - [sym_string] = STATE(699), - [sym_await] = STATE(796), - [sym_identifier] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(602), - [anon_sym_RPAREN] = ACTIONS(293), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_as] = ACTIONS(260), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(604), - [anon_sym_GT_GT] = ACTIONS(293), - [anon_sym_COLON_EQ] = ACTIONS(606), - [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(260), - [anon_sym_async] = ACTIONS(604), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(604), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(608), - [anon_sym_LBRACK] = ACTIONS(610), - [anon_sym_LBRACE] = ACTIONS(612), - [anon_sym_STAR_STAR] = ACTIONS(293), - [anon_sym_exec] = ACTIONS(604), - [anon_sym_type] = ACTIONS(604), - [anon_sym_AT] = ACTIONS(293), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(293), - [anon_sym_SLASH_SLASH] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [sym_ellipsis] = ACTIONS(614), - [sym_integer] = ACTIONS(600), - [sym_float] = ACTIONS(614), - [anon_sym_await] = ACTIONS(616), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_none] = ACTIONS(600), - [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(618), - }, - [144] = { - [sym_primary_expression] = STATE(629), - [sym_binary_operator] = STATE(589), - [sym_unary_operator] = STATE(589), - [sym_attribute] = STATE(589), - [sym_subscript] = STATE(589), - [sym_call] = STATE(589), - [sym_list] = STATE(589), - [sym_set] = STATE(589), - [sym_tuple] = STATE(589), - [sym_dictionary] = STATE(589), - [sym_list_comprehension] = STATE(589), - [sym_dictionary_comprehension] = STATE(589), - [sym_set_comprehension] = STATE(589), - [sym_generator_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string] = STATE(565), - [sym_await] = STATE(589), - [sym_identifier] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(590), - [anon_sym_RPAREN] = ACTIONS(265), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(293), - [anon_sym_COLON_EQ] = ACTIONS(592), - [anon_sym_if] = ACTIONS(260), - [anon_sym_async] = ACTIONS(576), - [anon_sym_for] = ACTIONS(260), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_RBRACK] = ACTIONS(265), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR_STAR] = ACTIONS(293), - [anon_sym_exec] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(293), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(293), - [anon_sym_SLASH_SLASH] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [sym_ellipsis] = ACTIONS(299), - [sym_integer] = ACTIONS(301), - [sym_float] = ACTIONS(299), - [anon_sym_await] = ACTIONS(598), - [sym_true] = ACTIONS(301), - [sym_false] = ACTIONS(301), - [sym_none] = ACTIONS(301), + [142] = { + [sym_primary_expression] = STATE(671), + [sym_binary_operator] = STATE(658), + [sym_unary_operator] = STATE(658), + [sym_attribute] = STATE(658), + [sym_subscript] = STATE(658), + [sym_call] = STATE(658), + [sym_list] = STATE(658), + [sym_set] = STATE(658), + [sym_tuple] = STATE(658), + [sym_dictionary] = STATE(658), + [sym_list_comprehension] = STATE(658), + [sym_dictionary_comprehension] = STATE(658), + [sym_set_comprehension] = STATE(658), + [sym_generator_expression] = STATE(658), + [sym_parenthesized_expression] = STATE(658), + [sym_concatenated_string] = STATE(658), + [sym_string] = STATE(573), + [sym_concatenated_template_string] = STATE(658), + [sym_template_string] = STATE(572), + [sym_await] = STATE(658), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_COMMA] = ACTIONS(593), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(593), + [anon_sym_async] = ACTIONS(583), + [anon_sym_in] = ACTIONS(587), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(591), + [anon_sym_RBRACK] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_EQ] = ACTIONS(593), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_PLUS_EQ] = ACTIONS(593), + [anon_sym_DASH_EQ] = ACTIONS(593), + [anon_sym_STAR_EQ] = ACTIONS(593), + [anon_sym_SLASH_EQ] = ACTIONS(593), + [anon_sym_AT_EQ] = ACTIONS(593), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(593), + [anon_sym_PERCENT_EQ] = ACTIONS(593), + [anon_sym_STAR_STAR_EQ] = ACTIONS(593), + [anon_sym_GT_GT_EQ] = ACTIONS(593), + [anon_sym_LT_LT_EQ] = ACTIONS(593), + [anon_sym_AMP_EQ] = ACTIONS(593), + [anon_sym_CARET_EQ] = ACTIONS(593), + [anon_sym_PIPE_EQ] = ACTIONS(593), + [sym_ellipsis] = ACTIONS(304), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(595), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(305), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), }, - [145] = { - [sym_primary_expression] = STATE(709), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_attribute] = STATE(773), - [sym_subscript] = STATE(773), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [143] = { + [sym_primary_expression] = STATE(715), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_attribute] = STATE(795), + [sym_subscript] = STATE(795), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), [sym_identifier] = ACTIONS(77), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_from] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(561), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(293), - [anon_sym_if] = ACTIONS(260), - [anon_sym_async] = ACTIONS(563), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_from] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(570), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_if] = ACTIONS(265), + [anon_sym_async] = ACTIONS(570), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(298), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(574), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(293), - [anon_sym_EQ] = ACTIONS(260), - [anon_sym_exec] = ACTIONS(563), - [anon_sym_type] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(293), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(293), - [anon_sym_SLASH_SLASH] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LT_LT] = ACTIONS(293), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_EQ] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(570), + [anon_sym_type] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(298), + [anon_sym_SLASH_SLASH] = ACTIONS(298), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(298), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(569), + [anon_sym_await] = ACTIONS(576), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(293), - [sym__newline] = ACTIONS(293), + [sym__semicolon] = ACTIONS(298), + [sym__newline] = ACTIONS(298), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), + }, + [144] = { + [sym_primary_expression] = STATE(666), + [sym_binary_operator] = STATE(658), + [sym_unary_operator] = STATE(658), + [sym_attribute] = STATE(658), + [sym_subscript] = STATE(658), + [sym_call] = STATE(658), + [sym_list] = STATE(658), + [sym_set] = STATE(658), + [sym_tuple] = STATE(658), + [sym_dictionary] = STATE(658), + [sym_list_comprehension] = STATE(658), + [sym_dictionary_comprehension] = STATE(658), + [sym_set_comprehension] = STATE(658), + [sym_generator_expression] = STATE(658), + [sym_parenthesized_expression] = STATE(658), + [sym_concatenated_string] = STATE(658), + [sym_string] = STATE(573), + [sym_concatenated_template_string] = STATE(658), + [sym_template_string] = STATE(572), + [sym_await] = STATE(658), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_RPAREN] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_COLON_EQ] = ACTIONS(599), + [anon_sym_if] = ACTIONS(265), + [anon_sym_async] = ACTIONS(583), + [anon_sym_for] = ACTIONS(265), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_EQ] = ACTIONS(607), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(298), + [anon_sym_SLASH_SLASH] = ACTIONS(298), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(304), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(605), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), + }, + [145] = { + [sym_primary_expression] = STATE(723), + [sym_binary_operator] = STATE(805), + [sym_unary_operator] = STATE(805), + [sym_attribute] = STATE(805), + [sym_subscript] = STATE(805), + [sym_call] = STATE(805), + [sym_list] = STATE(805), + [sym_set] = STATE(805), + [sym_tuple] = STATE(805), + [sym_dictionary] = STATE(805), + [sym_list_comprehension] = STATE(805), + [sym_dictionary_comprehension] = STATE(805), + [sym_set_comprehension] = STATE(805), + [sym_generator_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_concatenated_string] = STATE(805), + [sym_string] = STATE(706), + [sym_concatenated_template_string] = STATE(805), + [sym_template_string] = STATE(704), + [sym_await] = STATE(805), + [sym_identifier] = ACTIONS(609), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_RPAREN] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_as] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(613), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_COLON_EQ] = ACTIONS(615), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(265), + [anon_sym_async] = ACTIONS(613), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_exec] = ACTIONS(613), + [anon_sym_type] = ACTIONS(613), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(298), + [anon_sym_SLASH_SLASH] = ACTIONS(298), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(623), + [sym_integer] = ACTIONS(609), + [sym_float] = ACTIONS(623), + [anon_sym_await] = ACTIONS(625), + [sym_true] = ACTIONS(609), + [sym_false] = ACTIONS(609), + [sym_none] = ACTIONS(609), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(627), + [sym__template_string_start] = ACTIONS(629), }, [146] = { - [sym_primary_expression] = STATE(629), - [sym_binary_operator] = STATE(589), - [sym_unary_operator] = STATE(589), - [sym_attribute] = STATE(589), - [sym_subscript] = STATE(589), - [sym_call] = STATE(589), - [sym_list] = STATE(589), - [sym_set] = STATE(589), - [sym_tuple] = STATE(589), - [sym_dictionary] = STATE(589), - [sym_list_comprehension] = STATE(589), - [sym_dictionary_comprehension] = STATE(589), - [sym_set_comprehension] = STATE(589), - [sym_generator_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string] = STATE(565), - [sym_await] = STATE(589), - [sym_identifier] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(590), - [anon_sym_RPAREN] = ACTIONS(293), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(293), - [anon_sym_COLON_EQ] = ACTIONS(592), - [anon_sym_if] = ACTIONS(260), - [anon_sym_async] = ACTIONS(576), - [anon_sym_for] = ACTIONS(260), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR_STAR] = ACTIONS(293), - [anon_sym_EQ] = ACTIONS(620), - [anon_sym_exec] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(293), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(293), - [anon_sym_SLASH_SLASH] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [sym_ellipsis] = ACTIONS(299), - [sym_integer] = ACTIONS(301), - [sym_float] = ACTIONS(299), - [anon_sym_await] = ACTIONS(598), - [sym_true] = ACTIONS(301), - [sym_false] = ACTIONS(301), - [sym_none] = ACTIONS(301), + [sym_primary_expression] = STATE(666), + [sym_binary_operator] = STATE(658), + [sym_unary_operator] = STATE(658), + [sym_attribute] = STATE(658), + [sym_subscript] = STATE(658), + [sym_call] = STATE(658), + [sym_list] = STATE(658), + [sym_set] = STATE(658), + [sym_tuple] = STATE(658), + [sym_dictionary] = STATE(658), + [sym_list_comprehension] = STATE(658), + [sym_dictionary_comprehension] = STATE(658), + [sym_set_comprehension] = STATE(658), + [sym_generator_expression] = STATE(658), + [sym_parenthesized_expression] = STATE(658), + [sym_concatenated_string] = STATE(658), + [sym_string] = STATE(573), + [sym_concatenated_template_string] = STATE(658), + [sym_template_string] = STATE(572), + [sym_await] = STATE(658), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_RPAREN] = ACTIONS(270), + [anon_sym_COMMA] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_COLON_EQ] = ACTIONS(599), + [anon_sym_if] = ACTIONS(265), + [anon_sym_async] = ACTIONS(583), + [anon_sym_for] = ACTIONS(265), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_RBRACK] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(298), + [anon_sym_SLASH_SLASH] = ACTIONS(298), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(304), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(605), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(305), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), }, [147] = { - [sym_primary_expression] = STATE(727), - [sym_binary_operator] = STATE(796), - [sym_unary_operator] = STATE(796), - [sym_attribute] = STATE(796), - [sym_subscript] = STATE(796), - [sym_call] = STATE(796), - [sym_list] = STATE(796), - [sym_set] = STATE(796), - [sym_tuple] = STATE(796), - [sym_dictionary] = STATE(796), - [sym_list_comprehension] = STATE(796), - [sym_dictionary_comprehension] = STATE(796), - [sym_set_comprehension] = STATE(796), - [sym_generator_expression] = STATE(796), - [sym_parenthesized_expression] = STATE(796), - [sym_concatenated_string] = STATE(796), - [sym_string] = STATE(699), - [sym_await] = STATE(796), - [sym_identifier] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(602), - [anon_sym_RPAREN] = ACTIONS(293), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_as] = ACTIONS(260), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(604), - [anon_sym_GT_GT] = ACTIONS(293), - [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(293), - [anon_sym_async] = ACTIONS(604), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(604), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(608), - [anon_sym_LBRACK] = ACTIONS(610), - [anon_sym_LBRACE] = ACTIONS(612), - [anon_sym_STAR_STAR] = ACTIONS(293), - [anon_sym_exec] = ACTIONS(604), - [anon_sym_type] = ACTIONS(604), - [anon_sym_AT] = ACTIONS(293), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(293), - [anon_sym_SLASH_SLASH] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [sym_ellipsis] = ACTIONS(614), - [sym_integer] = ACTIONS(600), - [sym_float] = ACTIONS(614), - [anon_sym_await] = ACTIONS(616), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_none] = ACTIONS(600), + [sym_primary_expression] = STATE(723), + [sym_binary_operator] = STATE(805), + [sym_unary_operator] = STATE(805), + [sym_attribute] = STATE(805), + [sym_subscript] = STATE(805), + [sym_call] = STATE(805), + [sym_list] = STATE(805), + [sym_set] = STATE(805), + [sym_tuple] = STATE(805), + [sym_dictionary] = STATE(805), + [sym_list_comprehension] = STATE(805), + [sym_dictionary_comprehension] = STATE(805), + [sym_set_comprehension] = STATE(805), + [sym_generator_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_concatenated_string] = STATE(805), + [sym_string] = STATE(706), + [sym_concatenated_template_string] = STATE(805), + [sym_template_string] = STATE(704), + [sym_await] = STATE(805), + [sym_identifier] = ACTIONS(609), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_RPAREN] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_as] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(613), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_async] = ACTIONS(613), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_exec] = ACTIONS(613), + [anon_sym_type] = ACTIONS(613), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(298), + [anon_sym_SLASH_SLASH] = ACTIONS(298), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(623), + [sym_integer] = ACTIONS(609), + [sym_float] = ACTIONS(623), + [anon_sym_await] = ACTIONS(625), + [sym_true] = ACTIONS(609), + [sym_false] = ACTIONS(609), + [sym_none] = ACTIONS(609), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(618), + [sym__string_start] = ACTIONS(627), + [sym__template_string_start] = ACTIONS(629), }, [148] = { - [sym_primary_expression] = STATE(631), - [sym_binary_operator] = STATE(589), - [sym_unary_operator] = STATE(589), - [sym_attribute] = STATE(589), - [sym_subscript] = STATE(589), - [sym_call] = STATE(589), - [sym_list] = STATE(589), - [sym_set] = STATE(589), - [sym_tuple] = STATE(589), - [sym_dictionary] = STATE(589), - [sym_list_comprehension] = STATE(589), - [sym_dictionary_comprehension] = STATE(589), - [sym_set_comprehension] = STATE(589), - [sym_generator_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string] = STATE(565), - [sym_await] = STATE(589), - [sym_identifier] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(571), - [anon_sym_RPAREN] = ACTIONS(293), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(293), - [anon_sym_COLON_EQ] = ACTIONS(578), - [anon_sym_if] = ACTIONS(260), - [anon_sym_async] = ACTIONS(576), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(291), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR_STAR] = ACTIONS(293), - [anon_sym_EQ] = ACTIONS(620), - [anon_sym_exec] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(293), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(293), - [anon_sym_SLASH_SLASH] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [sym_ellipsis] = ACTIONS(299), - [sym_integer] = ACTIONS(301), - [sym_float] = ACTIONS(299), - [anon_sym_await] = ACTIONS(588), - [sym_true] = ACTIONS(301), - [sym_false] = ACTIONS(301), - [sym_none] = ACTIONS(301), + [sym_primary_expression] = STATE(671), + [sym_binary_operator] = STATE(658), + [sym_unary_operator] = STATE(658), + [sym_attribute] = STATE(658), + [sym_subscript] = STATE(658), + [sym_call] = STATE(658), + [sym_list] = STATE(658), + [sym_set] = STATE(658), + [sym_tuple] = STATE(658), + [sym_dictionary] = STATE(658), + [sym_list_comprehension] = STATE(658), + [sym_dictionary_comprehension] = STATE(658), + [sym_set_comprehension] = STATE(658), + [sym_generator_expression] = STATE(658), + [sym_parenthesized_expression] = STATE(658), + [sym_concatenated_string] = STATE(658), + [sym_string] = STATE(573), + [sym_concatenated_template_string] = STATE(658), + [sym_template_string] = STATE(572), + [sym_await] = STATE(658), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_COLON_EQ] = ACTIONS(585), + [anon_sym_if] = ACTIONS(265), + [anon_sym_async] = ACTIONS(583), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_LBRACK] = ACTIONS(591), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_EQ] = ACTIONS(607), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(298), + [anon_sym_SLASH_SLASH] = ACTIONS(298), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(304), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(595), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(305), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), + }, + [149] = { + [sym_named_expression] = STATE(977), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_expression_list] = STATE(1340), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(991), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1340), + [sym_augmented_assignment] = STATE(1340), + [sym_pattern_list] = STATE(874), + [sym__right_hand_side] = STATE(1340), + [sym_yield] = STATE(1340), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(314), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(314), + [anon_sym_type] = ACTIONS(314), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), + }, + [150] = { + [sym_named_expression] = STATE(977), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_expression_list] = STATE(1311), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(991), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1311), + [sym_augmented_assignment] = STATE(1311), + [sym_pattern_list] = STATE(874), + [sym__right_hand_side] = STATE(1311), + [sym_yield] = STATE(1311), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(314), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(314), + [anon_sym_type] = ACTIONS(314), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), + }, + [151] = { + [sym_named_expression] = STATE(977), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_expression_list] = STATE(1309), + [sym_pattern] = STATE(864), + [sym_tuple_pattern] = STATE(855), + [sym_list_pattern] = STATE(855), + [sym_list_splat_pattern] = STATE(855), + [sym_expression] = STATE(991), + [sym_primary_expression] = STATE(697), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(977), + [sym_lambda] = STATE(977), + [sym_assignment] = STATE(1309), + [sym_augmented_assignment] = STATE(1309), + [sym_pattern_list] = STATE(874), + [sym__right_hand_side] = STATE(1309), + [sym_yield] = STATE(1309), + [sym_attribute] = STATE(463), + [sym_subscript] = STATE(463), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(977), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(795), + [sym_template_string] = STATE(699), + [sym_await] = STATE(795), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(314), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(314), + [anon_sym_type] = ACTIONS(314), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 27, + [0] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7), 1, - sym_identifier, - ACTIONS(13), 1, - anon_sym_LPAREN, - ACTIONS(15), 1, - anon_sym_STAR, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_LBRACE, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(73), 1, - anon_sym_yield, - ACTIONS(79), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(81), 1, + ACTIONS(310), 1, sym__string_start, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(631), 1, + anon_sym_from, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, + anon_sym_not, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(847), 1, - sym_pattern, - STATE(855), 1, - sym_pattern_list, - STATE(1004), 1, + STATE(634), 1, + sym_primary_expression, + STATE(885), 1, sym_expression, - ACTIONS(75), 2, + STATE(1023), 1, + sym_expression_list, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(431), 2, - sym_attribute, - sym_subscript, - STATE(1283), 2, + STATE(1365), 2, sym_list_splat, sym_dictionary_splat, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(307), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1341), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(940), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 14, + ACTIONS(633), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + STATE(658), 17, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -24367,84 +23501,87 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [118] = 27, + [117] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(639), 1, sym_identifier, - ACTIONS(13), 1, + ACTIONS(641), 1, anon_sym_LPAREN, - ACTIONS(15), 1, + ACTIONS(643), 1, + anon_sym_RPAREN, + ACTIONS(645), 1, anon_sym_STAR, - ACTIONS(49), 1, + ACTIONS(649), 1, anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(69), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(79), 1, + ACTIONS(657), 1, anon_sym_await, - ACTIONS(81), 1, - sym__string_start, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(847), 1, - sym_pattern, - STATE(855), 1, - sym_pattern_list, - STATE(1004), 1, + STATE(648), 1, + sym_primary_expression, + STATE(932), 1, sym_expression, - ACTIONS(75), 2, + STATE(1123), 1, + sym_pattern, + STATE(1220), 1, + sym_yield, + STATE(1409), 1, + sym__collection_elements, + STATE(1410), 1, + sym__patterns, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(431), 2, + STATE(769), 2, sym_attribute, sym_subscript, - STATE(1283), 2, + STATE(1098), 2, sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, + sym_parenthesized_list_splat, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(833), 3, + STATE(855), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(307), 5, + ACTIONS(647), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1342), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(940), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 14, + STATE(658), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -24458,84 +23595,80 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [236] = 27, + [241] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(296), 1, + anon_sym_TILDE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(659), 1, sym_identifier, - ACTIONS(13), 1, + ACTIONS(661), 1, anon_sym_LPAREN, - ACTIONS(15), 1, + ACTIONS(663), 1, anon_sym_STAR, - ACTIONS(49), 1, + ACTIONS(669), 1, + anon_sym_in, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(73), 1, - anon_sym_yield, - ACTIONS(79), 1, + ACTIONS(673), 1, anon_sym_await, - ACTIONS(81), 1, - sym__string_start, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(847), 1, + STATE(849), 1, sym_pattern, - STATE(855), 1, - sym_pattern_list, - STATE(1004), 1, - sym_expression, - ACTIONS(75), 2, + STATE(861), 1, + sym_primary_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(431), 2, - sym_attribute, - sym_subscript, - STATE(1283), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, + ACTIONS(589), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - STATE(833), 3, + STATE(742), 2, + sym_attribute, + sym_subscript, + STATE(855), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(307), 5, + ACTIONS(665), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1304), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(940), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(773), 14, + ACTIONS(667), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + STATE(658), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -24549,81 +23682,89 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [354] = 24, + [351] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(639), 1, + sym_identifier, + ACTIONS(641), 1, anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(622), 1, - anon_sym_from, - ACTIONS(626), 1, + ACTIONS(645), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(649), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, anon_sym_not, - STATE(565), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(657), 1, + anon_sym_await, + ACTIONS(675), 1, + anon_sym_RPAREN, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(648), 1, sym_primary_expression, - STATE(870), 1, + STATE(928), 1, sym_expression, - STATE(1000), 1, - sym_expression_list, - ACTIONS(299), 2, + STATE(1123), 1, + sym_pattern, + STATE(1224), 1, + sym_yield, + STATE(1403), 1, + sym__collection_elements, + STATE(1410), 1, + sym__patterns, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1284), 2, + STATE(769), 2, + sym_attribute, + sym_subscript, + STATE(1098), 2, sym_list_splat, - sym_dictionary_splat, - ACTIONS(291), 3, + sym_parenthesized_list_splat, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + STATE(855), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(647), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - ACTIONS(624), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - STATE(589), 16, + STATE(658), 15, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -24635,82 +23776,86 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [464] = 28, + [475] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(630), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(639), 1, sym_identifier, - ACTIONS(632), 1, + ACTIONS(641), 1, anon_sym_LPAREN, - ACTIONS(634), 1, - anon_sym_RPAREN, - ACTIONS(636), 1, + ACTIONS(645), 1, anon_sym_STAR, - ACTIONS(640), 1, + ACTIONS(649), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(646), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(648), 1, + ACTIONS(657), 1, anon_sym_await, - STATE(565), 1, + ACTIONS(677), 1, + anon_sym_RBRACK, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(648), 1, sym_primary_expression, - STATE(900), 1, + STATE(916), 1, sym_expression, - STATE(1120), 1, + STATE(1123), 1, sym_pattern, - STATE(1156), 1, - sym_yield, - STATE(1395), 1, - sym__patterns, - STATE(1420), 1, + STATE(1407), 1, sym__collection_elements, - ACTIONS(299), 2, + STATE(1451), 1, + sym__patterns, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(741), 2, + STATE(769), 2, sym_attribute, sym_subscript, - STATE(1081), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(833), 3, + STATE(855), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - ACTIONS(301), 4, + STATE(1098), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(638), 5, + ACTIONS(647), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 14, + STATE(658), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -24724,82 +23869,88 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [581] = 28, + [597] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(630), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(639), 1, sym_identifier, - ACTIONS(632), 1, + ACTIONS(641), 1, anon_sym_LPAREN, - ACTIONS(636), 1, + ACTIONS(645), 1, anon_sym_STAR, - ACTIONS(640), 1, + ACTIONS(649), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(646), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(648), 1, + ACTIONS(657), 1, anon_sym_await, - ACTIONS(650), 1, + ACTIONS(679), 1, anon_sym_RPAREN, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(648), 1, sym_primary_expression, - STATE(894), 1, + STATE(932), 1, sym_expression, - STATE(1120), 1, + STATE(1123), 1, sym_pattern, - STATE(1242), 1, + STATE(1220), 1, sym_yield, - STATE(1378), 1, + STATE(1297), 1, + sym_parenthesized_list_splat, + STATE(1298), 1, + sym_list_splat, + STATE(1409), 1, sym__collection_elements, - STATE(1395), 1, + STATE(1410), 1, sym__patterns, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(741), 2, + STATE(769), 2, sym_attribute, sym_subscript, - STATE(1081), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(833), 3, + STATE(855), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(638), 5, + ACTIONS(647), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 14, + STATE(658), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -24813,74 +23964,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [698] = 21, + [723] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(291), 1, + ACTIONS(296), 1, anon_sym_TILDE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(652), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(659), 1, sym_identifier, - ACTIONS(654), 1, + ACTIONS(661), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(663), 1, anon_sym_STAR, - ACTIONS(662), 1, - anon_sym_in, - ACTIONS(664), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(666), 1, + ACTIONS(673), 1, anon_sym_await, - STATE(565), 1, + ACTIONS(683), 1, + anon_sym_in, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(840), 1, + STATE(849), 1, sym_pattern, - STATE(844), 1, + STATE(861), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(582), 2, + ACTIONS(589), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(722), 2, + STATE(742), 2, sym_attribute, sym_subscript, - STATE(833), 3, + STATE(855), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(658), 5, + ACTIONS(665), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - ACTIONS(660), 15, + ACTIONS(681), 15, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -24896,82 +24037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [801] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(630), 1, - sym_identifier, - ACTIONS(632), 1, - anon_sym_LPAREN, - ACTIONS(636), 1, - anon_sym_STAR, - ACTIONS(640), 1, - anon_sym_LBRACK, - ACTIONS(642), 1, - anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(648), 1, - anon_sym_await, - ACTIONS(668), 1, - anon_sym_RPAREN, - STATE(565), 1, - sym_string, - STATE(590), 1, - sym_primary_expression, - STATE(894), 1, - sym_expression, - STATE(1120), 1, - sym_pattern, - STATE(1222), 1, - sym_list_splat, - STATE(1223), 1, - sym_parenthesized_list_splat, - STATE(1242), 1, - sym_yield, - STATE(1378), 1, - sym__collection_elements, - STATE(1395), 1, - sym__patterns, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(741), 2, - sym_attribute, - sym_subscript, - ACTIONS(594), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(638), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 14, + STATE(658), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -24985,81 +24051,86 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [920] = 27, + [833] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(630), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(639), 1, sym_identifier, - ACTIONS(632), 1, + ACTIONS(641), 1, anon_sym_LPAREN, - ACTIONS(636), 1, + ACTIONS(645), 1, anon_sym_STAR, - ACTIONS(640), 1, + ACTIONS(649), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(646), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(648), 1, + ACTIONS(657), 1, anon_sym_await, - ACTIONS(670), 1, + ACTIONS(685), 1, anon_sym_RBRACK, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(648), 1, sym_primary_expression, - STATE(893), 1, + STATE(916), 1, sym_expression, - STATE(1120), 1, + STATE(1123), 1, sym_pattern, - STATE(1417), 1, - sym__patterns, - STATE(1443), 1, + STATE(1407), 1, sym__collection_elements, - ACTIONS(299), 2, + STATE(1451), 1, + sym__patterns, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(741), 2, + STATE(769), 2, sym_attribute, sym_subscript, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(833), 3, + STATE(855), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - STATE(1081), 3, + STATE(1098), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(638), 5, + ACTIONS(647), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 14, + STATE(658), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -25073,81 +24144,86 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [1035] = 27, + [955] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(630), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(639), 1, sym_identifier, - ACTIONS(632), 1, + ACTIONS(641), 1, anon_sym_LPAREN, - ACTIONS(636), 1, + ACTIONS(645), 1, anon_sym_STAR, - ACTIONS(640), 1, + ACTIONS(649), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(646), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(648), 1, + ACTIONS(657), 1, anon_sym_await, - ACTIONS(672), 1, + ACTIONS(687), 1, anon_sym_RBRACK, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(648), 1, sym_primary_expression, - STATE(910), 1, + STATE(911), 1, sym_expression, - STATE(1120), 1, + STATE(1123), 1, sym_pattern, - STATE(1417), 1, + STATE(1451), 1, sym__patterns, - STATE(1426), 1, + STATE(1455), 1, sym__collection_elements, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(741), 2, + STATE(769), 2, sym_attribute, sym_subscript, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(833), 3, + STATE(855), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - STATE(1081), 3, + STATE(1098), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(638), 5, + ACTIONS(647), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 14, + STATE(658), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -25161,83 +24237,82 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [1150] = 27, + [1077] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(630), 1, - sym_identifier, - ACTIONS(632), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(636), 1, - anon_sym_STAR, - ACTIONS(640), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(648), 1, - anon_sym_await, - ACTIONS(674), 1, - anon_sym_RBRACK, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(634), 1, sym_primary_expression, - STATE(910), 1, + STATE(925), 1, sym_expression, - STATE(1120), 1, - sym_pattern, - STATE(1417), 1, - sym__patterns, - STATE(1426), 1, - sym__collection_elements, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(741), 2, - sym_attribute, - sym_subscript, - ACTIONS(594), 3, + STATE(1002), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - STATE(1081), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(638), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 14, + ACTIONS(689), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + STATE(658), 17, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -25249,61 +24324,87 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [1265] = 21, + [1188] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(291), 1, - anon_sym_TILDE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(652), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(691), 1, sym_identifier, - ACTIONS(654), 1, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(656), 1, - anon_sym_STAR, - ACTIONS(664), 1, - anon_sym_LBRACK, - ACTIONS(666), 1, + ACTIONS(695), 1, + anon_sym_COMMA, + ACTIONS(699), 1, + anon_sym_RBRACE, + ACTIONS(701), 1, anon_sym_await, - ACTIONS(678), 1, - anon_sym_in, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(840), 1, - sym_pattern, - STATE(844), 1, + STATE(648), 1, sym_primary_expression, - ACTIONS(299), 2, + STATE(899), 1, + sym_expression, + STATE(1027), 1, + sym_pair, + STATE(1239), 1, + sym_dictionary_splat, + STATE(1382), 1, + sym__collection_elements, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(582), 2, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, - STATE(722), 2, - sym_attribute, - sym_subscript, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, + anon_sym_TILDE, + STATE(1098), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(658), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 14, + STATE(876), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(658), 17, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -25315,81 +24416,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - ACTIONS(676), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [1368] = 22, + [1309] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(902), 1, + STATE(925), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1005), 2, + STATE(1002), 2, sym_list_splat, sym_dictionary_splat, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - ACTIONS(680), 7, + ACTIONS(703), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -25397,7 +24487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25413,73 +24503,83 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [1472] = 22, + [1420] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - STATE(565), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(691), 1, + sym_identifier, + ACTIONS(693), 1, + anon_sym_LPAREN, + ACTIONS(701), 1, + anon_sym_await, + ACTIONS(705), 1, + anon_sym_COMMA, + ACTIONS(707), 1, + anon_sym_RBRACE, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(648), 1, sym_primary_expression, - STATE(902), 1, + STATE(901), 1, sym_expression, - ACTIONS(299), 2, + STATE(1015), 1, + sym_pair, + STATE(1225), 1, + sym_dictionary_splat, + STATE(1404), 1, + sym__collection_elements, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1005), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(291), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + STATE(1098), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - ACTIONS(680), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25495,65 +24595,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [1576] = 22, + [1541] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(902), 1, + STATE(925), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1005), 2, + STATE(1002), 2, sym_list_splat, sym_dictionary_splat, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - ACTIONS(682), 7, + ACTIONS(689), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -25561,7 +24666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25577,78 +24682,83 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [1680] = 27, + [1652] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(646), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(684), 1, + ACTIONS(691), 1, sym_identifier, - ACTIONS(686), 1, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(688), 1, + ACTIONS(701), 1, + anon_sym_await, + ACTIONS(709), 1, anon_sym_COMMA, - ACTIONS(692), 1, + ACTIONS(711), 1, anon_sym_RBRACE, - ACTIONS(694), 1, - anon_sym_await, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(648), 1, sym_primary_expression, - STATE(868), 1, + STATE(882), 1, sym_expression, - STATE(996), 1, + STATE(1001), 1, sym_pair, - STATE(1261), 1, + STATE(1253), 1, sym_dictionary_splat, - STATE(1401), 1, + STATE(1462), 1, sym__collection_elements, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1081), 3, + STATE(1098), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25664,78 +24774,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [1794] = 27, + [1773] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(642), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(646), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(686), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_await, - ACTIONS(696), 1, - anon_sym_COMMA, - ACTIONS(698), 1, - anon_sym_RBRACE, - STATE(565), 1, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(634), 1, sym_primary_expression, - STATE(867), 1, + STATE(1020), 1, sym_expression, - STATE(1010), 1, - sym_pair, - STATE(1224), 1, - sym_dictionary_splat, - STATE(1355), 1, - sym__collection_elements, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1081), 3, + ACTIONS(715), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(1132), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25751,78 +24858,77 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [1908] = 27, + [1881] = 26, ACTIONS(3), 1, sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(642), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(684), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(386), 1, anon_sym_await, - ACTIONS(700), 1, - anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, - STATE(565), 1, - sym_string, - STATE(590), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(719), 1, + anon_sym_from, + STATE(697), 1, sym_primary_expression, - STATE(888), 1, + STATE(698), 1, + sym_string, + STATE(699), 1, + sym_template_string, + STATE(956), 1, sym_expression, - STATE(990), 1, - sym_pair, - STATE(1247), 1, - sym_dictionary_splat, - STATE(1368), 1, - sym__collection_elements, - ACTIONS(299), 2, + STATE(1258), 1, + sym_expression_list, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(721), 2, + sym__newline, + sym__semicolon, + STATE(1329), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1081), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25838,73 +24944,77 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [2022] = 25, + [1993] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(686), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_await, - ACTIONS(704), 1, + ACTIONS(723), 1, + sym_identifier, + ACTIONS(725), 1, anon_sym_RPAREN, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(565), 1, + ACTIONS(727), 1, + anon_sym_COMMA, + ACTIONS(731), 1, + anon_sym_await, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(634), 1, sym_primary_expression, - STATE(884), 1, + STATE(1055), 1, sym_expression, - STATE(1179), 1, - sym_with_item, - STATE(1221), 1, - sym_yield, - STATE(1456), 1, - sym__collection_elements, - ACTIONS(299), 2, + STATE(1255), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1081), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + STATE(1254), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(729), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25920,72 +25030,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [2129] = 24, + [2105] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(561), 1, - anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(717), 1, anon_sym_STAR, - ACTIONS(708), 1, - anon_sym_from, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(956), 1, + STATE(634), 1, + sym_primary_expression, + STATE(1020), 1, sym_expression, - STATE(1253), 1, - sym_expression_list, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(710), 2, - sym__newline, - sym__semicolon, - STATE(1283), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(733), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(1132), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26001,72 +25114,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [2234] = 24, + [2213] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(712), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(691), 1, sym_identifier, - ACTIONS(714), 1, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(716), 1, - anon_sym_RPAREN, - ACTIONS(718), 1, - anon_sym_COMMA, - ACTIONS(722), 1, + ACTIONS(701), 1, anon_sym_await, - STATE(565), 1, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(735), 1, + anon_sym_RPAREN, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(648), 1, sym_primary_expression, - STATE(1026), 1, + STATE(883), 1, sym_expression, - STATE(1276), 1, - sym_parenthesized_list_splat, - ACTIONS(299), 2, + STATE(1243), 1, + sym_yield, + STATE(1268), 1, + sym_with_item, + STATE(1416), 1, + sym__collection_elements, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + STATE(1098), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1275), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26082,72 +25201,77 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [2339] = 24, + [2327] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(686), 1, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(737), 1, + sym_identifier, + ACTIONS(739), 1, anon_sym_RPAREN, - ACTIONS(718), 1, + ACTIONS(741), 1, anon_sym_COMMA, - ACTIONS(724), 1, - sym_identifier, - ACTIONS(728), 1, + ACTIONS(745), 1, anon_sym_await, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(648), 1, sym_primary_expression, - STATE(895), 1, + STATE(912), 1, sym_expression, - STATE(1276), 1, + STATE(1231), 1, sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1275), 3, + STATE(1232), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(726), 5, + ACTIONS(743), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26163,71 +25287,77 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [2444] = 23, + [2439] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(646), 1, - anon_sym_yield, - STATE(565), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(693), 1, + anon_sym_LPAREN, + ACTIONS(737), 1, + sym_identifier, + ACTIONS(745), 1, + anon_sym_await, + ACTIONS(747), 1, + anon_sym_RPAREN, + ACTIONS(749), 1, + anon_sym_COMMA, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(648), 1, sym_primary_expression, - STATE(918), 1, + STATE(910), 1, sym_expression, - ACTIONS(299), 2, + STATE(1259), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1284), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(291), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1067), 3, - sym_expression_list, - sym_yield, - sym__f_expression, - ACTIONS(301), 4, + STATE(1256), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(743), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26243,72 +25373,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [2547] = 24, + [2551] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(642), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(686), 1, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(724), 1, - sym_identifier, - ACTIONS(728), 1, - anon_sym_await, - ACTIONS(730), 1, - anon_sym_RPAREN, - ACTIONS(732), 1, - anon_sym_COMMA, - STATE(565), 1, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(634), 1, sym_primary_expression, - STATE(906), 1, + STATE(1020), 1, sym_expression, - STATE(1234), 1, - sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1233), 3, + ACTIONS(715), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(1132), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(726), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26324,72 +25457,76 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [2652] = 24, + [2659] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(642), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(724), 1, - sym_identifier, - ACTIONS(728), 1, - anon_sym_await, - ACTIONS(734), 1, - anon_sym_RPAREN, - ACTIONS(736), 1, - anon_sym_COMMA, - STATE(565), 1, + ACTIONS(655), 1, + anon_sym_yield, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(634), 1, sym_primary_expression, - STATE(901), 1, + STATE(942), 1, sym_expression, - STATE(1202), 1, - sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + STATE(1365), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1159), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, + STATE(1092), 3, + sym_expression_list, + sym_yield, + sym__f_expression, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(726), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26405,150 +25542,76 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [2757] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(706), 1, - anon_sym_STAR, - ACTIONS(714), 1, - anon_sym_LPAREN, - STATE(565), 1, - sym_string, - STATE(595), 1, - sym_primary_expression, - STATE(985), 1, - sym_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(291), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(738), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(1093), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(271), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [2858] = 23, + [2769] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(646), 1, + ACTIONS(655), 1, anon_sym_yield, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(918), 1, + STATE(942), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1284), 2, + STATE(1365), 2, sym_list_splat, sym_dictionary_splat, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1060), 3, + STATE(1080), 3, sym_expression_list, sym_yield, sym__f_expression, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26564,70 +25627,77 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [2961] = 22, + [2879] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(706), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(714), 1, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(693), 1, anon_sym_LPAREN, - STATE(565), 1, + ACTIONS(725), 1, + anon_sym_RPAREN, + ACTIONS(727), 1, + anon_sym_COMMA, + ACTIONS(737), 1, + sym_identifier, + ACTIONS(745), 1, + anon_sym_await, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(648), 1, sym_primary_expression, - STATE(985), 1, + STATE(913), 1, sym_expression, - ACTIONS(299), 2, + STATE(1255), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(740), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(1093), 3, + STATE(1254), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(301), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(743), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26643,70 +25713,77 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [3062] = 22, + [2991] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, + sym_identifier, + ACTIONS(386), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(706), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(714), 1, - anon_sym_LPAREN, - STATE(565), 1, - sym_string, - STATE(595), 1, + ACTIONS(751), 1, + anon_sym_from, + STATE(697), 1, sym_primary_expression, - STATE(985), 1, + STATE(698), 1, + sym_string, + STATE(699), 1, + sym_template_string, + STATE(1031), 1, sym_expression, - ACTIONS(299), 2, + STATE(1324), 1, + sym_expression_list, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(633), 2, + sym__newline, + sym__semicolon, + STATE(1329), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(740), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(1093), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26722,72 +25799,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [3163] = 24, + [3103] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, - anon_sym_await, - ACTIONS(561), 1, - anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(742), 1, - anon_sym_from, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(723), 1, + sym_identifier, + ACTIONS(731), 1, + anon_sym_await, + ACTIONS(753), 1, + anon_sym_RPAREN, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(1008), 1, + STATE(634), 1, + sym_primary_expression, + STATE(1072), 1, sym_expression, - STATE(1315), 1, - sym_expression_list, - ACTIONS(75), 2, + STATE(1314), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(624), 2, - sym__newline, - sym__semicolon, - STATE(1283), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + STATE(1326), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(729), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26803,68 +25883,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [3268] = 21, + [3212] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(310), 1, sym__string_start, - ACTIONS(590), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(684), 1, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(723), 1, sym_identifier, - ACTIONS(694), 1, + ACTIONS(731), 1, anon_sym_await, - ACTIONS(748), 1, - anon_sym_lambda, - STATE(565), 1, + ACTIONS(755), 1, + anon_sym_RPAREN, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(634), 1, sym_primary_expression, - STATE(920), 1, + STATE(1072), 1, sym_expression, - ACTIONS(299), 2, + STATE(1314), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(986), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(744), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(746), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, - ACTIONS(301), 4, + STATE(1326), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 4, + ACTIONS(729), 5, anon_sym_print, + anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26880,70 +25967,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [3366] = 23, + [3321] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(646), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(684), 1, + ACTIONS(691), 1, sym_identifier, - ACTIONS(686), 1, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(701), 1, anon_sym_await, - ACTIONS(706), 1, + ACTIONS(717), 1, anon_sym_STAR, - ACTIONS(750), 1, + ACTIONS(757), 1, anon_sym_RBRACK, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(648), 1, sym_primary_expression, - STATE(911), 1, + STATE(916), 1, sym_expression, - STATE(1462), 1, + STATE(1407), 1, sym__collection_elements, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1081), 3, + STATE(1098), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26959,71 +26051,76 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [3468] = 24, + [3430] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(646), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(684), 1, + ACTIONS(691), 1, sym_identifier, - ACTIONS(686), 1, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(701), 1, anon_sym_await, - ACTIONS(706), 1, + ACTIONS(717), 1, anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(759), 1, anon_sym_RPAREN, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(648), 1, sym_primary_expression, - STATE(900), 1, + STATE(932), 1, sym_expression, - STATE(1156), 1, + STATE(1220), 1, sym_yield, - STATE(1420), 1, + STATE(1409), 1, sym__collection_elements, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1081), 2, + STATE(1098), 2, sym_list_splat, sym_parenthesized_list_splat, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27039,70 +26136,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [3572] = 23, + [3541] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(684), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(386), 1, anon_sym_await, - ACTIONS(706), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(761), 1, + anon_sym_from, + ACTIONS(763), 1, anon_sym_STAR, - ACTIONS(754), 1, - anon_sym_RBRACK, - STATE(565), 1, - sym_string, - STATE(590), 1, + ACTIONS(765), 1, + anon_sym_STAR_STAR, + STATE(697), 1, sym_primary_expression, - STATE(893), 1, + STATE(698), 1, + sym_string, + STATE(699), 1, + sym_template_string, + STATE(997), 1, sym_expression, - STATE(1443), 1, - sym__collection_elements, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(689), 2, + sym__newline, + sym__semicolon, + STATE(1147), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1081), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27118,72 +26220,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [3674] = 25, + [3650] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(686), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(723), 1, + sym_identifier, + ACTIONS(731), 1, anon_sym_await, - ACTIONS(704), 1, + ACTIONS(767), 1, anon_sym_RPAREN, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(634), 1, sym_primary_expression, - STATE(894), 1, + STATE(1072), 1, sym_expression, - STATE(1222), 1, - sym_list_splat, - STATE(1223), 1, + STATE(1314), 1, sym_parenthesized_list_splat, - STATE(1242), 1, - sym_yield, - STATE(1378), 1, - sym__collection_elements, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + STATE(1326), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(729), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27199,8 +26304,9 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [3780] = 23, + [3759] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -27211,33 +26317,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(386), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(756), 1, + ACTIONS(761), 1, anon_sym_from, - ACTIONS(758), 1, + ACTIONS(763), 1, anon_sym_STAR, - ACTIONS(760), 1, + ACTIONS(765), 1, anon_sym_STAR_STAR, - STATE(689), 1, + STATE(697), 1, sym_primary_expression, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(998), 1, + STATE(699), 1, + sym_template_string, + STATE(997), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(689), 2, sym__newline, sym__semicolon, - STATE(1128), 2, + STATE(1147), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, @@ -27249,20 +26359,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27278,8 +26388,9 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [3882] = 23, + [3868] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -27290,33 +26401,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(386), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(756), 1, - anon_sym_from, - ACTIONS(758), 1, + ACTIONS(763), 1, anon_sym_STAR, - ACTIONS(760), 1, + ACTIONS(765), 1, anon_sym_STAR_STAR, - STATE(689), 1, + ACTIONS(769), 1, + anon_sym_from, + STATE(697), 1, sym_primary_expression, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(998), 1, + STATE(699), 1, + sym_template_string, + STATE(997), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(703), 2, sym__newline, sym__semicolon, - STATE(1128), 2, + STATE(1147), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, @@ -27328,20 +26443,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27357,70 +26472,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [3984] = 23, + [3977] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(712), 1, - sym_identifier, - ACTIONS(714), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(723), 1, + sym_identifier, + ACTIONS(731), 1, anon_sym_await, - ACTIONS(762), 1, + ACTIONS(771), 1, anon_sym_RPAREN, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1073), 1, + STATE(1072), 1, sym_expression, - STATE(1318), 1, + STATE(1314), 1, sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, + STATE(1326), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(729), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27436,70 +26556,73 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, [4086] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(712), 1, + ACTIONS(691), 1, sym_identifier, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(701), 1, anon_sym_await, - ACTIONS(764), 1, - anon_sym_RPAREN, - STATE(565), 1, + ACTIONS(777), 1, + anon_sym_lambda, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(648), 1, sym_primary_expression, - STATE(1073), 1, + STATE(941), 1, sym_expression, - STATE(1318), 1, - sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + STATE(1013), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(773), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(775), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(697), 4, anon_sym_print, - anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27515,70 +26638,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [4188] = 23, + [4191] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(712), 1, - sym_identifier, - ACTIONS(714), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(723), 1, + sym_identifier, + ACTIONS(731), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(779), 1, anon_sym_RPAREN, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1073), 1, + STATE(1072), 1, sym_expression, - STATE(1318), 1, + STATE(1314), 1, sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, + STATE(1326), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(729), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27594,70 +26722,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [4290] = 23, + [4300] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(712), 1, - sym_identifier, - ACTIONS(714), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(723), 1, + sym_identifier, + ACTIONS(731), 1, anon_sym_await, - ACTIONS(768), 1, + ACTIONS(781), 1, anon_sym_RPAREN, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1073), 1, + STATE(1072), 1, sym_expression, - STATE(1318), 1, + STATE(1314), 1, sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, + STATE(1326), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(729), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27673,70 +26806,76 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [4392] = 23, + [4409] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(712), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(691), 1, sym_identifier, - ACTIONS(714), 1, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(701), 1, anon_sym_await, - ACTIONS(770), 1, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(783), 1, anon_sym_RPAREN, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(648), 1, sym_primary_expression, - STATE(1073), 1, + STATE(928), 1, sym_expression, - STATE(1318), 1, - sym_parenthesized_list_splat, - ACTIONS(299), 2, + STATE(1224), 1, + sym_yield, + STATE(1403), 1, + sym__collection_elements, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + STATE(1098), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27752,70 +26891,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [4494] = 23, + [4520] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(712), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(691), 1, sym_identifier, - ACTIONS(714), 1, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(701), 1, anon_sym_await, - ACTIONS(772), 1, - anon_sym_RPAREN, - STATE(565), 1, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(785), 1, + anon_sym_RBRACK, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(648), 1, sym_primary_expression, - STATE(1073), 1, + STATE(911), 1, sym_expression, - STATE(1318), 1, - sym_parenthesized_list_splat, - ACTIONS(299), 2, + STATE(1455), 1, + sym__collection_elements, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, + STATE(1098), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27831,70 +26975,77 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [4596] = 23, + [4629] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(712), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(691), 1, sym_identifier, - ACTIONS(714), 1, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(701), 1, anon_sym_await, - ACTIONS(774), 1, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(735), 1, anon_sym_RPAREN, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(648), 1, sym_primary_expression, - STATE(1073), 1, + STATE(932), 1, sym_expression, - STATE(1318), 1, + STATE(1220), 1, + sym_yield, + STATE(1297), 1, sym_parenthesized_list_splat, - ACTIONS(299), 2, + STATE(1298), 1, + sym_list_splat, + STATE(1409), 1, + sym__collection_elements, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27910,70 +27061,73 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [4698] = 23, + [4742] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(712), 1, + ACTIONS(691), 1, sym_identifier, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(701), 1, anon_sym_await, - ACTIONS(776), 1, - anon_sym_RPAREN, - STATE(565), 1, + ACTIONS(777), 1, + anon_sym_lambda, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(648), 1, sym_primary_expression, - STATE(1073), 1, + STATE(941), 1, sym_expression, - STATE(1318), 1, - sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + STATE(1013), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(787), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(789), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(697), 4, anon_sym_print, - anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27989,70 +27143,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [4800] = 23, + [4847] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(69), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(691), 1, sym_identifier, - ACTIONS(331), 1, - anon_sym_await, - ACTIONS(561), 1, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(567), 1, - anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(701), 1, + anon_sym_await, + ACTIONS(717), 1, anon_sym_STAR, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(791), 1, + anon_sym_RBRACK, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(994), 1, + STATE(648), 1, + sym_primary_expression, + STATE(915), 1, sym_expression, - STATE(1298), 1, - sym_expression_list, - ACTIONS(75), 2, + STATE(1440), 1, + sym__collection_elements, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(778), 2, - sym__newline, - sym__semicolon, - STATE(1283), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + STATE(1098), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28068,68 +27227,76 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [4902] = 21, + [4956] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(590), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(684), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(691), 1, sym_identifier, - ACTIONS(694), 1, + ACTIONS(693), 1, + anon_sym_LPAREN, + ACTIONS(701), 1, anon_sym_await, - ACTIONS(748), 1, - anon_sym_lambda, - STATE(565), 1, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(735), 1, + anon_sym_RPAREN, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(648), 1, sym_primary_expression, - STATE(920), 1, + STATE(924), 1, sym_expression, - ACTIONS(299), 2, + STATE(1243), 1, + sym_yield, + STATE(1416), 1, + sym__collection_elements, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(986), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(594), 3, + STATE(1098), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(780), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(782), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 4, + ACTIONS(697), 5, anon_sym_print, + anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28145,72 +27312,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [5000] = 25, + [5067] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(686), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(723), 1, + sym_identifier, + ACTIONS(731), 1, anon_sym_await, - ACTIONS(706), 1, - anon_sym_STAR, - ACTIONS(784), 1, + ACTIONS(793), 1, anon_sym_RPAREN, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(634), 1, sym_primary_expression, - STATE(894), 1, + STATE(1072), 1, sym_expression, - STATE(1222), 1, - sym_list_splat, - STATE(1223), 1, + STATE(1314), 1, sym_parenthesized_list_splat, - STATE(1242), 1, - sym_yield, - STATE(1378), 1, - sym__collection_elements, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + STATE(1326), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(729), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28226,71 +27396,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [5106] = 24, + [5176] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(686), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(723), 1, + sym_identifier, + ACTIONS(731), 1, anon_sym_await, - ACTIONS(704), 1, + ACTIONS(795), 1, anon_sym_RPAREN, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(634), 1, sym_primary_expression, - STATE(894), 1, + STATE(1072), 1, sym_expression, - STATE(1242), 1, - sym_yield, - STATE(1378), 1, - sym__collection_elements, - ACTIONS(299), 2, + STATE(1314), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1081), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + STATE(1326), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(729), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28306,70 +27480,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [5210] = 23, + [5285] = 25, ACTIONS(3), 1, sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(712), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(386), 1, anon_sym_await, - ACTIONS(786), 1, - anon_sym_RPAREN, - STATE(565), 1, - sym_string, - STATE(595), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(635), 1, + anon_sym_STAR, + STATE(697), 1, sym_primary_expression, - STATE(1073), 1, + STATE(698), 1, + sym_string, + STATE(699), 1, + sym_template_string, + STATE(1028), 1, sym_expression, - STATE(1318), 1, - sym_parenthesized_list_splat, - ACTIONS(299), 2, + STATE(1375), 1, + sym_expression_list, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(797), 2, + sym__newline, + sym__semicolon, + STATE(1329), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28385,70 +27564,73 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [5312] = 23, + [5394] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(712), 1, + ACTIONS(691), 1, sym_identifier, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(701), 1, anon_sym_await, - ACTIONS(788), 1, - anon_sym_RPAREN, - STATE(565), 1, + ACTIONS(777), 1, + anon_sym_lambda, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(648), 1, sym_primary_expression, - STATE(1073), 1, + STATE(941), 1, sym_expression, - STATE(1318), 1, - sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + STATE(1013), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(799), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(801), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(697), 4, anon_sym_print, - anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28464,68 +27646,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [5414] = 21, + [5499] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(310), 1, sym__string_start, - ACTIONS(590), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(684), 1, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(723), 1, sym_identifier, - ACTIONS(694), 1, + ACTIONS(731), 1, anon_sym_await, - ACTIONS(748), 1, - anon_sym_lambda, - STATE(565), 1, + ACTIONS(803), 1, + anon_sym_RPAREN, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(634), 1, sym_primary_expression, - STATE(920), 1, + STATE(1072), 1, sym_expression, - ACTIONS(299), 2, + STATE(1314), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(986), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(790), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(792), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, - ACTIONS(301), 4, + STATE(1326), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 4, + ACTIONS(729), 5, anon_sym_print, + anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28541,71 +27730,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [5512] = 24, + [5608] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(646), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(684), 1, + ACTIONS(691), 1, sym_identifier, - ACTIONS(686), 1, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(701), 1, anon_sym_await, - ACTIONS(706), 1, + ACTIONS(717), 1, anon_sym_STAR, - ACTIONS(784), 1, - anon_sym_RPAREN, - STATE(565), 1, + ACTIONS(791), 1, + anon_sym_RBRACK, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(648), 1, sym_primary_expression, - STATE(894), 1, + STATE(916), 1, sym_expression, - STATE(1242), 1, - sym_yield, - STATE(1378), 1, + STATE(1407), 1, sym__collection_elements, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1081), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + STATE(1098), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28621,70 +27814,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [5616] = 23, + [5717] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(686), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(723), 1, + sym_identifier, + ACTIONS(731), 1, anon_sym_await, - ACTIONS(706), 1, - anon_sym_STAR, - ACTIONS(794), 1, - anon_sym_RBRACK, - STATE(565), 1, + ACTIONS(805), 1, + anon_sym_RPAREN, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(634), 1, sym_primary_expression, - STATE(910), 1, + STATE(1072), 1, sym_expression, - STATE(1426), 1, - sym__collection_elements, - ACTIONS(299), 2, + STATE(1314), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1081), 3, + STATE(1326), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(301), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(729), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28700,70 +27898,159 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [5718] = 23, + [5826] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, - anon_sym_await, - ACTIONS(561), 1, - anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(758), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_STAR_STAR, - ACTIONS(796), 1, - anon_sym_from, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(723), 1, + sym_identifier, + ACTIONS(731), 1, + anon_sym_await, + ACTIONS(807), 1, + anon_sym_RPAREN, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(998), 1, + STATE(634), 1, + sym_primary_expression, + STATE(1072), 1, sym_expression, - ACTIONS(75), 2, + STATE(1314), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(682), 2, - sym__newline, - sym__semicolon, - STATE(1128), 2, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1326), 3, sym_list_splat, sym_dictionary_splat, - ACTIONS(47), 3, + sym_keyword_argument, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(729), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(876), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(658), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [5935] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(723), 1, + sym_identifier, + ACTIONS(731), 1, + anon_sym_await, + ACTIONS(809), 1, + anon_sym_RPAREN, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(634), 1, + sym_primary_expression, + STATE(1072), 1, + sym_expression, + STATE(1314), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + STATE(1326), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(729), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28779,70 +28066,76 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [5820] = 23, + [6044] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(646), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(684), 1, + ACTIONS(691), 1, sym_identifier, - ACTIONS(686), 1, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(701), 1, anon_sym_await, - ACTIONS(706), 1, + ACTIONS(717), 1, anon_sym_STAR, - ACTIONS(750), 1, - anon_sym_RBRACK, - STATE(565), 1, + ACTIONS(735), 1, + anon_sym_RPAREN, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(648), 1, sym_primary_expression, - STATE(910), 1, + STATE(932), 1, sym_expression, - STATE(1426), 1, + STATE(1220), 1, + sym_yield, + STATE(1409), 1, sym__collection_elements, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + STATE(1098), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1081), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28858,70 +28151,159 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [5922] = 23, + [6155] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(712), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(691), 1, sym_identifier, - ACTIONS(714), 1, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(701), 1, anon_sym_await, - ACTIONS(798), 1, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(759), 1, anon_sym_RPAREN, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(648), 1, sym_primary_expression, - STATE(1073), 1, + STATE(932), 1, sym_expression, - STATE(1318), 1, + STATE(1220), 1, + sym_yield, + STATE(1297), 1, sym_parenthesized_list_splat, - ACTIONS(299), 2, + STATE(1298), 1, + sym_list_splat, + STATE(1409), 1, + sym__collection_elements, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(658), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [6268] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(691), 1, + sym_identifier, + ACTIONS(701), 1, + anon_sym_await, + ACTIONS(777), 1, + anon_sym_lambda, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(648), 1, + sym_primary_expression, + STATE(941), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(1013), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(811), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(813), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(697), 4, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28937,70 +28319,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [6024] = 23, + [6373] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(712), 1, - sym_identifier, - ACTIONS(714), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(723), 1, + sym_identifier, + ACTIONS(731), 1, anon_sym_await, - ACTIONS(800), 1, + ACTIONS(815), 1, anon_sym_RPAREN, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1073), 1, + STATE(1072), 1, sym_expression, - STATE(1318), 1, + STATE(1314), 1, sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, + STATE(1326), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(729), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29016,70 +28403,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [6126] = 23, + [6482] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(712), 1, - sym_identifier, - ACTIONS(714), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(723), 1, + sym_identifier, + ACTIONS(731), 1, anon_sym_await, - ACTIONS(802), 1, + ACTIONS(817), 1, anon_sym_RPAREN, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1073), 1, + STATE(1072), 1, sym_expression, - STATE(1318), 1, + STATE(1314), 1, sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, + STATE(1326), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(729), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29095,70 +28487,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [6228] = 23, + [6591] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(712), 1, - sym_identifier, - ACTIONS(714), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(723), 1, + sym_identifier, + ACTIONS(731), 1, anon_sym_await, - ACTIONS(804), 1, + ACTIONS(819), 1, anon_sym_RPAREN, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1073), 1, + STATE(1072), 1, sym_expression, - STATE(1318), 1, + STATE(1314), 1, sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, + STATE(1326), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(729), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29174,70 +28571,73 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [6330] = 23, + [6700] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(712), 1, - sym_identifier, - ACTIONS(714), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(723), 1, + sym_identifier, + ACTIONS(731), 1, anon_sym_await, - ACTIONS(806), 1, - anon_sym_RPAREN, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1073), 1, + STATE(1072), 1, sym_expression, - STATE(1318), 1, + STATE(1314), 1, sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, + STATE(1326), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(729), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29253,71 +28653,73 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [6432] = 24, + [6806] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(646), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(686), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_await, - ACTIONS(704), 1, + ACTIONS(715), 1, anon_sym_RPAREN, - ACTIONS(706), 1, + ACTIONS(717), 1, anon_sym_STAR, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(634), 1, sym_primary_expression, - STATE(905), 1, + STATE(1020), 1, sym_expression, - STATE(1221), 1, - sym_yield, - STATE(1456), 1, - sym__collection_elements, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1081), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + STATE(1132), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29333,68 +28735,73 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [6536] = 21, + [6912] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(590), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(694), 1, - anon_sym_await, - ACTIONS(748), 1, - anon_sym_lambda, - STATE(565), 1, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(821), 1, + anon_sym_COLON, + ACTIONS(823), 1, + anon_sym_RBRACK, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(634), 1, sym_primary_expression, - STATE(920), 1, + STATE(1042), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(986), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(808), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(810), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, - ACTIONS(301), 4, + STATE(1373), 3, + sym_list_splat, + sym__index_expression, + sym_slice, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 4, + ACTIONS(276), 5, anon_sym_print, + anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29410,68 +28817,73 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [6634] = 22, + [7018] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(706), 1, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(715), 1, + anon_sym_RPAREN, + ACTIONS(717), 1, anon_sym_STAR, - ACTIONS(812), 1, - anon_sym_COLON, - ACTIONS(814), 1, - anon_sym_RBRACK, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1043), 1, + STATE(1020), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1332), 3, + STATE(1132), 3, sym_list_splat, - sym__index_expression, - sym_slice, - ACTIONS(301), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29487,68 +28899,73 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [6733] = 22, + [7124] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(706), 1, + ACTIONS(717), 1, anon_sym_STAR, - ACTIONS(812), 1, + ACTIONS(821), 1, anon_sym_COLON, - ACTIONS(816), 1, + ACTIONS(825), 1, anon_sym_RBRACK, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1043), 1, + STATE(1042), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1332), 3, + STATE(1373), 3, sym_list_splat, sym__index_expression, sym_slice, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29564,68 +28981,73 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [6832] = 22, + [7230] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(706), 1, + ACTIONS(717), 1, anon_sym_STAR, - ACTIONS(812), 1, + ACTIONS(821), 1, anon_sym_COLON, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1043), 1, + STATE(1042), 1, sym_expression, - STATE(1389), 1, + STATE(1425), 1, sym_index_expression_list, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1187), 3, + STATE(1257), 3, sym_list_splat, sym__index_expression, sym_slice, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29641,68 +29063,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [6931] = 22, + [7336] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(706), 1, - anon_sym_STAR, - ACTIONS(714), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(740), 1, - anon_sym_RPAREN, - STATE(565), 1, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(595), 1, + anon_sym_await, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(671), 1, sym_primary_expression, - STATE(985), 1, - sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(265), 3, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1093), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(301), 4, + ACTIONS(827), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(306), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, + ACTIONS(298), 9, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29718,68 +29139,73 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [7030] = 22, + [7430] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(706), 1, + ACTIONS(717), 1, anon_sym_STAR, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(740), 1, - anon_sym_RPAREN, - STATE(565), 1, + ACTIONS(821), 1, + anon_sym_COLON, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(985), 1, + STATE(1042), 1, sym_expression, - ACTIONS(299), 2, + STATE(1400), 1, + sym_index_expression_list, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1093), 3, + STATE(1227), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(301), 4, + sym__index_expression, + sym_slice, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29795,126 +29221,73 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [7129] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(820), 17, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(818), 36, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_type_conversion, - [7190] = 22, + [7536] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(712), 1, - sym_identifier, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(722), 1, - anon_sym_await, - STATE(565), 1, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(821), 1, + anon_sym_COLON, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1073), 1, + STATE(1042), 1, sym_expression, - STATE(1318), 1, - sym_parenthesized_list_splat, - ACTIONS(299), 2, + STATE(1432), 1, + sym_index_expression_list, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, + STATE(1265), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, + sym__index_expression, + sym_slice, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29930,126 +29303,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [7289] = 3, + [7642] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(824), 17, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(53), 1, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(822), 36, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_type_conversion, - [7350] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(706), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(812), 1, - anon_sym_COLON, - STATE(565), 1, + ACTIONS(637), 1, + anon_sym_not, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1043), 1, + STATE(1037), 1, sym_expression, - STATE(1376), 1, - sym_index_expression_list, - ACTIONS(299), 2, + STATE(1413), 1, + sym_expression_list, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + STATE(1365), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1236), 3, - sym_list_splat, - sym__index_expression, - sym_slice, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30065,62 +29384,71 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [7449] = 16, + [7747] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(588), 1, - anon_sym_await, - STATE(565), 1, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(631), 1, + STATE(634), 1, sym_primary_expression, - ACTIONS(299), 2, + STATE(1020), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(260), 3, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(826), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(301), 5, + STATE(1132), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - ACTIONS(293), 9, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(589), 16, + STATE(876), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30136,68 +29464,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [7536] = 22, + [7850] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(706), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(812), 1, - anon_sym_COLON, - STATE(565), 1, + ACTIONS(637), 1, + anon_sym_not, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1043), 1, + STATE(1049), 1, sym_expression, - STATE(1375), 1, - sym_index_expression_list, - ACTIONS(299), 2, + STATE(1447), 1, + sym_expression_list, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + STATE(1365), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1280), 3, - sym_list_splat, - sym__index_expression, - sym_slice, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30213,71 +29545,9 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [7635] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 1, - anon_sym_else, - ACTIONS(834), 1, - anon_sym_except, - ACTIONS(836), 1, - anon_sym_finally, - STATE(357), 1, - sym_else_clause, - STATE(545), 1, - sym_finally_clause, - STATE(271), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(828), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(830), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [7707] = 22, + [7955] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -30290,28 +29560,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(386), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - STATE(689), 1, + STATE(697), 1, sym_primary_expression, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(993), 1, + STATE(699), 1, + sym_template_string, + STATE(1024), 1, sym_expression, - STATE(1327), 1, + STATE(1344), 1, sym_expression_list, ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1283), 2, + STATE(1329), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, @@ -30323,20 +29597,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30352,66 +29626,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [7805] = 21, + [8060] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(706), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(714), 1, - anon_sym_LPAREN, - STATE(565), 1, + ACTIONS(637), 1, + anon_sym_not, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(985), 1, + STATE(1063), 1, sym_expression, - ACTIONS(299), 2, + STATE(1501), 1, + sym_expression_list, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + STATE(1365), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1093), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30427,193 +29707,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [7901] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - anon_sym_else, - ACTIONS(840), 1, - anon_sym_except, - ACTIONS(842), 1, - anon_sym_finally, - STATE(395), 1, - sym_else_clause, - STATE(490), 1, - sym_finally_clause, - STATE(263), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(828), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(830), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [7973] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - anon_sym_else, - ACTIONS(842), 1, - anon_sym_finally, - ACTIONS(844), 1, - anon_sym_except, - STATE(395), 1, - sym_else_clause, - STATE(490), 1, - sym_finally_clause, - STATE(268), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(828), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(830), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [8045] = 22, + [8165] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1039), 1, + STATE(1048), 1, sym_expression, - STATE(1449), 1, + STATE(1378), 1, sym_expression_list, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1284), 2, + STATE(1365), 2, sym_list_splat, sym_dictionary_splat, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30629,130 +29788,71 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [8143] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - anon_sym_else, - ACTIONS(842), 1, - anon_sym_finally, - ACTIONS(844), 1, - anon_sym_except, - STATE(392), 1, - sym_else_clause, - STATE(474), 1, - sym_finally_clause, - STATE(268), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(848), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(846), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [8215] = 22, + [8270] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(821), 1, + anon_sym_COLON, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1030), 1, + STATE(1042), 1, sym_expression, - STATE(1404), 1, - sym_expression_list, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1284), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + STATE(1373), 3, + sym_list_splat, + sym__index_expression, + sym_slice, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30768,318 +29868,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [8313] = 9, + [8373] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, - anon_sym_else, - ACTIONS(834), 1, - anon_sym_except, - ACTIONS(836), 1, - anon_sym_finally, - STATE(350), 1, - sym_else_clause, - STATE(537), 1, - sym_finally_clause, - STATE(271), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(848), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(846), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [8385] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 1, - anon_sym_else, - ACTIONS(836), 1, - anon_sym_finally, - ACTIONS(850), 1, - anon_sym_except, - STATE(350), 1, - sym_else_clause, - STATE(537), 1, - sym_finally_clause, - STATE(272), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(848), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(846), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [8457] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 1, - anon_sym_else, - ACTIONS(836), 1, - anon_sym_finally, - ACTIONS(850), 1, - anon_sym_except, - STATE(357), 1, - sym_else_clause, - STATE(545), 1, - sym_finally_clause, - STATE(272), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(828), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(830), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [8529] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - anon_sym_else, - ACTIONS(840), 1, - anon_sym_except, - ACTIONS(842), 1, - anon_sym_finally, - STATE(392), 1, - sym_else_clause, - STATE(474), 1, - sym_finally_clause, - STATE(263), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(848), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(53), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(846), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(263), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [8601] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(706), 1, - anon_sym_STAR, - ACTIONS(812), 1, - anon_sym_COLON, - STATE(565), 1, + ACTIONS(829), 1, + anon_sym_RBRACE, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1043), 1, + STATE(1169), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + STATE(1323), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1332), 3, - sym_list_splat, - sym__index_expression, - sym_slice, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31095,67 +29947,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [8697] = 22, + [8475] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + ACTIONS(831), 1, + anon_sym_RBRACE, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1011), 1, + STATE(1169), 1, sym_expression, - STATE(1416), 1, - sym_expression_list, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1284), 2, - sym_list_splat, + STATE(1323), 2, sym_dictionary_splat, - ACTIONS(291), 3, + sym_pair, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31171,67 +30026,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [8795] = 22, + [8577] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1045), 1, + STATE(925), 1, sym_expression, - STATE(1423), 1, - sym_expression_list, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1284), 2, + STATE(1002), 2, sym_list_splat, sym_dictionary_splat, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31247,202 +30105,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [8893] = 21, + [8679] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(852), 1, + ACTIONS(833), 1, anon_sym_RBRACE, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1104), 1, + STATE(1169), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1335), 2, + STATE(1323), 2, sym_dictionary_splat, sym_pair, - ACTIONS(291), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(271), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [8988] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(265), 1, - anon_sym_COMMA, - ACTIONS(273), 1, - anon_sym_COLON_EQ, - ACTIONS(854), 1, - anon_sym_for, - ACTIONS(856), 1, - anon_sym_with, - ACTIONS(858), 1, - anon_sym_def, - ACTIONS(275), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(297), 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(260), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(293), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [9061] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, - sym_primary_expression, - STATE(902), 1, - sym_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(1005), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31458,128 +30184,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [9156] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(265), 1, - anon_sym_COMMA, - ACTIONS(273), 1, - anon_sym_COLON_EQ, - ACTIONS(860), 1, - anon_sym_for, - ACTIONS(862), 1, - anon_sym_with, - ACTIONS(864), 1, - anon_sym_def, - ACTIONS(275), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(297), 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(260), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(293), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [9229] = 21, + [8781] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(866), 1, + ACTIONS(835), 1, anon_sym_RBRACE, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1104), 1, + STATE(1169), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1335), 2, + STATE(1323), 2, sym_dictionary_splat, sym_pair, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31595,65 +30263,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [9324] = 21, + [8883] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(868), 1, + ACTIONS(837), 1, anon_sym_RBRACE, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1104), 1, + STATE(1169), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1335), 2, + STATE(1323), 2, sym_dictionary_splat, sym_pair, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31669,8 +30342,9 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [9419] = 21, + [8985] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -31681,28 +30355,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(386), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(758), 1, + ACTIONS(763), 1, anon_sym_STAR, - ACTIONS(760), 1, + ACTIONS(765), 1, anon_sym_STAR_STAR, - STATE(689), 1, + STATE(697), 1, sym_primary_expression, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(998), 1, + STATE(699), 1, + sym_template_string, + STATE(997), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1128), 2, + STATE(1147), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, @@ -31714,20 +30392,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31743,65 +30421,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [9514] = 21, + [9087] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(870), 1, + ACTIONS(839), 1, anon_sym_RBRACE, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1104), 1, + STATE(1169), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1335), 2, + STATE(1323), 2, sym_dictionary_splat, sym_pair, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31817,65 +30500,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [9609] = 21, + [9189] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(872), 1, + ACTIONS(841), 1, anon_sym_RBRACE, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1104), 1, + STATE(1169), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1335), 2, + STATE(1323), 2, sym_dictionary_splat, sym_pair, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31891,65 +30579,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [9704] = 21, + [9291] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(874), 1, + ACTIONS(843), 1, anon_sym_RBRACE, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1104), 1, + STATE(1169), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1335), 2, + STATE(1323), 2, sym_dictionary_splat, sym_pair, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31965,65 +30658,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [9799] = 21, + [9393] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(876), 1, + ACTIONS(845), 1, anon_sym_RBRACE, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1104), 1, + STATE(1169), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1335), 2, + STATE(1323), 2, sym_dictionary_splat, sym_pair, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32039,65 +30737,69 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [9894] = 21, + [9495] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(878), 1, - anon_sym_RBRACE, - STATE(565), 1, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1104), 1, + STATE(1007), 1, sym_expression, - ACTIONS(299), 2, + STATE(1162), 1, + sym_list_splat, + STATE(1452), 1, + sym_type, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1335), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32113,65 +30815,133 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [9989] = 21, + [9596] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(851), 1, + anon_sym_else, + ACTIONS(853), 1, + anon_sym_except, + ACTIONS(855), 1, + anon_sym_finally, + STATE(432), 1, + sym_else_clause, + STATE(556), 1, + sym_finally_clause, + STATE(303), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(849), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(258), 1, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(847), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [9669] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(880), 1, - anon_sym_RBRACE, - STATE(565), 1, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1104), 1, + STATE(1007), 1, sym_expression, - ACTIONS(299), 2, + STATE(1162), 1, + sym_list_splat, + STATE(1437), 1, + sym_type, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1335), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32187,22 +30957,27 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [10084] = 8, + [9770] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, + ACTIONS(861), 1, anon_sym_else, - ACTIONS(886), 1, - anon_sym_elif, - STATE(269), 1, - aux_sym_if_statement_repeat1, - STATE(407), 1, - sym_elif_clause, - STATE(527), 1, + ACTIONS(863), 1, + anon_sym_except, + ACTIONS(865), 1, + anon_sym_finally, + STATE(418), 1, sym_else_clause, - ACTIONS(882), 12, + STATE(560), 1, + sym_finally_clause, + STATE(301), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(857), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -32214,7 +30989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(884), 33, + ACTIONS(859), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -32248,77 +31023,84 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [10152] = 3, + [9843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(888), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(869), 17, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(890), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(867), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - anon_sym_elif, + anon_sym_COLON, 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_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [10210] = 8, + 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_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_type_conversion, + [9904] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(838), 1, + ACTIONS(851), 1, anon_sym_else, - ACTIONS(896), 1, - anon_sym_elif, - STATE(308), 1, - aux_sym_if_statement_repeat1, - STATE(390), 1, - sym_elif_clause, - STATE(481), 1, + ACTIONS(855), 1, + anon_sym_finally, + ACTIONS(871), 1, + anon_sym_except, + STATE(432), 1, sym_else_clause, - ACTIONS(894), 12, + STATE(556), 1, + sym_finally_clause, + STATE(298), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(849), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -32329,7 +31111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(892), 33, + ACTIONS(847), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -32363,82 +31145,240 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [10278] = 8, + [9977] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(838), 1, - anon_sym_else, - ACTIONS(896), 1, - anon_sym_elif, - STATE(253), 1, - aux_sym_if_statement_repeat1, - STATE(390), 1, - sym_elif_clause, - STATE(468), 1, - sym_else_clause, - ACTIONS(882), 12, - sym__dedent, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(591), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(634), 1, + sym_primary_expression, + STATE(1007), 1, + sym_expression, + STATE(1162), 1, + sym_list_splat, + STATE(1457), 1, + sym_type, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(884), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, + STATE(876), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(658), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [10078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(875), 17, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(873), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + 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_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_type_conversion, + [10139] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(634), 1, + sym_primary_expression, + STATE(1007), 1, + sym_expression, + STATE(1162), 1, + sym_list_splat, + STATE(1458), 1, + sym_type, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, sym_true, sym_false, sym_none, - [10346] = 8, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(876), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(658), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [10240] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(838), 1, + ACTIONS(861), 1, anon_sym_else, - ACTIONS(896), 1, - anon_sym_elif, - STATE(266), 1, - aux_sym_if_statement_repeat1, - STATE(390), 1, - sym_elif_clause, - STATE(482), 1, + ACTIONS(865), 1, + anon_sym_finally, + ACTIONS(877), 1, + anon_sym_except, + STATE(418), 1, sym_else_clause, - ACTIONS(900), 12, - sym__dedent, + STATE(560), 1, + sym_finally_clause, + STATE(305), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(857), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -32449,7 +31389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(898), 33, + ACTIONS(859), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -32483,124 +31423,144 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [10414] = 9, + [10313] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(265), 1, - anon_sym_COMMA, - ACTIONS(273), 1, - anon_sym_COLON_EQ, - ACTIONS(902), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - STATE(1264), 1, - sym_string, - ACTIONS(275), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(297), 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(260), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(293), 16, - sym__newline, - anon_sym_DOT, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, + ACTIONS(591), 1, anon_sym_LBRACK, + ACTIONS(637), 1, 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__semicolon, - [10484] = 21, + ACTIONS(881), 1, + anon_sym_COLON, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(634), 1, + sym_primary_expression, + STATE(1061), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(879), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(876), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(658), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [10412] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(706), 1, + ACTIONS(717), 1, anon_sym_STAR, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(995), 1, + STATE(1007), 1, sym_expression, - STATE(1114), 1, + STATE(1162), 1, sym_list_splat, - STATE(1382), 1, + STATE(1460), 1, sym_type, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32616,64 +31576,69 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [10578] = 21, + [10513] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(904), 1, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(717), 1, anon_sym_STAR, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(1025), 1, + STATE(634), 1, + sym_primary_expression, + STATE(1007), 1, sym_expression, - STATE(1153), 1, - sym_type, - STATE(1258), 1, + STATE(1162), 1, sym_list_splat, - ACTIONS(75), 2, + STATE(1442), 1, + sym_type, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32689,64 +31654,69 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [10672] = 21, + [10614] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(706), 1, + ACTIONS(717), 1, anon_sym_STAR, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(995), 1, + STATE(1007), 1, sym_expression, - STATE(1114), 1, + STATE(1162), 1, sym_list_splat, - STATE(1412), 1, + STATE(1273), 1, sym_type, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32762,234 +31732,260 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [10766] = 3, + [10715] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 12, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ts_builtin_sym_end, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(591), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(634), 1, + sym_primary_expression, + STATE(1007), 1, + sym_expression, + STATE(1151), 1, + sym_type, + STATE(1162), 1, + sym_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(908), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - 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_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [10824] = 3, + STATE(876), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(658), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [10816] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(910), 12, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ts_builtin_sym_end, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(591), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(885), 1, + anon_sym_COLON, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(634), 1, + sym_primary_expression, + STATE(1045), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(912), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(883), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [10882] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(914), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(916), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(276), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - 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_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, + STATE(876), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(658), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [10915] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, + ACTIONS(386), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [10940] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(922), 1, - anon_sym_except, - STATE(263), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(920), 12, - sym__dedent, - sym__string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(574), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(887), 1, + anon_sym_STAR, + STATE(697), 1, + sym_primary_expression, + STATE(698), 1, + sym_string, + STATE(699), 1, + sym_template_string, + STATE(1057), 1, + sym_expression, + STATE(1186), 1, + sym_type, + STATE(1192), 1, + sym_list_splat, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(918), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(382), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [11002] = 3, + STATE(977), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(795), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [11016] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 12, + ACTIONS(861), 1, + anon_sym_else, + ACTIONS(865), 1, + anon_sym_finally, + ACTIONS(877), 1, + anon_sym_except, + STATE(427), 1, + sym_else_clause, + STATE(517), 1, + sym_finally_clause, + STATE(305), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(849), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -33001,7 +31997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(927), 38, + ACTIONS(847), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -33014,17 +32010,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -33040,62 +32031,67 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11060] = 20, + [11089] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(931), 1, - anon_sym_COLON, - STATE(565), 1, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1038), 1, + STATE(1007), 1, sym_expression, - ACTIONS(299), 2, + STATE(1162), 1, + sym_list_splat, + STATE(1454), 1, + sym_type, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(929), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33111,124 +32107,68 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [11152] = 8, + [11190] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(838), 1, - anon_sym_else, - ACTIONS(896), 1, - anon_sym_elif, - STATE(308), 1, - aux_sym_if_statement_repeat1, - STATE(390), 1, - sym_elif_clause, - STATE(496), 1, - sym_else_clause, - ACTIONS(935), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(53), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(933), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [11220] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(995), 1, + STATE(1169), 1, sym_expression, - STATE(1114), 1, - sym_list_splat, - STATE(1434), 1, - sym_type, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + STATE(1323), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33244,18 +32184,28 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [11314] = 5, + [11289] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, + ACTIONS(851), 1, + anon_sym_else, + ACTIONS(853), 1, anon_sym_except, - STATE(268), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(939), 12, + ACTIONS(855), 1, + anon_sym_finally, + STATE(440), 1, + sym_else_clause, + STATE(489), 1, + sym_finally_clause, + STATE(303), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(857), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -33266,7 +32216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(937), 35, + ACTIONS(859), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -33279,12 +32229,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, 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_match, anon_sym_def, @@ -33302,22 +32250,26 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11376] = 8, + [11362] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, + ACTIONS(851), 1, anon_sym_else, - ACTIONS(886), 1, - anon_sym_elif, - STATE(292), 1, - aux_sym_if_statement_repeat1, - STATE(407), 1, - sym_elif_clause, - STATE(511), 1, + ACTIONS(855), 1, + anon_sym_finally, + ACTIONS(871), 1, + anon_sym_except, + STATE(440), 1, sym_else_clause, - ACTIONS(894), 12, + STATE(489), 1, + sym_finally_clause, + STATE(298), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(857), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -33328,7 +32280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(892), 33, + ACTIONS(859), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -33362,76 +32314,103 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11444] = 8, + [11435] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, - anon_sym_else, - ACTIONS(886), 1, - anon_sym_elif, - STATE(277), 1, - aux_sym_if_statement_repeat1, - STATE(407), 1, - sym_elif_clause, - STATE(516), 1, - sym_else_clause, - ACTIONS(900), 12, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ts_builtin_sym_end, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(591), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(634), 1, + sym_primary_expression, + STATE(1007), 1, + sym_expression, + STATE(1162), 1, + sym_list_splat, + STATE(1431), 1, + sym_type, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(898), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [11512] = 5, + STATE(876), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(658), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [11536] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(944), 1, + ACTIONS(861), 1, + anon_sym_else, + ACTIONS(863), 1, anon_sym_except, - STATE(271), 2, + ACTIONS(865), 1, + anon_sym_finally, + STATE(427), 1, + sym_else_clause, + STATE(517), 1, + sym_finally_clause, + STATE(301), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - ACTIONS(939), 12, + ACTIONS(849), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -33443,7 +32422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(937), 35, + ACTIONS(847), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -33456,12 +32435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, 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_match, anon_sym_def, @@ -33479,119 +32456,139 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11574] = 5, + [11609] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(947), 1, - anon_sym_except, - STATE(272), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(920), 12, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, - ts_builtin_sym_end, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(603), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(691), 1, + sym_identifier, + ACTIONS(701), 1, + anon_sym_await, + ACTIONS(777), 1, + anon_sym_lambda, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(648), 1, + sym_primary_expression, + STATE(941), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(918), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + STATE(1013), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(697), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [11636] = 20, + STATE(876), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(658), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [11705] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - STATE(565), 1, + ACTIONS(691), 1, + sym_identifier, + ACTIONS(701), 1, + anon_sym_await, + ACTIONS(777), 1, + anon_sym_lambda, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(648), 1, sym_primary_expression, - STATE(1104), 1, + STATE(941), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1335), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(291), 3, + STATE(968), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33607,174 +32604,66 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [11728] = 3, + [11801] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(908), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [11786] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(890), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [11844] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(995), 1, + STATE(1087), 1, sym_expression, - STATE(1114), 1, - sym_list_splat, - STATE(1391), 1, - sym_type, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(889), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33790,123 +32679,142 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [11938] = 8, + [11897] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, - anon_sym_else, - ACTIONS(886), 1, - anon_sym_elif, - STATE(292), 1, - aux_sym_if_statement_repeat1, - STATE(407), 1, - sym_elif_clause, - STATE(459), 1, - sym_else_clause, - ACTIONS(935), 12, + ACTIONS(619), 1, + anon_sym_LBRACK, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(627), 1, sym__string_start, - ts_builtin_sym_end, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(891), 1, + sym_identifier, + ACTIONS(893), 1, anon_sym_LPAREN, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + STATE(704), 1, + sym_template_string, + STATE(706), 1, + sym_string, + STATE(722), 1, + sym_primary_expression, + STATE(1016), 1, + sym_expression, + STATE(1276), 1, + sym_with_item, + STATE(1441), 1, + sym_with_clause, + ACTIONS(623), 2, + sym_ellipsis, + sym_float, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(933), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(609), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(895), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [12006] = 20, + STATE(998), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(805), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [11995] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(952), 1, - anon_sym_COLON, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1075), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(950), 2, + ACTIONS(903), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33922,119 +32830,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [12098] = 3, + [12091] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(914), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(619), 1, anon_sym_LBRACK, + ACTIONS(621), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(916), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [12156] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(627), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(891), 1, + sym_identifier, + ACTIONS(893), 1, anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(897), 1, anon_sym_not, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(565), 1, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(595), 1, + STATE(722), 1, sym_primary_expression, - STATE(995), 1, + STATE(1016), 1, sym_expression, - STATE(1114), 1, - sym_list_splat, - STATE(1141), 1, - sym_type, - ACTIONS(299), 2, + STATE(1276), 1, + sym_with_item, + STATE(1434), 1, + sym_with_clause, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(609), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(895), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(998), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34050,119 +32906,66 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [12250] = 3, + [12189] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, + ACTIONS(51), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(927), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(69), 1, anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [12308] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(386), 1, anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(565), 1, - sym_string, - STATE(595), 1, + STATE(697), 1, sym_primary_expression, - STATE(995), 1, + STATE(698), 1, + sym_string, + STATE(699), 1, + sym_template_string, + STATE(1053), 1, sym_expression, - STATE(1114), 1, - sym_list_splat, - STATE(1444), 1, - sym_type, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(905), 2, + sym__newline, + sym__semicolon, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34178,119 +32981,66 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [12402] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(910), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(912), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [12460] = 21, + [12285] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(995), 1, + STATE(1070), 1, sym_expression, - STATE(1114), 1, - sym_list_splat, - STATE(1428), 1, - sym_type, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(907), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34306,64 +33056,66 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [12554] = 21, + [12381] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, + sym_identifier, + ACTIONS(386), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(565), 1, - sym_string, - STATE(595), 1, + STATE(697), 1, sym_primary_expression, - STATE(995), 1, + STATE(698), 1, + sym_string, + STATE(699), 1, + sym_template_string, + STATE(1053), 1, sym_expression, - STATE(1114), 1, - sym_list_splat, - STATE(1430), 1, - sym_type, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(909), 2, + sym__newline, + sym__semicolon, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34379,64 +33131,66 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [12648] = 21, + [12477] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(995), 1, + STATE(1071), 1, sym_expression, - STATE(1114), 1, - sym_list_splat, - STATE(1433), 1, - sym_type, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(911), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34452,64 +33206,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [12742] = 21, + [12573] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(619), 1, + anon_sym_LBRACK, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(627), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(891), 1, + sym_identifier, + ACTIONS(893), 1, anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(897), 1, anon_sym_not, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(565), 1, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(595), 1, + STATE(722), 1, sym_primary_expression, - STATE(995), 1, + STATE(1016), 1, sym_expression, - STATE(1114), 1, - sym_list_splat, - STATE(1209), 1, - sym_type, - ACTIONS(299), 2, + STATE(1276), 1, + sym_with_item, + STATE(1426), 1, + sym_with_clause, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(609), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(895), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(998), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34525,62 +33282,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [12836] = 20, + [12671] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(619), 1, anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(618), 1, + ACTIONS(627), 1, sym__string_start, - ACTIONS(954), 1, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(891), 1, sym_identifier, - ACTIONS(956), 1, - anon_sym_STAR, - ACTIONS(960), 1, - anon_sym_COLON, - ACTIONS(962), 1, + ACTIONS(893), 1, + anon_sym_LPAREN, + ACTIONS(897), 1, anon_sym_not, - ACTIONS(964), 1, + ACTIONS(899), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(901), 1, anon_sym_await, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(1028), 1, + STATE(722), 1, + sym_primary_expression, + STATE(1016), 1, sym_expression, - ACTIONS(614), 2, + STATE(1276), 1, + sym_with_item, + STATE(1435), 1, + sym_with_clause, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(609), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(895), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(998), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34596,62 +33358,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [12927] = 20, + [12769] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(619), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(891), 1, + sym_identifier, + ACTIONS(897), 1, anon_sym_not, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(565), 1, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + ACTIONS(913), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(595), 1, + STATE(722), 1, sym_primary_expression, - STATE(1052), 1, + STATE(1016), 1, sym_expression, - STATE(1320), 1, - sym_list_splat, - ACTIONS(299), 2, + STATE(1305), 1, + sym_with_item, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(609), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(895), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(998), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34667,61 +33434,66 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [13018] = 19, + [12867] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(590), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(684), 1, + ACTIONS(691), 1, sym_identifier, - ACTIONS(694), 1, + ACTIONS(701), 1, anon_sym_await, - ACTIONS(748), 1, + ACTIONS(777), 1, anon_sym_lambda, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(648), 1, sym_primary_expression, - STATE(920), 1, + STATE(941), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(931), 2, + STATE(969), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34737,62 +33509,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [13107] = 20, + [12963] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(610), 1, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(619), 1, anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(618), 1, + ACTIONS(627), 1, sym__string_start, - ACTIONS(954), 1, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(891), 1, sym_identifier, - ACTIONS(962), 1, + ACTIONS(897), 1, anon_sym_not, - ACTIONS(964), 1, + ACTIONS(899), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(968), 1, - anon_sym_LPAREN, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, + ACTIONS(915), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(987), 1, + STATE(722), 1, + sym_primary_expression, + STATE(1016), 1, sym_expression, - STATE(1206), 1, + STATE(1305), 1, sym_with_item, - STATE(1385), 1, - sym_with_clause, - ACTIONS(614), 2, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(609), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(895), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(998), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34808,65 +33585,9 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [13198] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(974), 1, - anon_sym_elif, - STATE(292), 1, - aux_sym_if_statement_repeat1, - STATE(407), 1, - sym_elif_clause, - ACTIONS(970), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(972), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [13261] = 19, + [13061] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -34877,24 +33598,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(386), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - STATE(689), 1, + STATE(697), 1, sym_primary_expression, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(1018), 1, + STATE(699), 1, + sym_template_string, + STATE(1053), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(977), 2, + ACTIONS(917), 2, sym__newline, sym__semicolon, ACTIONS(47), 3, @@ -34906,20 +33631,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34935,61 +33660,66 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [13350] = 19, + [13157] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(684), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, - ACTIONS(694), 1, + ACTIONS(386), 1, anon_sym_await, - ACTIONS(748), 1, - anon_sym_lambda, - STATE(565), 1, - sym_string, - STATE(590), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(697), 1, sym_primary_expression, - STATE(921), 1, + STATE(698), 1, + sym_string, + STATE(699), 1, + sym_template_string, + STATE(1053), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(989), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(594), 3, + ACTIONS(919), 2, + sym__newline, + sym__semicolon, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35005,62 +33735,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [13439] = 20, + [13253] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(962), 1, - anon_sym_not, - ACTIONS(964), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(979), 1, - anon_sym_RPAREN, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(987), 1, + STATE(634), 1, + sym_primary_expression, + STATE(1073), 1, sym_expression, - STATE(1256), 1, - sym_with_item, - ACTIONS(614), 2, + STATE(1345), 1, + sym_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35076,61 +33811,66 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [13530] = 19, + [13351] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - STATE(565), 1, + ACTIONS(691), 1, + sym_identifier, + ACTIONS(701), 1, + anon_sym_await, + ACTIONS(777), 1, + anon_sym_lambda, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(648), 1, sym_primary_expression, - STATE(1056), 1, + STATE(944), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(291), 3, + STATE(1012), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35146,61 +33886,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [13619] = 19, + [13447] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, + ACTIONS(611), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(619), 1, anon_sym_LBRACK, - ACTIONS(642), 1, - anon_sym_not, - ACTIONS(684), 1, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(891), 1, sym_identifier, - ACTIONS(694), 1, - anon_sym_await, - ACTIONS(748), 1, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, anon_sym_lambda, - STATE(565), 1, + ACTIONS(901), 1, + anon_sym_await, + ACTIONS(921), 1, + anon_sym_STAR, + ACTIONS(923), 1, + anon_sym_COLON, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(590), 1, + STATE(722), 1, sym_primary_expression, - STATE(920), 1, + STATE(1054), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(623), 2, sym_ellipsis, sym_float, - STATE(945), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(594), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(609), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(895), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(998), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35216,62 +33962,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [13708] = 20, + [13545] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(610), 1, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(619), 1, anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(618), 1, + ACTIONS(627), 1, sym__string_start, - ACTIONS(954), 1, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(891), 1, sym_identifier, - ACTIONS(962), 1, + ACTIONS(897), 1, anon_sym_not, - ACTIONS(964), 1, + ACTIONS(899), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(968), 1, - anon_sym_LPAREN, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, + ACTIONS(925), 1, + anon_sym_STAR, + ACTIONS(927), 1, + anon_sym_COLON, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(987), 1, + STATE(722), 1, + sym_primary_expression, + STATE(1038), 1, sym_expression, - STATE(1206), 1, - sym_with_item, - STATE(1431), 1, - sym_with_clause, - ACTIONS(614), 2, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(609), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(895), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(998), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35287,61 +34038,66 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [13799] = 19, + [13643] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - STATE(565), 1, + ACTIONS(691), 1, + sym_identifier, + ACTIONS(701), 1, + anon_sym_await, + ACTIONS(777), 1, + anon_sym_lambda, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(648), 1, sym_primary_expression, - STATE(1057), 1, + STATE(935), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(983), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(291), 3, + STATE(992), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35357,101 +34113,137 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [13888] = 19, + [13739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(929), 13, sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, - anon_sym_await, - ACTIONS(561), 1, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(567), 1, - anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, - sym_string, - STATE(1018), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(985), 2, - sym__newline, - sym__semicolon, - ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(77), 4, + sym_ellipsis, + sym_float, + ACTIONS(931), 38, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + [13798] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(933), 38, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(940), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(773), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [13977] = 8, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [13857] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(265), 1, + ACTIONS(270), 1, anon_sym_COMMA, - ACTIONS(273), 1, + ACTIONS(278), 1, anon_sym_COLON_EQ, - ACTIONS(987), 1, - sym_identifier, - ACTIONS(275), 2, + ACTIONS(937), 1, + anon_sym_for, + ACTIONS(939), 1, + anon_sym_with, + ACTIONS(941), 1, + anon_sym_def, + ACTIONS(280), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(293), 10, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym__semicolon, - ACTIONS(297), 13, + ACTIONS(302), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35465,19 +34257,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(260), 21, + ACTIONS(265), 15, anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -35486,133 +34273,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + ACTIONS(298), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, anon_sym_is, - [14044] = 20, + sym__semicolon, + [13930] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(861), 1, + anon_sym_else, + ACTIONS(947), 1, + anon_sym_elif, + STATE(331), 1, + aux_sym_if_statement_repeat1, + STATE(431), 1, + sym_elif_clause, + STATE(528), 1, + sym_else_clause, + ACTIONS(943), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(610), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(612), 1, anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, - anon_sym_not, - ACTIONS(964), 1, - anon_sym_lambda, - ACTIONS(966), 1, - anon_sym_await, - ACTIONS(989), 1, - anon_sym_RPAREN, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, - sym_string, - STATE(987), 1, - sym_expression, - STATE(1256), 1, - sym_with_item, - ACTIONS(614), 2, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(608), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(600), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(958), 5, + ACTIONS(945), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(982), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(796), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [14135] = 20, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [13999] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(610), 1, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(619), 1, anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(618), 1, + ACTIONS(627), 1, sym__string_start, - ACTIONS(954), 1, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(891), 1, sym_identifier, - ACTIONS(962), 1, + ACTIONS(897), 1, anon_sym_not, - ACTIONS(964), 1, + ACTIONS(899), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(968), 1, - anon_sym_LPAREN, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(987), 1, + STATE(722), 1, + sym_primary_expression, + STATE(1016), 1, sym_expression, - STATE(1206), 1, + STATE(1305), 1, sym_with_item, - STATE(1402), 1, - sym_with_clause, - ACTIONS(614), 2, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(609), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(895), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(998), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35628,300 +34423,137 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [14226] = 19, + [14094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(949), 13, sym__string_start, - ACTIONS(571), 1, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, - sym_primary_expression, - STATE(1082), 1, - sym_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(991), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(271), 5, + sym_ellipsis, + sym_float, + ACTIONS(951), 38, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [14315] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, + anon_sym_class, anon_sym_not, - ACTIONS(964), 1, anon_sym_lambda, - ACTIONS(966), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(968), 1, + sym_true, + sym_false, + sym_none, + [14153] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(955), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, anon_sym_LPAREN, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, - sym_string, - STATE(987), 1, - sym_expression, - STATE(1206), 1, - sym_with_item, - STATE(1410), 1, - sym_with_clause, - ACTIONS(614), 2, - sym_ellipsis, - sym_float, - ACTIONS(608), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(600), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(958), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(982), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(796), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [14406] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, - anon_sym_await, - ACTIONS(561), 1, - anon_sym_LPAREN, - ACTIONS(567), 1, - anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, - sym_string, - STATE(1018), 1, - sym_expression, - ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(993), 2, - sym__newline, - sym__semicolon, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(327), 5, + ACTIONS(953), 38, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(940), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(773), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [14495] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + anon_sym_class, anon_sym_not, - ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(331), 1, anon_sym_await, - ACTIONS(561), 1, - anon_sym_LPAREN, - ACTIONS(567), 1, - anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, - sym_string, - STATE(1018), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(995), 2, - sym__newline, - sym__semicolon, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(940), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(773), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [14584] = 6, + [14212] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(997), 1, + ACTIONS(861), 1, + anon_sym_else, + ACTIONS(947), 1, anon_sym_elif, - STATE(308), 1, + STATE(331), 1, aux_sym_if_statement_repeat1, - STATE(390), 1, + STATE(431), 1, sym_elif_clause, - ACTIONS(970), 12, - sym__dedent, + STATE(542), 1, + sym_else_clause, + ACTIONS(957), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -35932,7 +34564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(972), 34, + ACTIONS(959), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -35945,7 +34577,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -35967,293 +34598,130 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [14647] = 19, + [14281] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(851), 1, + anon_sym_else, + ACTIONS(961), 1, + anon_sym_elif, + STATE(384), 1, + aux_sym_if_statement_repeat1, + STATE(433), 1, + sym_elif_clause, + STATE(529), 1, + sym_else_clause, + ACTIONS(943), 13, + sym__dedent, sym__string_start, - ACTIONS(590), 1, + sym__template_string_start, anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(642), 1, - anon_sym_not, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(694), 1, - anon_sym_await, - ACTIONS(748), 1, - anon_sym_lambda, - STATE(565), 1, - sym_string, - STATE(590), 1, - sym_primary_expression, - STATE(920), 1, - sym_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(986), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(594), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(690), 5, + sym_ellipsis, + sym_float, + ACTIONS(945), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [14736] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(642), 1, + anon_sym_class, anon_sym_not, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(694), 1, - anon_sym_await, - ACTIONS(748), 1, anon_sym_lambda, - STATE(565), 1, - sym_string, - STATE(590), 1, - sym_primary_expression, - STATE(913), 1, - sym_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(979), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(594), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(301), 4, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(690), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [14825] = 19, + [14350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(949), 13, + sym__dedent, sym__string_start, - ACTIONS(571), 1, + sym__template_string_start, anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, - sym_primary_expression, - STATE(1076), 1, - sym_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(1000), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(271), 5, + sym_ellipsis, + sym_float, + ACTIONS(951), 38, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [14914] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, + anon_sym_class, anon_sym_not, - ACTIONS(964), 1, anon_sym_lambda, - ACTIONS(966), 1, - anon_sym_await, - ACTIONS(1002), 1, - anon_sym_STAR, - ACTIONS(1004), 1, - anon_sym_COLON, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, - sym_string, - STATE(1012), 1, - sym_expression, - ACTIONS(614), 2, - sym_ellipsis, - sym_float, - ACTIONS(608), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(600), 4, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(958), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(982), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(796), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [15005] = 3, + [14409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1006), 12, + ACTIONS(965), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -36264,7 +34732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1008), 36, + ACTIONS(963), 38, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36277,6 +34745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_async, anon_sym_for, @@ -36286,6 +34755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -36301,70 +34771,84 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15061] = 3, + [14468] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(824), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, + ACTIONS(851), 1, + anon_sym_else, + ACTIONS(961), 1, + anon_sym_elif, + STATE(293), 1, + aux_sym_if_statement_repeat1, + STATE(433), 1, + sym_elif_clause, + STATE(512), 1, + sym_else_clause, + ACTIONS(969), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(822), 32, - sym__newline, - anon_sym_DOT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(967), 33, + anon_sym_import, anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym__semicolon, - [15117] = 5, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [14537] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1014), 1, - anon_sym_case, - STATE(320), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1010), 12, + ACTIONS(851), 1, + anon_sym_else, + ACTIONS(961), 1, + anon_sym_elif, + STATE(308), 1, + aux_sym_if_statement_repeat1, + STATE(433), 1, + sym_elif_clause, + STATE(524), 1, + sym_else_clause, + ACTIONS(973), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -36375,7 +34859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1012), 33, + ACTIONS(971), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36409,253 +34893,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15177] = 7, + [14606] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(578), 1, - anon_sym_COLON_EQ, - ACTIONS(580), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(573), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(586), 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(293), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - ACTIONS(260), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - [15241] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1023), 1, - anon_sym_COLON_EQ, - ACTIONS(1025), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1018), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1027), 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(1016), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - ACTIONS(1021), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - [15305] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(820), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(818), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym__semicolon, - [15361] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, - anon_sym_not, - ACTIONS(964), 1, - anon_sym_lambda, - ACTIONS(966), 1, - anon_sym_await, - ACTIONS(1004), 1, - anon_sym_COLON, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, - sym_string, - STATE(1012), 1, - sym_expression, - ACTIONS(614), 2, - sym_ellipsis, - sym_float, - ACTIONS(608), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(600), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(958), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(982), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(796), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [15449] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1033), 1, - anon_sym_case, - STATE(320), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1029), 12, + ACTIONS(979), 1, + anon_sym_except, + STATE(298), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(977), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -36666,7 +34915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1031), 33, + ACTIONS(975), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36679,10 +34928,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, 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_match, anon_sym_def, @@ -36700,12 +34951,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15509] = 3, + [14669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1036), 12, + ACTIONS(929), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -36716,7 +34968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1038), 36, + ACTIONS(931), 38, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36729,6 +34981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_async, anon_sym_for, @@ -36738,6 +34991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -36753,11 +35007,80 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15565] = 3, + [14728] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(270), 1, + anon_sym_COMMA, + ACTIONS(278), 1, + anon_sym_COLON_EQ, + ACTIONS(982), 1, + anon_sym_for, + ACTIONS(984), 1, + anon_sym_with, + ACTIONS(986), 1, + anon_sym_def, + ACTIONS(280), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(302), 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(265), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(298), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [14801] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1040), 12, + ACTIONS(988), 1, + anon_sym_except, + STATE(301), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(977), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -36769,7 +35092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1042), 36, + ACTIONS(975), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36787,7 +35110,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_match, @@ -36806,11 +35128,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15621] = 3, + [14864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1044), 12, + ACTIONS(935), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -36822,7 +35145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1046), 36, + ACTIONS(933), 38, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36835,6 +35158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_async, anon_sym_for, @@ -36844,6 +35168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -36859,12 +35184,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15677] = 3, + [14923] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1048), 12, + ACTIONS(995), 1, + anon_sym_except, + STATE(303), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(993), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -36875,7 +35206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1050), 36, + ACTIONS(991), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36893,7 +35224,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_match, @@ -36912,64 +35242,91 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15733] = 3, + [14986] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1052), 12, - sym__string_start, - ts_builtin_sym_end, + ACTIONS(611), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(619), 1, anon_sym_LBRACK, + ACTIONS(621), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(891), 1, + sym_identifier, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + ACTIONS(927), 1, + anon_sym_COLON, + STATE(704), 1, + sym_template_string, + STATE(706), 1, + sym_string, + STATE(722), 1, + sym_primary_expression, + STATE(1038), 1, + sym_expression, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(1054), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(617), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(609), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(895), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [15789] = 3, + STATE(998), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(805), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [15081] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1056), 12, + ACTIONS(998), 1, + anon_sym_except, + STATE(305), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(993), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -36981,7 +35338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1058), 36, + ACTIONS(991), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36999,7 +35356,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_match, @@ -37018,11 +35374,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15845] = 3, + [15144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1060), 12, + ACTIONS(965), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -37034,7 +35391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1062), 36, + ACTIONS(963), 38, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37047,6 +35404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_async, anon_sym_for, @@ -37056,6 +35414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -37071,11 +35430,22 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15901] = 3, + [15203] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1064), 12, + ACTIONS(861), 1, + anon_sym_else, + ACTIONS(947), 1, + anon_sym_elif, + STATE(292), 1, + aux_sym_if_statement_repeat1, + STATE(431), 1, + sym_elif_clause, + STATE(534), 1, + sym_else_clause, + ACTIONS(973), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -37087,7 +35457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1066), 36, + ACTIONS(971), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37100,13 +35470,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, 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_match, anon_sym_def, @@ -37124,12 +35491,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15957] = 3, + [15272] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1068), 12, + ACTIONS(851), 1, + anon_sym_else, + ACTIONS(961), 1, + anon_sym_elif, + STATE(384), 1, + aux_sym_if_statement_repeat1, + STATE(433), 1, + sym_elif_clause, + STATE(472), 1, + sym_else_clause, + ACTIONS(957), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37140,7 +35518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1070), 36, + ACTIONS(959), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37153,13 +35531,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, 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_match, anon_sym_def, @@ -37177,131 +35552,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16013] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(265), 1, - anon_sym_COMMA, - ACTIONS(273), 1, - anon_sym_COLON_EQ, - ACTIONS(275), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(297), 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(260), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(293), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [16077] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1072), 1, - anon_sym_COMMA, - ACTIONS(1075), 1, - anon_sym_COLON_EQ, - ACTIONS(1077), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1079), 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(1021), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1016), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [16141] = 5, + [15341] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1081), 1, - anon_sym_case, - STATE(333), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1010), 12, - sym__dedent, + ACTIONS(861), 1, + anon_sym_else, + ACTIONS(947), 1, + anon_sym_elif, + STATE(288), 1, + aux_sym_if_statement_repeat1, + STATE(431), 1, + sym_elif_clause, + STATE(498), 1, + sym_else_clause, + ACTIONS(969), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37312,7 +35579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1012), 33, + ACTIONS(967), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37346,17 +35613,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16201] = 5, + [15410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1083), 1, - anon_sym_case, - STATE(333), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1029), 12, - sym__dedent, + ACTIONS(955), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37367,7 +35630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1031), 33, + ACTIONS(953), 38, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37380,12 +35643,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -37401,589 +35669,567 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16261] = 3, + [15469] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1036), 12, - sym__dedent, - sym__string_start, + ACTIONS(611), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(619), 1, anon_sym_LBRACK, + ACTIONS(621), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(891), 1, + sym_identifier, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + ACTIONS(923), 1, + anon_sym_COLON, + STATE(704), 1, + sym_template_string, + STATE(706), 1, + sym_string, + STATE(722), 1, + sym_primary_expression, + STATE(1054), 1, + sym_expression, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(1038), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(617), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(609), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(895), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, + STATE(998), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(805), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [15564] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, + ACTIONS(386), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [16317] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1040), 12, - sym__dedent, - sym__string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(574), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + STATE(697), 1, + sym_primary_expression, + STATE(698), 1, + sym_string, + STATE(699), 1, + sym_template_string, + STATE(949), 1, + sym_expression, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1042), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(382), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [16373] = 3, + STATE(977), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(795), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [15656] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1044), 12, - sym__dedent, - sym__string_start, + ACTIONS(611), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(619), 1, anon_sym_LBRACK, + ACTIONS(621), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(891), 1, + sym_identifier, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + STATE(704), 1, + sym_template_string, + STATE(706), 1, + sym_string, + STATE(722), 1, + sym_primary_expression, + STATE(1010), 1, + sym_expression, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(1046), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(617), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(609), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(895), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, + STATE(998), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(805), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [15748] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, + ACTIONS(386), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [16429] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1048), 12, - sym__dedent, - sym__string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(574), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + STATE(697), 1, + sym_primary_expression, + STATE(698), 1, + sym_string, + STATE(699), 1, + sym_template_string, + STATE(983), 1, + sym_expression, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1050), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(382), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [16485] = 3, + STATE(977), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(795), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [15840] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1052), 12, - sym__dedent, - sym__string_start, + ACTIONS(611), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(619), 1, anon_sym_LBRACK, + ACTIONS(621), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(891), 1, + sym_identifier, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + STATE(704), 1, + sym_template_string, + STATE(706), 1, + sym_string, + STATE(722), 1, + sym_primary_expression, + STATE(1003), 1, + sym_expression, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(1054), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(617), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(609), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(895), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [16541] = 3, + STATE(998), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(805), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [15932] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1056), 12, - sym__dedent, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(591), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(637), 1, + anon_sym_not, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(634), 1, + sym_primary_expression, + STATE(1131), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1058), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [16597] = 3, + STATE(876), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(658), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [16024] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1060), 12, - sym__dedent, - sym__string_start, + ACTIONS(611), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(619), 1, anon_sym_LBRACK, + ACTIONS(621), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(891), 1, + sym_identifier, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + STATE(704), 1, + sym_template_string, + STATE(706), 1, + sym_string, + STATE(722), 1, + sym_primary_expression, + STATE(1005), 1, + sym_expression, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(1062), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(617), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(609), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(895), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [16653] = 3, + STATE(998), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(805), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [16116] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1064), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1066), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(263), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [16709] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1068), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, + ACTIONS(288), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1070), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, + ACTIONS(300), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(308), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [16765] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1006), 12, - sym__dedent, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1008), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [16821] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(960), 1, - anon_sym_COLON, - ACTIONS(962), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(964), 1, - anon_sym_lambda, - ACTIONS(966), 1, - anon_sym_await, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(1028), 1, + STATE(634), 1, + sym_primary_expression, + STATE(1115), 1, sym_expression, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37999,60 +36245,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [16909] = 19, + [16208] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(962), 1, - anon_sym_not, - ACTIONS(964), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(308), 1, anon_sym_await, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(987), 1, + STATE(634), 1, + sym_primary_expression, + STATE(1175), 1, sym_expression, - STATE(1256), 1, - sym_with_item, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38068,58 +36317,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [16997] = 18, + [16300] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(590), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(694), 1, - anon_sym_await, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(634), 1, sym_primary_expression, - STATE(885), 1, + STATE(1138), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38135,112 +36389,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [17082] = 5, + [16392] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, - anon_sym_else, - STATE(533), 1, - sym_else_clause, - ACTIONS(1086), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1088), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, + ACTIONS(300), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(308), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [17141] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(602), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(964), 1, - anon_sym_lambda, - ACTIONS(966), 1, - anon_sym_await, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(1047), 1, + STATE(634), 1, + sym_primary_expression, + STATE(902), 1, sym_expression, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38256,171 +36461,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [17226] = 5, + [16484] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, - anon_sym_else, - STATE(556), 1, - sym_else_clause, - ACTIONS(1090), 12, - sym__string_start, - ts_builtin_sym_end, + ACTIONS(611), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(619), 1, anon_sym_LBRACK, + ACTIONS(621), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1092), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [17285] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(836), 1, - anon_sym_finally, - STATE(542), 1, - sym_finally_clause, - ACTIONS(1094), 12, + ACTIONS(627), 1, sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1096), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(891), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [17344] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(897), 1, anon_sym_not, - ACTIONS(1098), 1, - sym_identifier, - ACTIONS(1102), 1, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, anon_sym_await, - STATE(565), 1, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(595), 1, + STATE(722), 1, sym_primary_expression, - STATE(908), 1, + STATE(999), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(623), 2, sym_ellipsis, sym_float, - STATE(377), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(609), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1100), 5, + ACTIONS(895), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(998), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 14, + STATE(805), 17, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -38432,58 +36533,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [17431] = 18, + [16576] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1024), 1, + STATE(1140), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38499,58 +36605,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [17516] = 18, + [16668] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(619), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(891), 1, + sym_identifier, + ACTIONS(897), 1, anon_sym_not, - STATE(565), 1, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(595), 1, + STATE(722), 1, sym_primary_expression, - STATE(898), 1, + STATE(1008), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(609), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(895), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(998), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38566,167 +36677,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [17601] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1106), 1, - anon_sym_COMMA, - ACTIONS(1113), 1, - anon_sym_EQ, - ACTIONS(1111), 14, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1109), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1104), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [17662] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 1, - anon_sym_else, - STATE(467), 1, - sym_else_clause, - ACTIONS(1115), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1117), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [17721] = 18, + [16760] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1115), 1, + STATE(1136), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38742,112 +36749,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [17806] = 5, + [16852] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(836), 1, - anon_sym_finally, - STATE(497), 1, - sym_finally_clause, - ACTIONS(1119), 12, - sym__string_start, - ts_builtin_sym_end, + ACTIONS(611), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(619), 1, anon_sym_LBRACK, + ACTIONS(621), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1121), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [17865] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(891), 1, sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(595), 1, + STATE(722), 1, sym_primary_expression, - STATE(1123), 1, + STATE(1009), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(609), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(895), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(998), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38863,8 +36821,9 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [17950] = 18, + [16944] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -38875,19 +36834,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(386), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - STATE(689), 1, + STATE(697), 1, sym_primary_expression, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(946), 1, + STATE(699), 1, + sym_template_string, + STATE(1084), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -38901,20 +36864,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38930,166 +36893,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [18035] = 5, + [17036] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, - anon_sym_else, - STATE(522), 1, - sym_else_clause, - ACTIONS(1123), 12, - sym__string_start, - ts_builtin_sym_end, + ACTIONS(611), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(619), 1, anon_sym_LBRACK, + ACTIONS(621), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1125), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [18094] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 1, - anon_sym_else, - STATE(529), 1, - sym_else_clause, - ACTIONS(1127), 12, + ACTIONS(627), 1, sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1129), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(891), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [18153] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(595), 1, + STATE(722), 1, sym_primary_expression, - STATE(1085), 1, + STATE(995), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(609), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(895), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(998), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39105,58 +36965,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [18238] = 18, + [17128] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(1072), 1, + STATE(634), 1, + sym_primary_expression, + STATE(1141), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39172,58 +37037,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [18323] = 18, + [17220] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(958), 1, + STATE(634), 1, + sym_primary_expression, + STATE(1052), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39239,12 +37109,20 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [18408] = 3, + [17312] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1131), 12, + ACTIONS(1005), 1, + anon_sym_elif, + STATE(331), 1, + aux_sym_if_statement_repeat1, + STATE(431), 1, + sym_elif_clause, + ACTIONS(1001), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -39256,7 +37134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1133), 35, + ACTIONS(1003), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -39269,7 +37147,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_async, anon_sym_for, @@ -39292,111 +37169,61 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [18463] = 5, + [17376] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, - anon_sym_else, - STATE(538), 1, - sym_else_clause, - ACTIONS(1135), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1137), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(263), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [18522] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(1121), 1, + STATE(634), 1, + sym_primary_expression, + STATE(1128), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39412,58 +37239,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [18607] = 18, + [17468] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(927), 1, + STATE(634), 1, + sym_primary_expression, + STATE(1159), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39479,58 +37311,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [18692] = 18, + [17560] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(590), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(694), 1, - anon_sym_await, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(634), 1, sym_primary_expression, - STATE(941), 1, + STATE(881), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39546,58 +37383,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [18777] = 18, + [17652] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, + sym_identifier, + ACTIONS(386), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, + STATE(697), 1, sym_primary_expression, - STATE(1147), 1, + STATE(698), 1, + sym_string, + STATE(699), 1, + sym_template_string, + STATE(1025), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39613,110 +37455,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [18862] = 3, + [17744] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1139), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1141), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(263), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [18917] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(966), 1, + STATE(634), 1, + sym_primary_expression, + STATE(1107), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39732,58 +37527,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [19002] = 18, + [17836] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, + ACTIONS(691), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(701), 1, anon_sym_await, - ACTIONS(561), 1, - anon_sym_LPAREN, - ACTIONS(567), 1, - anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(967), 1, + STATE(648), 1, + sym_primary_expression, + STATE(878), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39799,8 +37599,9 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [19087] = 18, + [17928] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -39811,19 +37612,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(386), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - STATE(689), 1, + STATE(697), 1, sym_primary_expression, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(977), 1, + STATE(699), 1, + sym_template_string, + STATE(1089), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -39837,20 +37642,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39866,58 +37671,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [19172] = 18, + [18020] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, + sym_identifier, + ACTIONS(386), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, + STATE(697), 1, sym_primary_expression, - STATE(1096), 1, + STATE(698), 1, + sym_string, + STATE(699), 1, + sym_template_string, + STATE(1006), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39933,58 +37743,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [19257] = 18, + [18112] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(619), 1, + anon_sym_LBRACK, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(627), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(891), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(561), 1, - anon_sym_LPAREN, - ACTIONS(567), 1, - anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(1068), 1, + STATE(722), 1, + sym_primary_expression, + STATE(1022), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(609), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(895), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(998), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40000,113 +37815,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [19342] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1025), 1, - anon_sym_EQ, - ACTIONS(1018), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1016), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - ACTIONS(1027), 14, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1021), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - [19403] = 18, + [18204] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(590), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(684), 1, + ACTIONS(691), 1, sym_identifier, - ACTIONS(694), 1, + ACTIONS(701), 1, anon_sym_await, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(648), 1, sym_primary_expression, - STATE(875), 1, + STATE(890), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40122,58 +37887,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [19488] = 18, + [18296] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(960), 1, + STATE(634), 1, + sym_primary_expression, + STATE(1068), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40189,58 +37959,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [19573] = 18, + [18388] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(590), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(684), 1, + ACTIONS(691), 1, sym_identifier, - ACTIONS(694), 1, + ACTIONS(701), 1, anon_sym_await, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(648), 1, sym_primary_expression, - STATE(877), 1, + STATE(993), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40256,58 +38031,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [19658] = 18, + [18480] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - STATE(565), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(691), 1, + sym_identifier, + ACTIONS(701), 1, + anon_sym_await, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(648), 1, sym_primary_expression, - STATE(899), 1, + STATE(894), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40323,58 +38103,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [19743] = 18, + [18572] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(684), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, - ACTIONS(694), 1, + ACTIONS(386), 1, anon_sym_await, - STATE(565), 1, - sym_string, - STATE(590), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(697), 1, sym_primary_expression, - STATE(878), 1, + STATE(698), 1, + sym_string, + STATE(699), 1, + sym_template_string, + STATE(1030), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40390,62 +38175,68 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [19828] = 18, + [18664] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(310), 1, sym__string_start, - ACTIONS(590), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(684), 1, + ACTIONS(1008), 1, sym_identifier, - ACTIONS(694), 1, + ACTIONS(1012), 1, anon_sym_await, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(634), 1, sym_primary_expression, - STATE(880), 1, + STATE(918), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + STATE(455), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(1010), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 15, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -40457,58 +38248,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [19913] = 18, + [18758] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(684), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, - ACTIONS(694), 1, + ACTIONS(386), 1, anon_sym_await, - STATE(565), 1, - sym_string, - STATE(590), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(697), 1, sym_primary_expression, - STATE(881), 1, + STATE(698), 1, + sym_string, + STATE(699), 1, + sym_template_string, + STATE(1033), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40524,8 +38320,9 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [19998] = 18, + [18850] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -40536,19 +38333,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(386), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - STATE(689), 1, + STATE(697), 1, sym_primary_expression, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(1035), 1, + STATE(699), 1, + sym_template_string, + STATE(953), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -40562,20 +38363,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40591,62 +38392,153 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [20083] = 5, + [18942] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(838), 1, - anon_sym_else, - STATE(471), 1, - sym_else_clause, - ACTIONS(1090), 12, - sym__dedent, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(591), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(637), 1, + anon_sym_not, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(634), 1, + sym_primary_expression, + STATE(918), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1092), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + STATE(876), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(658), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [19034] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(634), 1, + sym_primary_expression, + STATE(1039), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, sym_true, sym_false, sym_none, - [20142] = 18, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(876), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(658), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [19126] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -40657,19 +38549,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(386), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - STATE(689), 1, + STATE(697), 1, sym_primary_expression, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(939), 1, + STATE(699), 1, + sym_template_string, + STATE(1170), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -40683,20 +38579,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40712,58 +38608,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [20227] = 18, + [19218] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(684), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, - ACTIONS(694), 1, + ACTIONS(386), 1, anon_sym_await, - STATE(565), 1, - sym_string, - STATE(590), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(697), 1, sym_primary_expression, - STATE(887), 1, + STATE(698), 1, + sym_string, + STATE(699), 1, + sym_template_string, + STATE(1085), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40779,58 +38680,124 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [20312] = 18, + [19310] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(270), 1, + anon_sym_COMMA, + ACTIONS(278), 1, + anon_sym_COLON_EQ, + ACTIONS(1014), 1, + sym__string_start, + STATE(1288), 1, + sym_string, + ACTIONS(280), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(302), 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(265), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(298), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [19380] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1089), 1, + STATE(888), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40846,222 +38813,153 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [20397] = 3, + [19472] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1145), 12, - sym__dedent, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(591), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(637), 1, + anon_sym_not, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(634), 1, + sym_primary_expression, + STATE(892), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1143), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [20452] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - anon_sym_else, - STATE(486), 1, - sym_else_clause, - ACTIONS(1086), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1088), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(276), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [20511] = 5, + STATE(876), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(658), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [19564] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(842), 1, - anon_sym_finally, - STATE(488), 1, - sym_finally_clause, - ACTIONS(1094), 12, - sym__dedent, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(591), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(637), 1, + anon_sym_not, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(634), 1, + sym_primary_expression, + STATE(878), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1096), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [20570] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - anon_sym_else, - STATE(500), 1, - sym_else_clause, - ACTIONS(1115), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1117), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(276), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [20629] = 18, + STATE(876), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(658), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [19656] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -41072,19 +38970,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(386), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - STATE(689), 1, + STATE(697), 1, sym_primary_expression, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(952), 1, + STATE(699), 1, + sym_template_string, + STATE(1056), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -41098,20 +39000,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41127,220 +39029,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [20714] = 5, + [19748] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(842), 1, - anon_sym_finally, - STATE(505), 1, - sym_finally_clause, - ACTIONS(1119), 12, - sym__dedent, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(591), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(637), 1, + anon_sym_not, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(634), 1, + sym_primary_expression, + STATE(893), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1121), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [20773] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - anon_sym_else, - STATE(510), 1, - sym_else_clause, - ACTIONS(1123), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1125), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [20832] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - anon_sym_else, - STATE(514), 1, - sym_else_clause, - ACTIONS(1127), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1129), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [20891] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, - sym_primary_expression, - STATE(1070), 1, - sym_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41356,58 +39101,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [20976] = 18, + [19840] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1071), 1, + STATE(895), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41423,164 +39173,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [21061] = 3, + [19932] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1131), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, + ACTIONS(51), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1133), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(69), 1, anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [21116] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - anon_sym_else, - STATE(519), 1, - sym_else_clause, - ACTIONS(1135), 12, - sym__dedent, + ACTIONS(81), 1, sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1137), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [21175] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(386), 1, anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, + STATE(697), 1, sym_primary_expression, - STATE(908), 1, + STATE(698), 1, + sym_string, + STATE(699), 1, + sym_template_string, + STATE(1100), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41596,165 +39245,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [21260] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1149), 1, - anon_sym_COMMA, - ACTIONS(1156), 1, - anon_sym_EQ, - ACTIONS(1154), 14, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1152), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1147), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [21321] = 3, + [20024] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1139), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1141), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(263), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [21376] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(1018), 1, + STATE(634), 1, + sym_primary_expression, + STATE(1155), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41770,58 +39317,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [21461] = 18, + [20116] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1148), 1, + STATE(1083), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41837,110 +39389,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [21546] = 3, + [20208] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1145), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1143), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(263), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [21601] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(1064), 1, + STATE(634), 1, + sym_primary_expression, + STATE(908), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41956,58 +39461,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [21686] = 18, + [20300] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(871), 1, + STATE(1079), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42023,58 +39533,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [21771] = 18, + [20392] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(872), 1, + STATE(904), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42090,58 +39605,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [21856] = 18, + [20484] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, + sym_identifier, + ACTIONS(386), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, + STATE(697), 1, sym_primary_expression, - STATE(873), 1, + STATE(698), 1, + sym_string, + STATE(699), 1, + sym_template_string, + STATE(966), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42157,58 +39677,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [21941] = 18, + [20576] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(866), 1, + STATE(1060), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42224,58 +39749,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [22026] = 18, + [20668] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - STATE(565), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(691), 1, + sym_identifier, + ACTIONS(701), 1, + anon_sym_await, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(648), 1, sym_primary_expression, - STATE(874), 1, + STATE(980), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42291,58 +39821,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [22111] = 18, + [20760] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, + sym_identifier, + ACTIONS(386), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, + STATE(697), 1, sym_primary_expression, - STATE(876), 1, + STATE(698), 1, + sym_string, + STATE(699), 1, + sym_template_string, + STATE(1053), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42358,58 +39893,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [22196] = 18, + [20852] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(879), 1, + STATE(1122), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42425,58 +39965,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [22281] = 18, + [20944] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(618), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(964), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(691), 1, + sym_identifier, + ACTIONS(701), 1, anon_sym_await, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(1001), 1, + STATE(648), 1, + sym_primary_expression, + STATE(891), 1, sym_expression, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42492,58 +40037,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [22366] = 18, + [21036] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(618), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(964), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(691), 1, + sym_identifier, + ACTIONS(701), 1, anon_sym_await, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(1006), 1, + STATE(648), 1, + sym_primary_expression, + STATE(889), 1, sym_expression, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42559,58 +40109,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [22451] = 18, + [21128] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(964), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, + sym_identifier, + ACTIONS(386), 1, anon_sym_await, - STATE(698), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(697), 1, sym_primary_expression, - STATE(699), 1, + STATE(698), 1, sym_string, - STATE(1007), 1, + STATE(699), 1, + sym_template_string, + STATE(945), 1, sym_expression, - ACTIONS(614), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42626,58 +40181,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [22536] = 18, + [21220] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(962), 1, - anon_sym_not, - ACTIONS(964), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(308), 1, anon_sym_await, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(970), 1, + STATE(634), 1, + sym_primary_expression, + STATE(921), 1, sym_expression, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42693,58 +40253,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [22621] = 18, + [21312] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(618), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(964), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(691), 1, + sym_identifier, + ACTIONS(701), 1, anon_sym_await, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(971), 1, + STATE(648), 1, + sym_primary_expression, + STATE(900), 1, sym_expression, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42760,58 +40325,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [22706] = 18, + [21404] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(964), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, + sym_identifier, + ACTIONS(386), 1, anon_sym_await, - STATE(698), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(697), 1, sym_primary_expression, - STATE(699), 1, + STATE(698), 1, sym_string, - STATE(976), 1, + STATE(699), 1, + sym_template_string, + STATE(948), 1, sym_expression, - ACTIONS(614), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42827,58 +40397,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [22791] = 18, + [21496] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(964), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, + sym_identifier, + ACTIONS(386), 1, anon_sym_await, - STATE(698), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(697), 1, sym_primary_expression, - STATE(699), 1, + STATE(698), 1, sym_string, - STATE(983), 1, + STATE(699), 1, + sym_template_string, + STATE(947), 1, sym_expression, - ACTIONS(614), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42894,58 +40469,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [22876] = 18, + [21588] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(619), 1, + anon_sym_LBRACK, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(627), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(891), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(561), 1, - anon_sym_LPAREN, - ACTIONS(567), 1, - anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(978), 1, + STATE(722), 1, + sym_primary_expression, + STATE(1086), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(609), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(895), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(998), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42961,58 +40541,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [22961] = 18, + [21680] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(590), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(694), 1, - anon_sym_await, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(634), 1, sym_primary_expression, - STATE(860), 1, + STATE(1145), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43028,58 +40613,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [23046] = 18, + [21772] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(634), 1, sym_primary_expression, - STATE(1063), 1, + STATE(1142), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43095,8 +40685,9 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [23131] = 18, + [21864] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -43107,19 +40698,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(386), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - STATE(689), 1, + STATE(697), 1, sym_primary_expression, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(1016), 1, + STATE(699), 1, + sym_template_string, + STATE(1088), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -43133,20 +40728,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43162,8 +40757,9 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [23216] = 18, + [21956] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -43174,19 +40770,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(386), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - STATE(689), 1, + STATE(697), 1, sym_primary_expression, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(1066), 1, + STATE(699), 1, + sym_template_string, + STATE(978), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -43200,20 +40800,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43229,58 +40829,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [23301] = 18, + [22048] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(590), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(684), 1, + ACTIONS(691), 1, sym_identifier, - ACTIONS(694), 1, + ACTIONS(701), 1, anon_sym_await, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(590), 1, + STATE(648), 1, sym_primary_expression, - STATE(984), 1, + STATE(896), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43296,58 +40901,121 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [23386] = 18, + [22140] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(1016), 1, + anon_sym_elif, + STATE(384), 1, + aux_sym_if_statement_repeat1, + STATE(433), 1, + sym_elif_clause, + ACTIONS(1001), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(69), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1003), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [22204] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(980), 1, + STATE(634), 1, + sym_primary_expression, + STATE(1163), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43363,8 +41031,9 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [23471] = 18, + [22296] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -43375,19 +41044,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(380), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(386), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - STATE(689), 1, + STATE(697), 1, sym_primary_expression, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(1083), 1, + STATE(699), 1, + sym_template_string, + STATE(965), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -43401,20 +41074,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(382), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(977), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43430,113 +41103,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [23556] = 6, + [22388] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1072), 1, - anon_sym_COMMA, - ACTIONS(1077), 1, - anon_sym_EQ, - ACTIONS(1079), 14, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1021), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1016), 16, - sym__newline, - anon_sym_DOT, + ACTIONS(611), 1, anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, + ACTIONS(619), 1, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [23617] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(627), 1, sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(891), 1, + sym_identifier, + ACTIONS(897), 1, anon_sym_not, - STATE(565), 1, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(595), 1, + STATE(722), 1, sym_primary_expression, - STATE(860), 1, + STATE(1099), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(609), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(895), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(998), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43552,58 +41175,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [23702] = 18, + [22480] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - STATE(565), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(691), 1, + sym_identifier, + ACTIONS(701), 1, + anon_sym_await, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(595), 1, + STATE(648), 1, sym_primary_expression, - STATE(1021), 1, + STATE(887), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(697), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(876), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43619,817 +41247,341 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [23787] = 18, + [22572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(1021), 13, + sym__dedent, sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, - anon_sym_await, - ACTIONS(561), 1, + sym__template_string_start, anon_sym_LPAREN, - ACTIONS(567), 1, - anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, - sym_string, - STATE(959), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(327), 5, + sym_ellipsis, + sym_float, + ACTIONS(1019), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(940), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(773), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [23872] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, + anon_sym_class, anon_sym_not, - ACTIONS(964), 1, anon_sym_lambda, - ACTIONS(966), 1, - anon_sym_await, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, - sym_string, - STATE(1003), 1, - sym_expression, - ACTIONS(614), 2, - sym_ellipsis, - sym_float, - ACTIONS(608), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(600), 4, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(958), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(982), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(796), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [23957] = 18, + [22629] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(1027), 1, + anon_sym_case, + STATE(397), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1023), 13, sym__string_start, - ACTIONS(571), 1, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, - sym_primary_expression, - STATE(1090), 1, - sym_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(271), 5, + sym_ellipsis, + sym_float, + ACTIONS(1025), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [24042] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(303), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(305), 1, + sym_true, + sym_false, + sym_none, + [22690] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1031), 13, + sym__dedent, sym__string_start, - ACTIONS(571), 1, + sym__template_string_start, anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, - sym_primary_expression, - STATE(1125), 1, - sym_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(271), 5, + sym_ellipsis, + sym_float, + ACTIONS(1029), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [24127] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(303), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(305), 1, + sym_true, + sym_false, + sym_none, + [22747] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1035), 13, + sym__dedent, sym__string_start, - ACTIONS(571), 1, + sym__template_string_start, anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, - sym_primary_expression, - STATE(1132), 1, - sym_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(271), 5, + sym_ellipsis, + sym_float, + ACTIONS(1033), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [24212] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(303), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(305), 1, + sym_true, + sym_false, + sym_none, + [22804] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1037), 13, sym__string_start, - ACTIONS(571), 1, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, - sym_primary_expression, - STATE(1134), 1, - sym_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(271), 5, + sym_ellipsis, + sym_float, + ACTIONS(1039), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [24297] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(303), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(305), 1, + sym_true, + sym_false, + sym_none, + [22861] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1041), 13, sym__string_start, - ACTIONS(571), 1, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, - sym_primary_expression, - STATE(1135), 1, - sym_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(271), 5, + sym_ellipsis, + sym_float, + ACTIONS(1043), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [24382] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(303), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(305), 1, + sym_true, + sym_false, + sym_none, + [22918] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1047), 13, + sym__dedent, sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, - sym_primary_expression, - STATE(1140), 1, - sym_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(291), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(271), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [24467] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, - anon_sym_not, - ACTIONS(964), 1, - anon_sym_lambda, - ACTIONS(966), 1, - anon_sym_await, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, - sym_string, - STATE(1046), 1, - sym_expression, - ACTIONS(614), 2, - sym_ellipsis, - sym_float, - ACTIONS(608), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(600), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(958), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(982), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(796), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [24552] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, - sym_primary_expression, - STATE(1142), 1, - sym_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(291), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(271), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [24637] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, - sym_primary_expression, - STATE(1143), 1, - sym_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(291), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(271), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [24722] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, - sym_primary_expression, - STATE(1037), 1, - sym_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(291), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(271), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [24807] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1158), 12, - sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44440,7 +41592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1160), 34, + ACTIONS(1045), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44453,13 +41605,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, 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_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -44475,11 +41629,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [24861] = 3, + [22975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 12, + ACTIONS(1049), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -44491,7 +41646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1164), 34, + ACTIONS(1051), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44504,10 +41659,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, 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_match, @@ -44526,12 +41683,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [24915] = 3, + [23032] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 12, - sym__dedent, + ACTIONS(1057), 1, + anon_sym_case, + STATE(397), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1053), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44542,7 +41705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1164), 34, + ACTIONS(1055), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44559,7 +41722,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -44577,12 +41739,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [24969] = 3, + [23093] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1166), 12, + ACTIONS(1060), 1, + anon_sym_case, + STATE(398), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1053), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44593,7 +41761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1168), 34, + ACTIONS(1055), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44612,7 +41780,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -44628,12 +41795,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25023] = 3, + [23154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1166), 12, - sym__dedent, + ACTIONS(1063), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44644,7 +41812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1168), 34, + ACTIONS(1065), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44657,13 +41825,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, 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_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -44679,12 +41849,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25077] = 3, + [23211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1172), 12, + ACTIONS(1041), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44695,7 +41866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1170), 34, + ACTIONS(1043), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44708,10 +41879,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, 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_match, @@ -44730,12 +41903,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25131] = 3, + [23268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1176), 12, + ACTIONS(1037), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44746,7 +41920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1174), 34, + ACTIONS(1039), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44759,13 +41933,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, 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_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -44781,12 +41957,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25185] = 3, + [23325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1180), 12, - sym__dedent, + ACTIONS(1067), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44797,7 +41974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1178), 34, + ACTIONS(1069), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44810,13 +41987,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, 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_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -44832,11 +42011,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25239] = 3, + [23382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1172), 12, + ACTIONS(1071), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -44848,7 +42028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1170), 34, + ACTIONS(1073), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44861,10 +42041,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, 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_match, @@ -44883,12 +42065,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25293] = 3, + [23439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1158), 12, + ACTIONS(1071), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44899,7 +42082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1160), 34, + ACTIONS(1073), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44912,13 +42095,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, 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_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -44934,11 +42119,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25347] = 3, + [23496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1176), 12, + ACTIONS(1035), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -44950,7 +42136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1174), 34, + ACTIONS(1033), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44963,13 +42149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, 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_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -44985,12 +42173,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25401] = 3, + [23553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1180), 12, + ACTIONS(1067), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45001,7 +42190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1178), 34, + ACTIONS(1069), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45014,13 +42203,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, 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_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -45036,12 +42227,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25455] = 3, + [23610] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1184), 12, + ACTIONS(1075), 1, + anon_sym_case, + STATE(398), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1023), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45052,7 +42249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1182), 33, + ACTIONS(1025), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45086,11 +42283,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25508] = 3, + [23671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1186), 12, + ACTIONS(1031), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -45102,7 +42300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1188), 33, + ACTIONS(1029), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45115,10 +42313,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, 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_match, anon_sym_def, @@ -45136,12 +42337,72 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25561] = 3, + [23728] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 12, - sym__dedent, + ACTIONS(270), 1, + anon_sym_COMMA, + ACTIONS(278), 1, + anon_sym_COLON_EQ, + ACTIONS(1077), 1, + sym_identifier, + ACTIONS(280), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(298), 10, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym__semicolon, + ACTIONS(302), 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(265), 21, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + [23795] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1021), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45152,7 +42413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(846), 33, + ACTIONS(1019), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45165,10 +42426,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, 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_match, anon_sym_def, @@ -45186,12 +42450,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25614] = 3, + [23852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1192), 12, + ACTIONS(1049), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45202,7 +42467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1190), 33, + ACTIONS(1051), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45215,10 +42480,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, 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_match, anon_sym_def, @@ -45236,11 +42504,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25667] = 3, + [23909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 12, + ACTIONS(1047), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -45252,7 +42521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1196), 33, + ACTIONS(1045), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45265,10 +42534,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, 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_match, anon_sym_def, @@ -45286,12 +42558,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25720] = 3, + [23966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 12, + ACTIONS(1063), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45302,7 +42575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1198), 33, + ACTIONS(1065), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45315,10 +42588,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, 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_match, anon_sym_def, @@ -45336,12 +42612,74 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25773] = 3, + [24023] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1204), 12, - sym__dedent, + ACTIONS(1081), 1, + anon_sym_COMMA, + ACTIONS(1086), 1, + anon_sym_COLON_EQ, + ACTIONS(1088), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1090), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1084), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [24087] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(861), 1, + anon_sym_else, + STATE(533), 1, + sym_else_clause, + ACTIONS(1092), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45352,7 +42690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1202), 33, + ACTIONS(1094), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45386,12 +42724,66 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25826] = 3, + [24147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(869), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(867), 32, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym__semicolon, + [24203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 12, + ACTIONS(1098), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45402,7 +42794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1208), 33, + ACTIONS(1096), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45415,6 +42807,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -45436,11 +42830,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25879] = 3, + [24259] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 12, + ACTIONS(865), 1, + anon_sym_finally, + STATE(531), 1, + sym_finally_clause, + ACTIONS(1100), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -45452,7 +42851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1212), 33, + ACTIONS(1102), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45486,11 +42885,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25932] = 3, + [24319] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 12, + ACTIONS(861), 1, + anon_sym_else, + STATE(557), 1, + sym_else_clause, + ACTIONS(1104), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -45502,7 +42906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1216), 33, + ACTIONS(1106), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45536,12 +42940,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25985] = 3, + [24379] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1220), 12, - sym__dedent, + ACTIONS(861), 1, + anon_sym_else, + STATE(499), 1, + sym_else_clause, + ACTIONS(1108), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45552,7 +42961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1218), 33, + ACTIONS(1110), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45586,62 +42995,89 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26038] = 3, + [24439] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 12, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, - ts_builtin_sym_end, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(659), 1, + sym_identifier, + ACTIONS(661), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(671), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(673), 1, + anon_sym_await, + ACTIONS(1112), 1, + anon_sym_RPAREN, + ACTIONS(1114), 1, + anon_sym_STAR, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(861), 1, + sym_primary_expression, + STATE(1123), 1, + sym_pattern, + STATE(1410), 1, + sym__patterns, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1224), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + STATE(742), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(855), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(665), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [26091] = 3, + STATE(658), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [24533] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1228), 12, + ACTIONS(851), 1, + anon_sym_else, + STATE(563), 1, + sym_else_clause, + ACTIONS(1118), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45652,7 +43088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1226), 33, + ACTIONS(1116), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45686,61 +43122,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26144] = 3, + [24593] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1230), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [26197] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1234), 12, + ACTIONS(861), 1, + anon_sym_else, + STATE(508), 1, + sym_else_clause, + ACTIONS(1120), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -45752,7 +43143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1236), 33, + ACTIONS(1122), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45786,78 +43177,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26250] = 19, + [24653] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, - anon_sym_LPAREN, - ACTIONS(664), 1, - anon_sym_LBRACK, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(1240), 1, - anon_sym_STAR, - STATE(565), 1, - sym_string, - STATE(840), 1, - sym_pattern, - STATE(844), 1, - sym_primary_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(1238), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(722), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [26335] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1094), 12, + ACTIONS(851), 1, + anon_sym_else, + STATE(518), 1, + sym_else_clause, + ACTIONS(1126), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45868,7 +43198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1096), 33, + ACTIONS(1124), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45902,12 +43232,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26388] = 3, + [24713] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(828), 12, + ACTIONS(851), 1, + anon_sym_else, + STATE(494), 1, + sym_else_clause, + ACTIONS(1092), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45918,7 +43253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(830), 33, + ACTIONS(1094), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45952,12 +43287,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26441] = 3, + [24773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 12, + ACTIONS(1130), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45968,7 +43304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1242), 33, + ACTIONS(1128), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45981,6 +43317,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -46002,12 +43340,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26494] = 3, + [24829] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 12, - sym__dedent, + ACTIONS(865), 1, + anon_sym_finally, + STATE(561), 1, + sym_finally_clause, + ACTIONS(1132), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46018,7 +43361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1246), 33, + ACTIONS(1134), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46052,12 +43395,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26547] = 3, + [24889] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 12, - sym__dedent, + ACTIONS(861), 1, + anon_sym_else, + STATE(509), 1, + sym_else_clause, + ACTIONS(1118), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46068,7 +43416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1250), 33, + ACTIONS(1116), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46102,62 +43450,70 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26600] = 3, + [24949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, + ACTIONS(875), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1196), 33, - anon_sym_import, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(873), 32, + sym__newline, + anon_sym_DOT, anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [26653] = 3, + 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_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym__semicolon, + [25005] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 12, + ACTIONS(851), 1, + anon_sym_else, + STATE(501), 1, + sym_else_clause, + ACTIONS(1104), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46168,7 +43524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1236), 33, + ACTIONS(1106), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46202,12 +43558,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26706] = 3, + [25065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 12, - sym__dedent, + ACTIONS(1136), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46218,7 +43575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1254), 33, + ACTIONS(1138), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46231,6 +43588,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -46252,12 +43611,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26759] = 3, + [25121] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1260), 12, + ACTIONS(855), 1, + anon_sym_finally, + STATE(492), 1, + sym_finally_clause, + ACTIONS(1132), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46268,7 +43632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1258), 33, + ACTIONS(1134), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46302,12 +43666,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26812] = 3, + [25181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 12, + ACTIONS(1136), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46318,7 +43683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1262), 33, + ACTIONS(1138), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46331,6 +43696,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -46352,12 +43719,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26865] = 3, + [25237] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 12, + ACTIONS(851), 1, + anon_sym_else, + STATE(475), 1, + sym_else_clause, + ACTIONS(1108), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46368,7 +43740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1266), 33, + ACTIONS(1110), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46402,62 +43774,70 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26918] = 3, + [25297] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(270), 1, + anon_sym_COMMA, + ACTIONS(278), 1, + anon_sym_COLON_EQ, + ACTIONS(280), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(302), 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(265), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1272), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(298), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [26971] = 3, + 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__semicolon, + [25361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1276), 12, - sym__dedent, + ACTIONS(1098), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46468,7 +43848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1274), 33, + ACTIONS(1096), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46481,6 +43861,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -46502,112 +43884,202 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27024] = 3, + [25417] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1280), 12, - sym__dedent, - sym__string_start, + ACTIONS(585), 1, + anon_sym_COLON_EQ, + ACTIONS(587), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(580), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(593), 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(298), 14, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + ACTIONS(265), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1278), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27077] = 3, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + [25481] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 12, - sym__dedent, - sym__string_start, + ACTIONS(1143), 1, + anon_sym_COLON_EQ, + ACTIONS(1145), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1140), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1147), 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(1079), 14, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + ACTIONS(1084), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_TILDE, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + [25545] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(659), 1, + sym_identifier, + ACTIONS(661), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(673), 1, + anon_sym_await, + ACTIONS(1114), 1, + anon_sym_STAR, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(849), 1, + sym_pattern, + STATE(861), 1, + sym_primary_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1282), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(1149), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(742), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(855), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(665), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27130] = 3, + STATE(658), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [25637] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 12, + ACTIONS(855), 1, + anon_sym_finally, + STATE(476), 1, + sym_finally_clause, + ACTIONS(1100), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46618,7 +44090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1288), 33, + ACTIONS(1102), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46652,12 +44124,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27183] = 3, + [25697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1119), 12, - sym__dedent, + ACTIONS(1130), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46668,7 +44141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1121), 33, + ACTIONS(1128), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46681,6 +44154,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -46702,12 +44177,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27236] = 3, + [25753] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 12, + ACTIONS(851), 1, + anon_sym_else, + STATE(497), 1, + sym_else_clause, + ACTIONS(1120), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46718,7 +44198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1290), 33, + ACTIONS(1122), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46752,62 +44232,88 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27289] = 3, + [25813] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 12, - sym__dedent, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(659), 1, + sym_identifier, + ACTIONS(661), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(671), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(673), 1, + anon_sym_await, + ACTIONS(1114), 1, + anon_sym_STAR, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(849), 1, + sym_pattern, + STATE(861), 1, + sym_primary_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1294), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(1151), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(742), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(855), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(665), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27342] = 3, + STATE(658), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [25905] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 12, - sym__dedent, + ACTIONS(861), 1, + anon_sym_else, + STATE(479), 1, + sym_else_clause, + ACTIONS(1126), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46818,7 +44324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1298), 33, + ACTIONS(1124), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46852,62 +44358,83 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27395] = 3, + [25965] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 12, - sym__dedent, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(659), 1, + sym_identifier, + ACTIONS(661), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(671), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(673), 1, + anon_sym_await, + ACTIONS(1114), 1, + anon_sym_STAR, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(861), 1, + sym_primary_expression, + STATE(1182), 1, + sym_pattern, + STATE(1499), 1, + sym_pattern_list, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1302), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + STATE(742), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(855), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(665), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27448] = 3, + STATE(658), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [26056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 12, - sym__dedent, + ACTIONS(1153), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46918,7 +44445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1306), 33, + ACTIONS(1155), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46937,6 +44464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -46952,112 +44480,153 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27501] = 3, + [26111] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1186), 12, - sym__dedent, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(659), 1, + sym_identifier, + ACTIONS(661), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(671), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(673), 1, + anon_sym_await, + ACTIONS(1114), 1, + anon_sym_STAR, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(861), 1, + sym_primary_expression, + STATE(1301), 1, + sym_pattern, + STATE(1479), 1, + sym_pattern_list, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1188), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + STATE(742), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(855), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(665), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27554] = 3, + STATE(658), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [26202] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 12, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, - ts_builtin_sym_end, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(659), 1, + sym_identifier, + ACTIONS(661), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(671), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(673), 1, + anon_sym_await, + ACTIONS(1114), 1, + anon_sym_STAR, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(861), 1, + sym_primary_expression, + STATE(1218), 1, + sym_pattern, + STATE(1411), 1, + sym_pattern_list, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1312), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + STATE(742), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(855), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(665), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27607] = 3, + STATE(658), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [26293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 12, + ACTIONS(1159), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47068,7 +44637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1208), 33, + ACTIONS(1157), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47085,6 +44654,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_match, anon_sym_def, @@ -47102,12 +44672,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27660] = 3, + [26348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 12, - sym__dedent, + ACTIONS(1161), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47118,7 +44689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1212), 33, + ACTIONS(1163), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47135,6 +44706,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_match, anon_sym_def, @@ -47152,12 +44724,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27713] = 3, + [26403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 12, + ACTIONS(1167), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47168,7 +44741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1216), 33, + ACTIONS(1165), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47187,6 +44760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -47202,12 +44776,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27766] = 3, + [26458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 12, - sym__dedent, + ACTIONS(1167), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47218,7 +44793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1224), 33, + ACTIONS(1165), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47237,6 +44812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -47252,23 +44828,259 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27819] = 3, + [26513] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 12, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, - ts_builtin_sym_end, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(659), 1, + sym_identifier, + ACTIONS(661), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(671), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(673), 1, + anon_sym_await, + ACTIONS(1114), 1, + anon_sym_STAR, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(861), 1, + sym_primary_expression, + STATE(1274), 1, + sym_pattern, + STATE(1436), 1, + sym_pattern_list, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(742), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(855), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(665), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(658), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [26604] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1171), 1, + anon_sym_COMMA, + ACTIONS(1178), 1, + anon_sym_EQ, + ACTIONS(1176), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1174), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1169), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [26665] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1145), 1, + anon_sym_EQ, + ACTIONS(1140), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1079), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + ACTIONS(1147), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1084), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + [26726] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1182), 1, + anon_sym_COMMA, + ACTIONS(1189), 1, + anon_sym_EQ, + ACTIONS(1187), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1185), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1180), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [26787] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1193), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1242), 33, + ACTIONS(1191), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47287,6 +45099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -47302,12 +45115,83 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27872] = 3, + [26842] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 12, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, - ts_builtin_sym_end, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(659), 1, + sym_identifier, + ACTIONS(661), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(673), 1, + anon_sym_await, + ACTIONS(1114), 1, + anon_sym_STAR, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(861), 1, + sym_primary_expression, + STATE(1270), 1, + sym_pattern, + STATE(1439), 1, + sym_pattern_list, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(742), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(855), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(665), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(658), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [26933] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47318,7 +45202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1316), 33, + ACTIONS(1195), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47337,6 +45221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -47352,12 +45237,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27925] = 3, + [26988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 12, - sym__dedent, + ACTIONS(1193), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47368,7 +45254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1288), 33, + ACTIONS(1191), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47387,6 +45273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -47402,12 +45289,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27978] = 3, + [27043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 12, - sym__dedent, + ACTIONS(1159), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47418,7 +45306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1312), 33, + ACTIONS(1157), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47435,6 +45323,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_match, anon_sym_def, @@ -47452,12 +45341,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28031] = 3, + [27098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 12, + ACTIONS(1161), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47468,7 +45358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1316), 33, + ACTIONS(1163), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47485,6 +45375,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_match, anon_sym_def, @@ -47502,12 +45393,138 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28084] = 3, + [27153] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 12, + ACTIONS(1081), 1, + anon_sym_COMMA, + ACTIONS(1088), 1, + anon_sym_EQ, + ACTIONS(1090), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1084), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [27214] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, - ts_builtin_sym_end, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(659), 1, + sym_identifier, + ACTIONS(661), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(673), 1, + anon_sym_await, + ACTIONS(1114), 1, + anon_sym_STAR, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(861), 1, + sym_primary_expression, + STATE(1183), 1, + sym_pattern, + STATE(1496), 1, + sym_pattern_list, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(742), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(855), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(665), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(658), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [27305] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47518,7 +45535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1250), 33, + ACTIONS(1155), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47537,6 +45554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -47552,12 +45570,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28137] = 3, + [27360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 12, - sym__dedent, + ACTIONS(1197), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47568,7 +45587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1318), 33, + ACTIONS(1195), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47587,6 +45606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -47602,12 +45622,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28190] = 3, + [27415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1184), 12, + ACTIONS(1201), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47618,7 +45639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1182), 33, + ACTIONS(1199), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47652,12 +45673,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28243] = 3, + [27469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 12, - sym__dedent, + ACTIONS(1203), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47668,7 +45690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1322), 33, + ACTIONS(1205), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47702,12 +45724,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28296] = 3, + [27523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 12, + ACTIONS(1209), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47718,7 +45741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1254), 33, + ACTIONS(1207), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47752,12 +45775,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28349] = 3, + [27577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 12, + ACTIONS(1213), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47768,7 +45792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1326), 33, + ACTIONS(1211), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47802,12 +45826,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28402] = 3, + [27631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 12, - sym__dedent, + ACTIONS(1201), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47818,7 +45843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1330), 33, + ACTIONS(1199), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47852,12 +45877,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28455] = 3, + [27685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 12, + ACTIONS(1217), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47868,7 +45894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1334), 33, + ACTIONS(1215), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47902,12 +45928,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28508] = 3, + [27739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 12, + ACTIONS(1221), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47918,7 +45945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1318), 33, + ACTIONS(1219), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47952,11 +45979,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28561] = 3, + [27793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1260), 12, + ACTIONS(1223), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -47968,7 +45996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1258), 33, + ACTIONS(1225), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48002,12 +46030,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28614] = 3, + [27847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 12, + ACTIONS(1229), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48018,7 +46047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1338), 33, + ACTIONS(1227), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48052,12 +46081,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28667] = 3, + [27901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 12, + ACTIONS(1233), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48068,7 +46098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1342), 33, + ACTIONS(1231), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48102,12 +46132,268 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28720] = 3, + [27955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 12, + ACTIONS(1235), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1237), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28009] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1239), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1241), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28063] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1243), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1245), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28117] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1211), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28171] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1247), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1249), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28225] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1203), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48118,7 +46404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1346), 33, + ACTIONS(1205), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48152,12 +46438,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28773] = 3, + [28279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 12, + ACTIONS(1253), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48168,7 +46455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1350), 33, + ACTIONS(1251), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48202,12 +46489,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28826] = 3, + [28333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 12, + ACTIONS(1257), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48218,7 +46506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1354), 33, + ACTIONS(1255), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48252,12 +46540,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28879] = 3, + [28387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 12, + ACTIONS(1261), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48268,7 +46557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1322), 33, + ACTIONS(1259), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48302,12 +46591,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28932] = 3, + [28441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 12, + ACTIONS(1265), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48318,7 +46608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1262), 33, + ACTIONS(1263), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48352,12 +46642,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28985] = 3, + [28495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 12, + ACTIONS(1269), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48368,7 +46659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1358), 33, + ACTIONS(1267), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48402,12 +46693,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29038] = 3, + [28549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1364), 12, + ACTIONS(1273), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48418,7 +46710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1362), 33, + ACTIONS(1271), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48452,12 +46744,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29091] = 3, + [28603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 12, + ACTIONS(1100), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48468,7 +46761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1326), 33, + ACTIONS(1102), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48502,12 +46795,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29144] = 3, + [28657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1220), 12, + ACTIONS(1277), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48518,7 +46812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1218), 33, + ACTIONS(1275), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48552,12 +46846,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29197] = 3, + [28711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 12, + ACTIONS(1247), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48568,7 +46863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1330), 33, + ACTIONS(1249), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48602,12 +46897,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29250] = 3, + [28765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 12, + ACTIONS(1281), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48618,7 +46914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1334), 33, + ACTIONS(1279), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48652,12 +46948,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29303] = 3, + [28819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 12, + ACTIONS(1285), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48668,7 +46965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1198), 33, + ACTIONS(1283), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48702,12 +46999,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29356] = 3, + [28873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 12, + ACTIONS(1289), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48718,7 +47016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1266), 33, + ACTIONS(1287), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48752,12 +47050,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29409] = 3, + [28927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 12, + ACTIONS(1293), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48768,7 +47067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(846), 33, + ACTIONS(1291), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48802,12 +47101,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29462] = 3, + [28981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1276), 12, + ACTIONS(1297), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48818,7 +47118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1274), 33, + ACTIONS(1295), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48852,12 +47152,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29515] = 3, + [29035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 12, + ACTIONS(1301), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48868,7 +47169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1338), 33, + ACTIONS(1299), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48902,11 +47203,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29568] = 3, + [29089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 12, + ACTIONS(1303), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -48918,7 +47220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1342), 33, + ACTIONS(1305), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48952,11 +47254,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29621] = 3, + [29143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1192), 12, + ACTIONS(1229), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -48968,7 +47271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1190), 33, + ACTIONS(1227), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49002,12 +47305,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29674] = 3, + [29197] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1094), 12, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, - ts_builtin_sym_end, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(659), 1, + sym_identifier, + ACTIONS(661), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(673), 1, + anon_sym_await, + ACTIONS(1114), 1, + anon_sym_STAR, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(849), 1, + sym_pattern, + STATE(861), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(742), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(855), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(665), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(658), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [29285] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1309), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49018,7 +47390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1096), 33, + ACTIONS(1307), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49052,11 +47424,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29727] = 3, + [29339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 12, + ACTIONS(1293), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -49068,7 +47441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1346), 33, + ACTIONS(1291), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49102,11 +47475,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29780] = 3, + [29393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 12, + ACTIONS(1311), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -49118,7 +47492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1350), 33, + ACTIONS(1313), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49152,11 +47526,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29833] = 3, + [29447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 12, + ACTIONS(1273), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -49168,7 +47543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1354), 33, + ACTIONS(1271), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49202,12 +47577,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29886] = 3, + [29501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1280), 12, + ACTIONS(1317), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49218,7 +47594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1278), 33, + ACTIONS(1315), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49252,11 +47628,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29939] = 3, + [29555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 12, + ACTIONS(1277), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -49268,7 +47645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1282), 33, + ACTIONS(1275), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49302,78 +47679,217 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29992] = 19, + [29609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(1321), 13, + sym__dedent, sym__string_start, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, + sym__template_string_start, anon_sym_LPAREN, - ACTIONS(664), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(1240), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1319), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - STATE(565), 1, - sym_string, - STATE(840), 1, - sym_pattern, - STATE(844), 1, - sym_primary_expression, - ACTIONS(299), 2, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29663] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1301), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1366), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(722), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, + ACTIONS(1299), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29717] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1323), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, + sym_ellipsis, + sym_float, + ACTIONS(1325), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(658), 5, + [29771] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1327), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [30077] = 3, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(828), 12, + ACTIONS(1333), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49384,7 +47900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(830), 33, + ACTIONS(1331), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49418,12 +47934,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30130] = 3, + [29879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1119), 12, + ACTIONS(1303), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49434,7 +47951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1121), 33, + ACTIONS(1305), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49468,12 +47985,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30183] = 3, + [29933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1228), 12, + ACTIONS(1337), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49484,7 +48002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1226), 33, + ACTIONS(1335), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49518,11 +48036,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30236] = 3, + [29987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 12, + ACTIONS(1339), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -49534,7 +48053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1358), 33, + ACTIONS(1341), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49568,11 +48087,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30289] = 3, + [30041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1364), 12, + ACTIONS(1297), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -49584,7 +48104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1362), 33, + ACTIONS(1295), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49618,11 +48138,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30342] = 3, + [30095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 12, + ACTIONS(1317), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -49634,7 +48155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1246), 33, + ACTIONS(1315), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49668,11 +48189,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30395] = 3, + [30149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1204), 12, + ACTIONS(1132), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -49684,7 +48206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1202), 33, + ACTIONS(1134), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49718,12 +48240,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30448] = 3, + [30203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 12, + ACTIONS(1243), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49734,7 +48257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1290), 33, + ACTIONS(1245), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49768,12 +48291,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30501] = 3, + [30257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 12, + ACTIONS(1239), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49784,7 +48308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1294), 33, + ACTIONS(1241), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49818,12 +48342,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30554] = 3, + [30311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 12, + ACTIONS(1235), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49834,7 +48359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1298), 33, + ACTIONS(1237), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49868,11 +48393,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30607] = 3, + [30365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 12, + ACTIONS(857), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -49884,7 +48410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1302), 33, + ACTIONS(859), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49918,11 +48444,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30660] = 3, + [30419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 12, + ACTIONS(1329), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -49934,7 +48461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1306), 33, + ACTIONS(1327), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49968,12 +48495,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30713] = 3, + [30473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 12, + ACTIONS(1223), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49984,7 +48512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1230), 33, + ACTIONS(1225), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50018,79 +48546,64 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30766] = 20, + [30527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(1345), 13, + sym__dedent, sym__string_start, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, + sym__template_string_start, anon_sym_LPAREN, - ACTIONS(664), 1, - anon_sym_LBRACK, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(1240), 1, - anon_sym_STAR, - ACTIONS(1368), 1, - anon_sym_RPAREN, - STATE(565), 1, - sym_string, - STATE(844), 1, - sym_primary_expression, - STATE(1120), 1, - sym_pattern, - STATE(1395), 1, - sym__patterns, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(722), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, + sym_ellipsis, + sym_float, + ACTIONS(1343), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [30853] = 3, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 12, - sym__dedent, + ACTIONS(849), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50101,7 +48614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1272), 33, + ACTIONS(847), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50135,2038 +48648,2194 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30906] = 19, + [30635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(1221), 13, sym__string_start, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(664), 1, - anon_sym_LBRACK, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(1240), 1, - anon_sym_STAR, - STATE(565), 1, - sym_string, - STATE(844), 1, - sym_primary_expression, - STATE(1272), 1, - sym_pattern, - STATE(1406), 1, - sym_pattern_list, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(722), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, + sym_ellipsis, + sym_float, + ACTIONS(1219), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [30990] = 19, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(1347), 13, sym__string_start, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(664), 1, - anon_sym_LBRACK, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(1240), 1, - anon_sym_STAR, - STATE(565), 1, - sym_string, - STATE(844), 1, - sym_primary_expression, - STATE(1279), 1, - sym_pattern, - STATE(1475), 1, - sym_pattern_list, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(722), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, + sym_ellipsis, + sym_float, + ACTIONS(1349), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [31074] = 19, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(1351), 13, sym__string_start, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(664), 1, - anon_sym_LBRACK, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(1240), 1, - anon_sym_STAR, - STATE(565), 1, - sym_string, - STATE(844), 1, - sym_primary_expression, - STATE(1177), 1, - sym_pattern, - STATE(1437), 1, - sym_pattern_list, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(722), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, + sym_ellipsis, + sym_float, + ACTIONS(1353), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [31158] = 19, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(1351), 13, + sym__dedent, sym__string_start, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, + sym__template_string_start, anon_sym_LPAREN, - ACTIONS(664), 1, - anon_sym_LBRACK, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(1240), 1, - anon_sym_STAR, - STATE(565), 1, - sym_string, - STATE(844), 1, - sym_primary_expression, - STATE(1172), 1, - sym_pattern, - STATE(1429), 1, - sym_pattern_list, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(722), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, + sym_ellipsis, + sym_float, + ACTIONS(1353), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [31242] = 19, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(1355), 13, sym__string_start, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(664), 1, - anon_sym_LBRACK, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(1240), 1, - anon_sym_STAR, - STATE(565), 1, - sym_string, - STATE(844), 1, - sym_primary_expression, - STATE(1199), 1, - sym_pattern, - STATE(1446), 1, - sym_pattern_list, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(722), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, + sym_ellipsis, + sym_float, + ACTIONS(1357), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [31326] = 19, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(1233), 13, sym__string_start, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(664), 1, - anon_sym_LBRACK, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(1240), 1, - anon_sym_STAR, - STATE(565), 1, - sym_string, - STATE(844), 1, - sym_primary_expression, - STATE(1278), 1, - sym_pattern, - STATE(1472), 1, - sym_pattern_list, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(722), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, + sym_ellipsis, + sym_float, + ACTIONS(1231), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [31410] = 5, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, + ACTIONS(1269), 13, sym__string_start, - STATE(566), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1021), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1016), 34, - anon_sym_DOT, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1267), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [31465] = 5, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, + ACTIONS(1289), 13, sym__string_start, - STATE(569), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1372), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1370), 34, - anon_sym_DOT, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1287), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [31520] = 18, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(1345), 13, sym__string_start, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(664), 1, - anon_sym_LBRACK, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(1240), 1, - anon_sym_STAR, - STATE(565), 1, - sym_string, - STATE(844), 1, - sym_primary_expression, - STATE(1161), 1, - sym_pattern, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(722), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, + sym_ellipsis, + sym_float, + ACTIONS(1343), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [31601] = 18, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(1337), 13, sym__string_start, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(664), 1, - anon_sym_LBRACK, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(1240), 1, - anon_sym_STAR, - STATE(565), 1, - sym_string, - STATE(840), 1, - sym_pattern, - STATE(844), 1, - sym_primary_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(722), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, + sym_ellipsis, + sym_float, + ACTIONS(1335), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [31682] = 5, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, + ACTIONS(1361), 13, + sym__dedent, sym__string_start, - STATE(569), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1376), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1374), 34, - anon_sym_DOT, + sym__template_string_start, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1359), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [31737] = 3, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1383), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 35, + ACTIONS(1365), 13, + sym__dedent, sym__string_start, - anon_sym_DOT, + sym__template_string_start, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1363), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [31786] = 16, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(1369), 13, + sym__dedent, sym__string_start, - ACTIONS(571), 1, + sym__template_string_start, anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(1385), 1, - sym_identifier, - ACTIONS(1391), 1, - anon_sym_await, - STATE(565), 1, - sym_string, - STATE(844), 1, - sym_primary_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(728), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(1387), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1389), 5, + sym_ellipsis, + sym_float, + ACTIONS(1367), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [31861] = 3, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1395), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1393), 35, + ACTIONS(1373), 13, + sym__dedent, sym__string_start, - anon_sym_DOT, + sym__template_string_start, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [31910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1399), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1371), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1397), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31391] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1333), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [31958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1403), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1331), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1401), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31445] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1209), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [32006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1407), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1207), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1405), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31499] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1217), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [32054] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1411), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1215), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1409), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31553] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1347), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [32102] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1415), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1349), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1413), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31607] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1375), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [32150] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1419), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1377), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31661] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1321), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [32198] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1399), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1319), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1397), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31715] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1361), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [32246] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1423), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1359), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1421), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [32294] = 3, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1427), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1425), 34, - anon_sym_DOT, + ACTIONS(1375), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1377), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [32342] = 3, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31823] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1423), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1421), 34, - anon_sym_DOT, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(659), 1, + sym_identifier, + ACTIONS(661), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(673), 1, + anon_sym_await, + ACTIONS(1114), 1, + anon_sym_STAR, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(861), 1, + sym_primary_expression, + STATE(1303), 1, + sym_pattern, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(742), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(855), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(665), 5, + anon_sym_print, anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(658), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [31911] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1355), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [32390] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1431), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1357), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1429), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1253), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [32438] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1251), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1433), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32019] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1257), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [32486] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1439), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1255), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1437), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32073] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1261), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [32534] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1443), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1259), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1441), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32127] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(857), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [32582] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1447), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(859), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1445), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32181] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [32630] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1451), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1263), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1449), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32235] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1339), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [32678] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1021), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1341), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1016), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32289] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1132), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1134), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [32726] = 20, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(1309), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1459), 1, - anon_sym_as, - ACTIONS(1467), 1, - anon_sym_PIPE, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - ACTIONS(1477), 1, - anon_sym_not, - ACTIONS(1479), 1, - anon_sym_AMP, - ACTIONS(1481), 1, - anon_sym_CARET, - ACTIONS(1485), 1, - anon_sym_is, - STATE(828), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1463), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1469), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1483), 2, - anon_sym_LT, - anon_sym_GT, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1475), 3, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1465), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1457), 10, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1307), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [32808] = 3, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1487), 34, - anon_sym_DOT, + ACTIONS(1373), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [32856] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1493), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1371), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1491), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32451] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(849), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [32904] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1497), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(847), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1495), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32505] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1100), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [32952] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1501), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1102), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1499), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32559] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1281), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1279), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [33000] = 20, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(1285), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1459), 1, - anon_sym_EQ, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1509), 1, - anon_sym_PIPE, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - ACTIONS(1517), 1, - anon_sym_not, - ACTIONS(1519), 1, - anon_sym_AMP, - ACTIONS(1521), 1, - anon_sym_CARET, - ACTIONS(1525), 1, - anon_sym_is, - STATE(830), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1503), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1505), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1511), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1523), 2, - anon_sym_LT, - anon_sym_GT, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1515), 3, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1507), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1457), 10, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1283), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [33082] = 3, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1529), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1527), 34, - anon_sym_DOT, + ACTIONS(1323), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1325), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1311), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1313), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [33130] = 3, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1533), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1531), 34, - anon_sym_DOT, + ACTIONS(1369), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1367), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32829] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1365), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1363), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [33178] = 3, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32883] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(260), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(293), 34, - anon_sym_DOT, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(1379), 1, + sym_identifier, + ACTIONS(1385), 1, + anon_sym_await, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(861), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(745), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1381), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_else, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1383), 5, + anon_sym_print, anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [33226] = 3, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(658), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [32965] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1537), 6, + ACTIONS(1391), 1, + sym__template_string_start, + STATE(568), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1389), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1535), 34, + ACTIONS(1387), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -52201,17 +50870,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33274] = 3, + [33020] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1541), 6, + ACTIONS(1398), 1, + sym__string_start, + STATE(569), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1396), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1539), 34, + ACTIONS(1394), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -52246,17 +50920,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33322] = 3, + [33075] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 6, + ACTIONS(312), 1, + sym__template_string_start, + STATE(568), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1403), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1543), 34, + ACTIONS(1401), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -52291,17 +50970,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33370] = 3, + [33130] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1549), 6, + ACTIONS(310), 1, + sym__string_start, + STATE(569), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1407), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 34, + ACTIONS(1405), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -52336,17 +51020,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33418] = 3, + [33185] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 6, + ACTIONS(312), 1, + sym__template_string_start, + STATE(570), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1084), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1543), 34, + ACTIONS(1079), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -52381,17 +51070,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33466] = 3, + [33240] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1553), 6, + ACTIONS(310), 1, + sym__string_start, + STATE(571), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1084), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1551), 34, + ACTIONS(1079), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -52426,142 +51120,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33514] = 3, + [33295] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1491), 34, - anon_sym_DOT, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(574), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(576), 1, + anon_sym_await, + ACTIONS(1409), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [33562] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - ACTIONS(1503), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1511), 2, + STATE(698), 1, + sym_string, + STATE(699), 1, + sym_template_string, + STATE(712), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(795), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, sym_generator_expression, - ACTIONS(1515), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1557), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 23, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [33625] = 14, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [33371] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(590), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(598), 1, + ACTIONS(605), 1, anon_sym_await, - ACTIONS(1559), 1, + ACTIONS(1411), 1, anon_sym_not, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(611), 1, + STATE(683), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52577,147 +51238,111 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [33694] = 8, + [33447] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1557), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 28, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AT, + ACTIONS(595), 1, + anon_sym_await, + ACTIONS(1413), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [33751] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - ACTIONS(1461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1469), 2, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(676), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1475), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1557), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 23, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [33814] = 14, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(658), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [33523] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(611), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(619), 1, anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(625), 1, anon_sym_await, - ACTIONS(618), 1, + ACTIONS(627), 1, sym__string_start, - ACTIONS(1561), 1, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(1415), 1, anon_sym_not, - STATE(699), 1, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(729), 1, + STATE(732), 1, sym_primary_expression, - ACTIONS(614), 2, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 5, + ACTIONS(609), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(604), 5, + ACTIONS(613), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(796), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52733,203 +51358,212 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [33883] = 15, + [33599] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(1467), 1, - anon_sym_PIPE, - ACTIONS(1471), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - ACTIONS(1479), 1, - anon_sym_AMP, - ACTIONS(1481), 1, - anon_sym_CARET, - ACTIONS(1461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1463), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1469), 2, + ACTIONS(605), 1, + anon_sym_await, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(683), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1475), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1565), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1563), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [33954] = 14, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(658), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [33672] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - ACTIONS(1479), 1, - anon_sym_AMP, - ACTIONS(1481), 1, - anon_sym_CARET, - ACTIONS(1461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1463), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1469), 2, + ACTIONS(605), 1, + anon_sym_await, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(672), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1475), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1557), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [34023] = 10, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(658), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [33745] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - ACTIONS(1461), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1475), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1557), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 25, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + ACTIONS(595), 1, + anon_sym_await, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(676), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [34084] = 8, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(658), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [33818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1557), 5, + ACTIONS(1419), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 28, + ACTIONS(1417), 35, + sym__template_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -52945,152 +51579,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [34141] = 13, + sym_type_conversion, + [33867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - ACTIONS(1481), 1, - anon_sym_CARET, - ACTIONS(1461), 2, + ACTIONS(1423), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1463), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1469), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1475), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1557), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 20, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [34208] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 1, + ACTIONS(1421), 35, + sym__string_start, anon_sym_DOT, - ACTIONS(1455), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - ACTIONS(1461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1463), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1469), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1475), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1557), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 21, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [34273] = 14, + sym_type_conversion, + [33916] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(561), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(569), 1, + ACTIONS(595), 1, anon_sym_await, - ACTIONS(1567), 1, - anon_sym_not, - STATE(693), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(703), 1, + STATE(679), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(563), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(773), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53106,95 +51682,107 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [34342] = 8, + [33989] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1571), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1569), 28, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + ACTIONS(595), 1, + anon_sym_await, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(665), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [34399] = 14, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(658), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34062] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(588), 1, + ACTIONS(595), 1, anon_sym_await, - ACTIONS(1573), 1, - anon_sym_not, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(621), 1, + STATE(667), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53210,40 +51798,96 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [34468] = 8, + [34135] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - STATE(593), 2, - sym_argument_list, + ACTIONS(595), 1, + anon_sym_await, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(670), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(658), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, sym_generator_expression, - ACTIONS(1557), 5, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1427), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 28, + ACTIONS(1425), 35, + sym__string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -53260,775 +51904,397 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34525] = 15, + [34257] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, - anon_sym_PIPE, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - ACTIONS(1519), 1, - anon_sym_AMP, - ACTIONS(1521), 1, - anon_sym_CARET, - ACTIONS(1503), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1505), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1511), 2, + ACTIONS(1429), 1, + sym_identifier, + ACTIONS(1433), 1, + anon_sym_await, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(861), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(858), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1431), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(658), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, sym_generator_expression, - ACTIONS(1515), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1565), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1563), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34596] = 14, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34334] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - ACTIONS(1519), 1, - anon_sym_AMP, - ACTIONS(1521), 1, - anon_sym_CARET, - ACTIONS(1503), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1505), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1511), 2, + ACTIONS(576), 1, + anon_sym_await, + STATE(698), 1, + sym_string, + STATE(699), 1, + sym_template_string, + STATE(721), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(795), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, sym_generator_expression, - ACTIONS(1515), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1557), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34665] = 10, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34407] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - ACTIONS(1503), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1515), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1557), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 25, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, + ACTIONS(595), 1, + anon_sym_await, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(663), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34726] = 8, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(658), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34480] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1557), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 28, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, + ACTIONS(576), 1, + anon_sym_await, + STATE(698), 1, + sym_string, + STATE(699), 1, + sym_template_string, + STATE(714), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34783] = 13, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(795), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34553] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - ACTIONS(1521), 1, - anon_sym_CARET, - ACTIONS(1503), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1505), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1511), 2, + ACTIONS(576), 1, + anon_sym_await, + STATE(698), 1, + sym_string, + STATE(699), 1, + sym_template_string, + STATE(713), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(795), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, sym_generator_expression, - ACTIONS(1515), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1557), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 20, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34850] = 12, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34626] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - ACTIONS(1503), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1505), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1511), 2, + ACTIONS(605), 1, + anon_sym_await, + STATE(572), 1, + sym_template_string, + STATE(573), 1, + sym_string, + STATE(661), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1515), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1557), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 21, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34915] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1509), 1, - anon_sym_PIPE, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - ACTIONS(1519), 1, - anon_sym_AMP, - ACTIONS(1521), 1, - anon_sym_CARET, - ACTIONS(1503), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1505), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1511), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1515), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1577), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1575), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34986] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1509), 1, - anon_sym_PIPE, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - ACTIONS(1519), 1, - anon_sym_AMP, - ACTIONS(1521), 1, - anon_sym_CARET, - ACTIONS(1503), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1505), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1511), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1515), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1581), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1579), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35057] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1585), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1583), 28, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [35114] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1571), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1569), 28, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35171] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1585), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1583), 28, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35228] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, - anon_sym_LPAREN, - ACTIONS(1467), 1, - anon_sym_PIPE, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - ACTIONS(1479), 1, - anon_sym_AMP, - ACTIONS(1481), 1, - anon_sym_CARET, - ACTIONS(1461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1463), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1469), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1475), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1577), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1575), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [35299] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, - anon_sym_LPAREN, - ACTIONS(1467), 1, - anon_sym_PIPE, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - ACTIONS(1479), 1, - anon_sym_AMP, - ACTIONS(1481), 1, - anon_sym_CARET, - ACTIONS(1461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1463), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1469), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(658), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, sym_generator_expression, - ACTIONS(1475), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1581), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1579), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [35370] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1109), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1104), 33, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [35416] = 13, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34699] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(605), 1, anon_sym_await, - ACTIONS(618), 1, - sym__string_start, - STATE(699), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(711), 1, + STATE(677), 1, sym_primary_expression, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(604), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(796), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54044,44 +52310,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [35482] = 13, + [34772] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(576), 1, anon_sym_await, - ACTIONS(618), 1, - sym__string_start, - STATE(699), 1, + STATE(698), 1, sym_string, - STATE(713), 1, + STATE(699), 1, + sym_template_string, + STATE(720), 1, sym_primary_expression, - ACTIONS(614), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(604), 5, + ACTIONS(570), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(796), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54097,44 +52368,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [35548] = 13, + [34845] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(595), 1, anon_sym_await, - ACTIONS(618), 1, - sym__string_start, - STATE(699), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(729), 1, + STATE(668), 1, sym_primary_expression, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(604), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(796), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54150,44 +52426,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [35614] = 13, + [34918] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(595), 1, anon_sym_await, - ACTIONS(618), 1, - sym__string_start, - STATE(699), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(731), 1, + STATE(669), 1, sym_primary_expression, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(604), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(796), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54203,44 +52484,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [35680] = 13, + [34991] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(605), 1, anon_sym_await, - ACTIONS(618), 1, - sym__string_start, - STATE(699), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(733), 1, + STATE(678), 1, sym_primary_expression, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(604), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(796), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54256,44 +52542,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [35746] = 13, + [35064] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(595), 1, anon_sym_await, - ACTIONS(618), 1, - sym__string_start, - STATE(699), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(734), 1, + STATE(673), 1, sym_primary_expression, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(604), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(796), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54309,44 +52600,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [35812] = 13, + [35137] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(605), 1, anon_sym_await, - ACTIONS(618), 1, - sym__string_start, - STATE(699), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(718), 1, + STATE(664), 1, sym_primary_expression, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(604), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(796), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54362,44 +52658,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [35878] = 13, + [35210] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(605), 1, anon_sym_await, - ACTIONS(618), 1, - sym__string_start, - STATE(699), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(730), 1, + STATE(681), 1, sym_primary_expression, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(604), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(796), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54415,29 +52716,30 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [35944] = 5, + [35283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, - sym__string_start, - STATE(647), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1372), 4, + ACTIONS(1437), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1370), 31, + ACTIONS(1435), 35, + sym__template_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -54461,43 +52763,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [35994] = 13, + sym_type_conversion, + [35332] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(561), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(569), 1, + ACTIONS(605), 1, anon_sym_await, - STATE(693), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(704), 1, + STATE(682), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(563), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(773), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54513,44 +52820,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [36060] = 13, + [35405] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(605), 1, anon_sym_await, - ACTIONS(618), 1, - sym__string_start, - STATE(699), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(719), 1, + STATE(684), 1, sym_primary_expression, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(604), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(796), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54566,44 +52878,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [36126] = 13, + [35478] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(605), 1, anon_sym_await, - ACTIONS(618), 1, - sym__string_start, - STATE(699), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(721), 1, + STATE(662), 1, sym_primary_expression, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(604), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(796), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54619,95 +52936,53 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [36192] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1587), 1, - sym__string_start, - STATE(647), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1376), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1374), 31, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [36242] = 15, + [35551] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, - sym_identifier, - ACTIONS(1594), 1, + ACTIONS(576), 1, anon_sym_await, - STATE(565), 1, + STATE(698), 1, sym_string, - STATE(844), 1, + STATE(699), 1, + sym_template_string, + STATE(717), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(839), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1592), 5, + ACTIONS(570), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 14, + STATE(795), 17, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -54719,50 +52994,53 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [36312] = 15, + [35624] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(1385), 1, - sym_identifier, - ACTIONS(1391), 1, + ACTIONS(595), 1, anon_sym_await, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(844), 1, + STATE(675), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(728), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1389), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 14, + STATE(658), 17, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -54774,44 +53052,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [36382] = 13, + [35697] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, + ACTIONS(611), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(619), 1, anon_sym_LBRACK, - ACTIONS(598), 1, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, anon_sym_await, - STATE(565), 1, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(632), 1, + STATE(724), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(609), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(613), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54827,44 +53110,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [36448] = 13, + [35770] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(561), 1, + ACTIONS(611), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(619), 1, anon_sym_LBRACK, - ACTIONS(569), 1, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, anon_sym_await, - STATE(693), 1, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(701), 1, + STATE(748), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(609), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(563), 5, + ACTIONS(613), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(773), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54880,44 +53168,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [36514] = 13, + [35843] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(590), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(598), 1, + ACTIONS(576), 1, anon_sym_await, - STATE(565), 1, + STATE(698), 1, sym_string, - STATE(633), 1, + STATE(699), 1, + sym_template_string, + STATE(712), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(570), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54933,44 +53226,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [36580] = 13, + [35916] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(590), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(598), 1, + ACTIONS(576), 1, anon_sym_await, - STATE(565), 1, + STATE(698), 1, sym_string, - STATE(618), 1, + STATE(699), 1, + sym_template_string, + STATE(711), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(570), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54986,44 +53284,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [36646] = 13, + [35989] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(561), 1, + ACTIONS(611), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(619), 1, anon_sym_LBRACK, - ACTIONS(569), 1, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, anon_sym_await, - STATE(693), 1, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(707), 1, + STATE(747), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(609), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(563), 5, + ACTIONS(613), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(773), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55039,44 +53342,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [36712] = 13, + [36062] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(561), 1, + ACTIONS(611), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(619), 1, anon_sym_LBRACK, - ACTIONS(569), 1, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, anon_sym_await, - STATE(693), 1, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(708), 1, + STATE(744), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(609), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(563), 5, + ACTIONS(613), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(773), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55092,175 +53400,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [36778] = 3, + [36135] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1152), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1147), 33, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [36824] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(578), 1, - anon_sym_COLON_EQ, - ACTIONS(260), 6, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(293), 31, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [36872] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1023), 1, - anon_sym_COLON_EQ, - ACTIONS(1021), 6, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1016), 31, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [36920] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(590), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(598), 1, + ACTIONS(605), 1, anon_sym_await, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(616), 1, + STATE(680), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55276,44 +53458,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [36986] = 13, + [36208] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(561), 1, + ACTIONS(611), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(619), 1, anon_sym_LBRACK, - ACTIONS(569), 1, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, anon_sym_await, - STATE(693), 1, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(694), 1, + STATE(739), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(609), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(563), 5, + ACTIONS(613), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(773), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55329,44 +53516,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37052] = 13, + [36281] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(588), 1, + ACTIONS(576), 1, anon_sym_await, - STATE(565), 1, + STATE(698), 1, sym_string, - STATE(620), 1, + STATE(699), 1, + sym_template_string, + STATE(709), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(570), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55382,44 +53574,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37118] = 13, + [36354] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(588), 1, + ACTIONS(576), 1, anon_sym_await, - STATE(565), 1, + STATE(698), 1, sym_string, - STATE(606), 1, + STATE(699), 1, + sym_template_string, + STATE(705), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(570), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55435,44 +53632,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37184] = 13, + [36427] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(588), 1, + ACTIONS(576), 1, anon_sym_await, - STATE(565), 1, + STATE(698), 1, sym_string, - STATE(621), 1, + STATE(699), 1, + sym_template_string, + STATE(708), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(570), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55488,44 +53690,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37250] = 13, + [36500] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(588), 1, + ACTIONS(576), 1, anon_sym_await, - STATE(565), 1, + STATE(698), 1, sym_string, - STATE(622), 1, + STATE(699), 1, + sym_template_string, + STATE(710), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(570), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(795), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55541,44 +53748,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37316] = 13, + [36573] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(619), 1, anon_sym_LBRACK, - ACTIONS(588), 1, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, anon_sym_await, - STATE(565), 1, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(623), 1, + STATE(738), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(609), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(613), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55594,48 +53806,55 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37382] = 13, + [36646] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(588), 1, + ACTIONS(1379), 1, + sym_identifier, + ACTIONS(1385), 1, anon_sym_await, - STATE(565), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(624), 1, + STATE(861), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + STATE(745), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(306), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(1383), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(658), 15, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -55647,44 +53866,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37448] = 13, + [36723] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(619), 1, anon_sym_LBRACK, - ACTIONS(588), 1, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, anon_sym_await, - STATE(565), 1, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(625), 1, + STATE(752), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(609), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(613), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55700,44 +53924,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37514] = 13, + [36796] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(619), 1, anon_sym_LBRACK, - ACTIONS(588), 1, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, anon_sym_await, - STATE(565), 1, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(626), 1, + STATE(754), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(609), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(613), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55753,44 +53982,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37580] = 13, + [36869] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(561), 1, + ACTIONS(611), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(619), 1, anon_sym_LBRACK, - ACTIONS(569), 1, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, anon_sym_await, - STATE(693), 1, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(696), 1, + STATE(728), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(609), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(563), 5, + ACTIONS(613), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(773), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55806,44 +54040,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37646] = 13, + [36942] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(619), 1, anon_sym_LBRACK, - ACTIONS(588), 1, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, anon_sym_await, - STATE(565), 1, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(627), 1, + STATE(729), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(609), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(613), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55859,88 +54098,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37712] = 4, + [37015] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, - anon_sym_COLON_EQ, - ACTIONS(260), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(293), 31, - anon_sym_DOT, + ACTIONS(611), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(619), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [37760] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(283), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(588), 1, + ACTIONS(625), 1, anon_sym_await, - STATE(565), 1, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + STATE(704), 1, + sym_template_string, + STATE(706), 1, sym_string, - STATE(628), 1, + STATE(732), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(623), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(617), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(609), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(613), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(805), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55956,44 +54156,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37826] = 13, + [37088] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(561), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(569), 1, + ACTIONS(595), 1, anon_sym_await, - STATE(693), 1, + STATE(572), 1, + sym_template_string, + STATE(573), 1, sym_string, - STATE(702), 1, + STATE(674), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(563), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(773), 16, + STATE(658), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56009,26 +54214,27 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37892] = 4, + [37161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1596), 1, - anon_sym_COLON_EQ, - ACTIONS(1021), 6, + ACTIONS(1441), 6, anon_sym_as, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1016), 31, + ACTIONS(1439), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_in, @@ -56054,722 +54260,322 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [37940] = 13, + sym_type_conversion, + [37209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, + ACTIONS(1445), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1443), 34, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(588), 1, - anon_sym_await, - STATE(565), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(291), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(301), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(576), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38006] = 13, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [37257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(1449), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1447), 34, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(616), 1, - anon_sym_await, - ACTIONS(618), 1, - sym__string_start, - STATE(699), 1, - sym_string, - STATE(720), 1, - sym_primary_expression, - ACTIONS(614), 2, - sym_ellipsis, - sym_float, - ACTIONS(608), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(600), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(604), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(796), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38072] = 13, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [37305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(561), 1, + ACTIONS(1453), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1451), 34, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(567), 1, - anon_sym_LBRACK, - ACTIONS(569), 1, - anon_sym_await, - STATE(693), 1, - sym_string, - STATE(706), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(563), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(773), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38138] = 13, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [37353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(561), 1, + ACTIONS(1449), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1447), 34, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(567), 1, - anon_sym_LBRACK, - ACTIONS(569), 1, - anon_sym_await, - STATE(693), 1, - sym_string, - STATE(697), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(563), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(773), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38204] = 13, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [37401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(561), 1, + ACTIONS(1457), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1455), 34, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(567), 1, - anon_sym_LBRACK, - ACTIONS(569), 1, - anon_sym_await, - STATE(693), 1, - sym_string, - STATE(705), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(563), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(773), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38270] = 13, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [37449] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, + ACTIONS(1459), 1, + anon_sym_DOT, + ACTIONS(1461), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(1471), 1, + anon_sym_PIPE, + ACTIONS(1475), 1, anon_sym_LBRACK, - ACTIONS(598), 1, - anon_sym_await, - STATE(565), 1, - sym_string, - STATE(608), 1, - sym_primary_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(594), 3, + ACTIONS(1477), 1, + anon_sym_STAR_STAR, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1483), 1, + anon_sym_not, + ACTIONS(1485), 1, + anon_sym_AMP, + ACTIONS(1487), 1, + anon_sym_CARET, + ACTIONS(1491), 1, + anon_sym_is, + STATE(846), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1465), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1467), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1473), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(301), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(576), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, + ACTIONS(1489), 2, + anon_sym_LT, + anon_sym_GT, + STATE(643), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38336] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(598), 1, - anon_sym_await, - STATE(565), 1, - sym_string, - STATE(609), 1, - sym_primary_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(594), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(301), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(576), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38402] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(598), 1, - anon_sym_await, - STATE(565), 1, - sym_string, - STATE(611), 1, - sym_primary_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(594), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(301), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(576), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38468] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(598), 1, - anon_sym_await, - STATE(565), 1, - sym_string, - STATE(612), 1, - sym_primary_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(594), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(301), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(576), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38534] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(598), 1, - anon_sym_await, - STATE(565), 1, - sym_string, - STATE(613), 1, - sym_primary_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(594), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(301), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(576), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38600] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(598), 1, - anon_sym_await, - STATE(565), 1, - sym_string, - STATE(614), 1, - sym_primary_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(594), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(301), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(576), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38666] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(598), 1, - anon_sym_await, - STATE(565), 1, - sym_string, - STATE(615), 1, - sym_primary_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(594), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(301), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(576), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38732] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(561), 1, - anon_sym_LPAREN, - ACTIONS(567), 1, - anon_sym_LBRACK, - ACTIONS(569), 1, - anon_sym_await, - STATE(693), 1, - sym_string, - STATE(703), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(563), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(773), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38798] = 5, + ACTIONS(1481), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1469), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1463), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [37531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - sym__string_start, - STATE(692), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1372), 5, + ACTIONS(1495), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1370), 29, - sym__newline, + ACTIONS(1493), 34, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -56786,76 +54592,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [38847] = 20, + sym_type_conversion, + [37579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(1499), 6, + anon_sym_as, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(1598), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1497), 34, anon_sym_DOT, - ACTIONS(1600), 1, anon_sym_LPAREN, - ACTIONS(1608), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_PIPE, - ACTIONS(1612), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1614), 1, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, - ACTIONS(1618), 1, + anon_sym_AT, anon_sym_not, - ACTIONS(1620), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(1622), 1, anon_sym_CARET, - ACTIONS(1626), 1, - anon_sym_is, - STATE(837), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1602), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1604), 2, - anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1610), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1624), 2, - anon_sym_LT, - anon_sym_GT, - STATE(747), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1616), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1606), 6, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1457), 7, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_and, - anon_sym_or, - sym__semicolon, - [38926] = 3, + anon_sym_is, + sym_type_conversion, + [37627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1109), 5, + ACTIONS(1457), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1104), 32, + ACTIONS(1455), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -56863,6 +54656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_in, @@ -56888,16 +54682,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [38971] = 3, + sym_type_conversion, + [37675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1152), 5, + ACTIONS(1503), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1147), 32, + ACTIONS(1501), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -56905,6 +54701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_in, @@ -56930,33 +54727,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [39016] = 5, + sym_type_conversion, + [37723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1628), 1, - sym__string_start, - STATE(692), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1376), 5, + ACTIONS(1507), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1374), 29, - sym__newline, + ACTIONS(1505), 34, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -56973,34 +54772,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [39065] = 5, + sym_type_conversion, + [37771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - sym__string_start, - STATE(688), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1021), 5, + ACTIONS(1511), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1016), 29, - sym__newline, + ACTIONS(1509), 34, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -57017,77 +54817,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [39114] = 14, + sym_type_conversion, + [37819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 1, - anon_sym_DOT, - ACTIONS(1600), 1, - anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_LBRACK, - ACTIONS(1614), 1, - anon_sym_STAR_STAR, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1602), 2, + ACTIONS(1515), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1604), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1610), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(747), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1557), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1616), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1555), 16, - sym__newline, - anon_sym_from, + ACTIONS(1513), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [39180] = 3, + sym_type_conversion, + [37867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1395), 4, + ACTIONS(1519), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1393), 32, - sym__string_start, + ACTIONS(1517), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -57111,45 +54907,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [39224] = 11, + sym_type_conversion, + [37915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 1, - anon_sym_DOT, - ACTIONS(1600), 1, - anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_LBRACK, - ACTIONS(1614), 1, - anon_sym_STAR_STAR, - ACTIONS(1602), 2, + ACTIONS(1523), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1610), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(747), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1557), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1616), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1555), 20, - sym__newline, - anon_sym_from, + ACTIONS(1521), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -57159,144 +54952,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [39284] = 15, + sym_type_conversion, + [37963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 1, + ACTIONS(1527), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1525), 34, anon_sym_DOT, - ACTIONS(1600), 1, anon_sym_LPAREN, - ACTIONS(1608), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_PIPE, - ACTIONS(1612), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1614), 1, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, - ACTIONS(1620), 1, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(1622), 1, anon_sym_CARET, - ACTIONS(1602), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1604), 2, - anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1610), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(747), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1577), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1616), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1575), 15, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [39352] = 19, + sym_type_conversion, + [38011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1531), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1529), 34, anon_sym_DOT, - ACTIONS(1633), 1, anon_sym_LPAREN, - ACTIONS(1641), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_PIPE, - ACTIONS(1645), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1647), 1, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, - ACTIONS(1651), 1, + anon_sym_AT, anon_sym_not, - ACTIONS(1653), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(1655), 1, anon_sym_CARET, - ACTIONS(1659), 1, - anon_sym_is, - STATE(843), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1635), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1637), 2, - anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1643), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1657), 2, - anon_sym_LT, - anon_sym_GT, - STATE(799), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1649), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1639), 6, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1457), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [39428] = 5, + anon_sym_is, + sym_type_conversion, + [38059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, - sym__string_start, - STATE(643), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1021), 4, + ACTIONS(1535), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1016), 29, + ACTIONS(1533), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -57313,24 +55087,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [39476] = 3, + sym_type_conversion, + [38107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1383), 4, + ACTIONS(1453), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 32, - sym__string_start, + ACTIONS(1451), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -57354,89 +55132,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [39520] = 15, + sym_type_conversion, + [38155] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 1, + ACTIONS(1459), 1, anon_sym_DOT, - ACTIONS(1600), 1, + ACTIONS(1461), 1, anon_sym_LPAREN, - ACTIONS(1608), 1, - anon_sym_PIPE, - ACTIONS(1612), 1, + ACTIONS(1475), 1, anon_sym_LBRACK, - ACTIONS(1614), 1, + ACTIONS(1479), 1, + anon_sym_as, + ACTIONS(1543), 1, + anon_sym_PIPE, + ACTIONS(1547), 1, anon_sym_STAR_STAR, - ACTIONS(1620), 1, + ACTIONS(1551), 1, + anon_sym_not, + ACTIONS(1553), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1555), 1, anon_sym_CARET, - ACTIONS(1602), 2, + ACTIONS(1559), 1, + anon_sym_is, + STATE(844), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1537), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1604), 2, + ACTIONS(1539), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1610), 2, + ACTIONS(1545), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(747), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1581), 3, - anon_sym_EQ, + ACTIONS(1557), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1616), 3, + STATE(643), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1549), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1579), 15, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, + ACTIONS(1541), 6, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [39588] = 8, + ACTIONS(1463), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [38237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 1, - anon_sym_DOT, - ACTIONS(1600), 1, - anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_LBRACK, - ACTIONS(1614), 1, - anon_sym_STAR_STAR, - STATE(747), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1557), 5, + ACTIONS(1563), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 25, - sym__newline, - anon_sym_from, + ACTIONS(1561), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -57452,90 +55239,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [39642] = 15, + sym_type_conversion, + [38285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 1, - anon_sym_DOT, - ACTIONS(1600), 1, - anon_sym_LPAREN, - ACTIONS(1608), 1, - anon_sym_PIPE, - ACTIONS(1612), 1, - anon_sym_LBRACK, - ACTIONS(1614), 1, - anon_sym_STAR_STAR, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1602), 2, + ACTIONS(265), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1604), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1610), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(747), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1565), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1616), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1563), 15, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [39710] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1598), 1, + ACTIONS(298), 34, anon_sym_DOT, - ACTIONS(1600), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_LBRACK, - ACTIONS(1614), 1, - anon_sym_STAR_STAR, - STATE(747), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1571), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1569), 25, - sym__newline, - anon_sym_from, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -57551,96 +55284,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [39764] = 13, + sym_type_conversion, + [38333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 1, - anon_sym_DOT, - ACTIONS(1600), 1, - anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_LBRACK, - ACTIONS(1614), 1, - anon_sym_STAR_STAR, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1602), 2, + ACTIONS(1567), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1604), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1610), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(747), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1557), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1616), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1555), 17, - sym__newline, - anon_sym_from, + ACTIONS(1565), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [39828] = 10, + sym_type_conversion, + [38381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 1, - anon_sym_DOT, - ACTIONS(1600), 1, - anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_LBRACK, - ACTIONS(1614), 1, - anon_sym_STAR_STAR, - ACTIONS(1602), 2, + ACTIONS(1571), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_SLASH, - STATE(747), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1557), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1616), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1555), 22, - sym__newline, - anon_sym_from, + ACTIONS(1569), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -57650,87 +55374,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [39886] = 12, + sym_type_conversion, + [38429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 1, - anon_sym_DOT, - ACTIONS(1600), 1, - anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_LBRACK, - ACTIONS(1614), 1, - anon_sym_STAR_STAR, - ACTIONS(1602), 2, + ACTIONS(1575), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1604), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1610), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(747), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1557), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1616), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1555), 18, - sym__newline, - anon_sym_from, + ACTIONS(1573), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [39948] = 8, + sym_type_conversion, + [38477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 1, - anon_sym_DOT, - ACTIONS(1600), 1, - anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_LBRACK, - ACTIONS(1614), 1, - anon_sym_STAR_STAR, - STATE(747), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1557), 5, + ACTIONS(1579), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 25, - sym__newline, - anon_sym_from, + ACTIONS(1577), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -57746,37 +55464,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [40002] = 8, + sym_type_conversion, + [38525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 1, - anon_sym_DOT, - ACTIONS(1600), 1, - anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_LBRACK, - ACTIONS(1614), 1, - anon_sym_STAR_STAR, - STATE(747), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1585), 5, + ACTIONS(1583), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1583), 25, - sym__newline, - anon_sym_from, + ACTIONS(1581), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -57792,26 +55509,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [40056] = 5, + sym_type_conversion, + [38573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1596), 1, - anon_sym_COLON_EQ, - ACTIONS(1661), 1, - anon_sym_EQ, - ACTIONS(1021), 4, + ACTIONS(1587), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1016), 29, + ACTIONS(1585), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_in, @@ -57819,6 +55536,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -57835,36 +55554,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40103] = 8, + sym_type_conversion, + [38621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, - anon_sym_DOT, - ACTIONS(1633), 1, - anon_sym_LPAREN, - ACTIONS(1645), 1, - anon_sym_LBRACK, - ACTIONS(1647), 1, - anon_sym_STAR_STAR, - STATE(799), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1557), 4, + ACTIONS(1515), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 25, + ACTIONS(1513), 34, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -57880,25 +55599,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40156] = 5, + sym_type_conversion, + [38669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, - anon_sym_COLON_EQ, - ACTIONS(620), 1, - anon_sym_EQ, - ACTIONS(260), 4, + ACTIONS(1084), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(293), 29, + ACTIONS(1079), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_in, @@ -57906,6 +55626,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -57922,45 +55644,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40203] = 11, + sym_type_conversion, + [38717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, - anon_sym_DOT, - ACTIONS(1633), 1, - anon_sym_LPAREN, - ACTIONS(1645), 1, - anon_sym_LBRACK, - ACTIONS(1647), 1, - anon_sym_STAR_STAR, - ACTIONS(1557), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1635), 2, + ACTIONS(1591), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1643), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(799), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1649), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1555), 20, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1589), 34, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -57970,25 +55689,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40262] = 5, + sym_type_conversion, + [38765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, - anon_sym_COLON_EQ, - ACTIONS(265), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(260), 4, + ACTIONS(1595), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(293), 27, + ACTIONS(1593), 34, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_in, @@ -57996,6 +55716,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -58012,31 +55734,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40309] = 4, + sym_type_conversion, + [38813] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(273), 1, - anon_sym_COLON_EQ, - ACTIONS(260), 5, + ACTIONS(1459), 1, + anon_sym_DOT, + ACTIONS(1461), 1, + anon_sym_LPAREN, + ACTIONS(1475), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_STAR_STAR, + STATE(643), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(293), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(1597), 28, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -58052,128 +55784,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [40354] = 4, + [38870] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 3, + ACTIONS(1459), 1, anon_sym_DOT, + ACTIONS(1461), 1, anon_sym_LPAREN, + ACTIONS(1475), 1, anon_sym_LBRACK, - ACTIONS(260), 13, + ACTIONS(1547), 1, + anon_sym_STAR_STAR, + ACTIONS(1555), 1, + anon_sym_CARET, + ACTIONS(1537), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1539), 2, anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(1545), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR_STAR, + STATE(643), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1549), 3, anon_sym_AT, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(586), 19, + ACTIONS(1599), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 20, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [40399] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1383), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 30, - sym__newline, - sym__string_start, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [40442] = 13, + [38937] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1459), 1, anon_sym_DOT, - ACTIONS(1633), 1, + ACTIONS(1461), 1, anon_sym_LPAREN, - ACTIONS(1645), 1, + ACTIONS(1475), 1, anon_sym_LBRACK, - ACTIONS(1647), 1, + ACTIONS(1477), 1, anon_sym_STAR_STAR, - ACTIONS(1655), 1, + ACTIONS(1487), 1, anon_sym_CARET, - ACTIONS(1557), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1635), 2, + ACTIONS(1465), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1637), 2, + ACTIONS(1467), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1643), 2, + ACTIONS(1473), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(799), 2, + STATE(643), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1649), 3, + ACTIONS(1481), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1555), 17, + ACTIONS(1599), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 20, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -58184,88 +55891,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40505] = 15, + sym_type_conversion, + [39004] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1459), 1, anon_sym_DOT, - ACTIONS(1633), 1, + ACTIONS(1461), 1, anon_sym_LPAREN, - ACTIONS(1641), 1, - anon_sym_PIPE, - ACTIONS(1645), 1, + ACTIONS(1475), 1, anon_sym_LBRACK, - ACTIONS(1647), 1, + ACTIONS(1547), 1, anon_sym_STAR_STAR, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(1655), 1, - anon_sym_CARET, - ACTIONS(1577), 2, + STATE(643), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1603), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1635), 2, + ACTIONS(1601), 28, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [39061] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1459), 1, + anon_sym_DOT, + ACTIONS(1461), 1, + anon_sym_LPAREN, + ACTIONS(1475), 1, + anon_sym_LBRACK, + ACTIONS(1477), 1, + anon_sym_STAR_STAR, + ACTIONS(1465), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1637), 2, + ACTIONS(1467), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1643), 2, + ACTIONS(1473), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(799), 2, + STATE(643), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1649), 3, + ACTIONS(1481), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1575), 15, + ACTIONS(1599), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 21, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40572] = 8, + sym_type_conversion, + [39126] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1459), 1, anon_sym_DOT, - ACTIONS(1633), 1, + ACTIONS(1461), 1, anon_sym_LPAREN, - ACTIONS(1645), 1, + ACTIONS(1475), 1, anon_sym_LBRACK, - ACTIONS(1647), 1, + ACTIONS(1547), 1, anon_sym_STAR_STAR, - STATE(799), 2, + STATE(643), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1571), 4, + ACTIONS(1607), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1569), 25, + ACTIONS(1605), 28, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -58281,164 +56043,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40625] = 15, + [39183] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1459), 1, anon_sym_DOT, - ACTIONS(1633), 1, + ACTIONS(1461), 1, anon_sym_LPAREN, - ACTIONS(1641), 1, - anon_sym_PIPE, - ACTIONS(1645), 1, + ACTIONS(1475), 1, anon_sym_LBRACK, - ACTIONS(1647), 1, + ACTIONS(1477), 1, anon_sym_STAR_STAR, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(1655), 1, - anon_sym_CARET, - ACTIONS(1581), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1635), 2, + ACTIONS(1465), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1637), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1643), 2, + ACTIONS(1473), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(799), 2, + STATE(643), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1649), 3, + ACTIONS(1481), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1579), 15, + ACTIONS(1599), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 23, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40692] = 4, + sym_type_conversion, + [39246] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1016), 3, + ACTIONS(1459), 1, anon_sym_DOT, + ACTIONS(1461), 1, anon_sym_LPAREN, + ACTIONS(1475), 1, anon_sym_LBRACK, - ACTIONS(1021), 13, + ACTIONS(1477), 1, + anon_sym_STAR_STAR, + STATE(643), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 5, anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 28, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_AT, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1079), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [40737] = 4, + 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, + [39303] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1104), 3, + ACTIONS(1459), 1, anon_sym_DOT, + ACTIONS(1461), 1, anon_sym_LPAREN, + ACTIONS(1475), 1, anon_sym_LBRACK, - ACTIONS(1109), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1477), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1465), 2, + anon_sym_STAR, anon_sym_SLASH, + STATE(643), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1481), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1111), 19, + ACTIONS(1599), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 25, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [40782] = 3, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [39364] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1395), 5, + ACTIONS(1459), 1, + anon_sym_DOT, + ACTIONS(1461), 1, + anon_sym_LPAREN, + ACTIONS(1475), 1, + anon_sym_LBRACK, + ACTIONS(1477), 1, + anon_sym_STAR_STAR, + STATE(643), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1393), 30, - sym__newline, - sym__string_start, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(1597), 28, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -58454,34 +56243,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [40825] = 5, + sym_type_conversion, + [39421] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1596), 1, - anon_sym_COLON_EQ, - ACTIONS(1072), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1021), 4, + ACTIONS(1459), 1, + anon_sym_DOT, + ACTIONS(1461), 1, + anon_sym_LPAREN, + ACTIONS(1475), 1, + anon_sym_LBRACK, + ACTIONS(1477), 1, + anon_sym_STAR_STAR, + STATE(643), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1607), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1016), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1605), 28, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -58497,77 +56292,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40872] = 4, + sym_type_conversion, + [39478] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 3, + ACTIONS(1459), 1, anon_sym_DOT, + ACTIONS(1461), 1, anon_sym_LPAREN, + ACTIONS(1475), 1, anon_sym_LBRACK, - ACTIONS(260), 13, + ACTIONS(1543), 1, + anon_sym_PIPE, + ACTIONS(1547), 1, + anon_sym_STAR_STAR, + ACTIONS(1553), 1, + anon_sym_AMP, + ACTIONS(1555), 1, + anon_sym_CARET, + ACTIONS(1537), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1539), 2, anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(1545), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR_STAR, + STATE(643), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1549), 3, anon_sym_AT, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(1611), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1609), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [39549] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1459), 1, + anon_sym_DOT, + ACTIONS(1461), 1, + anon_sym_LPAREN, + ACTIONS(1475), 1, + anon_sym_LBRACK, + ACTIONS(1477), 1, + anon_sym_STAR_STAR, + ACTIONS(1485), 1, anon_sym_AMP, + ACTIONS(1487), 1, anon_sym_CARET, + ACTIONS(1465), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1467), 2, + anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(297), 19, + ACTIONS(1473), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(643), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1481), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1599), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 19, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [40917] = 8, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [39618] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1459), 1, anon_sym_DOT, - ACTIONS(1633), 1, + ACTIONS(1461), 1, anon_sym_LPAREN, - ACTIONS(1645), 1, + ACTIONS(1475), 1, anon_sym_LBRACK, - ACTIONS(1647), 1, + ACTIONS(1477), 1, anon_sym_STAR_STAR, - STATE(799), 2, + STATE(643), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1585), 4, + ACTIONS(1603), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1583), 25, + ACTIONS(1601), 28, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -58583,90 +56452,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40970] = 4, + sym_type_conversion, + [39675] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1016), 3, + ACTIONS(1459), 1, anon_sym_DOT, + ACTIONS(1461), 1, anon_sym_LPAREN, + ACTIONS(1471), 1, + anon_sym_PIPE, + ACTIONS(1475), 1, anon_sym_LBRACK, - ACTIONS(1021), 13, + ACTIONS(1477), 1, + anon_sym_STAR_STAR, + ACTIONS(1485), 1, + anon_sym_AMP, + ACTIONS(1487), 1, + anon_sym_CARET, + ACTIONS(1465), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1467), 2, anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(1473), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR_STAR, + STATE(643), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1481), 3, anon_sym_AT, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1027), 19, + ACTIONS(1611), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1609), 18, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [41015] = 15, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [39746] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1459), 1, anon_sym_DOT, - ACTIONS(1633), 1, + ACTIONS(1461), 1, anon_sym_LPAREN, - ACTIONS(1641), 1, + ACTIONS(1471), 1, anon_sym_PIPE, - ACTIONS(1645), 1, + ACTIONS(1475), 1, anon_sym_LBRACK, - ACTIONS(1647), 1, + ACTIONS(1477), 1, anon_sym_STAR_STAR, - ACTIONS(1653), 1, + ACTIONS(1485), 1, anon_sym_AMP, - ACTIONS(1655), 1, + ACTIONS(1487), 1, anon_sym_CARET, - ACTIONS(1565), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1635), 2, + ACTIONS(1465), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1637), 2, + ACTIONS(1467), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1643), 2, + ACTIONS(1473), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(799), 2, + STATE(643), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1649), 3, + ACTIONS(1481), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1563), 15, + ACTIONS(1615), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1613), 18, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -58676,97 +56564,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41082] = 12, + sym_type_conversion, + [39817] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1459), 1, anon_sym_DOT, - ACTIONS(1633), 1, + ACTIONS(1461), 1, anon_sym_LPAREN, - ACTIONS(1645), 1, + ACTIONS(1475), 1, anon_sym_LBRACK, - ACTIONS(1647), 1, + ACTIONS(1547), 1, anon_sym_STAR_STAR, - ACTIONS(1557), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1635), 2, + ACTIONS(1537), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1637), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1643), 2, + ACTIONS(1545), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(799), 2, + STATE(643), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1649), 3, + ACTIONS(1549), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1555), 18, + ACTIONS(1599), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 23, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41143] = 14, + [39880] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1459), 1, anon_sym_DOT, - ACTIONS(1633), 1, + ACTIONS(1461), 1, anon_sym_LPAREN, - ACTIONS(1645), 1, + ACTIONS(1475), 1, anon_sym_LBRACK, - ACTIONS(1647), 1, + ACTIONS(1543), 1, + anon_sym_PIPE, + ACTIONS(1547), 1, anon_sym_STAR_STAR, - ACTIONS(1653), 1, + ACTIONS(1553), 1, anon_sym_AMP, - ACTIONS(1655), 1, + ACTIONS(1555), 1, anon_sym_CARET, - ACTIONS(1557), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1635), 2, + ACTIONS(1537), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1637), 2, + ACTIONS(1539), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1643), 2, + ACTIONS(1545), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(799), 2, + STATE(643), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1649), 3, + ACTIONS(1549), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1555), 16, + ACTIONS(1619), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1617), 18, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -58776,170 +56673,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41208] = 4, + [39951] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1147), 3, + ACTIONS(1459), 1, anon_sym_DOT, + ACTIONS(1461), 1, anon_sym_LPAREN, + ACTIONS(1471), 1, + anon_sym_PIPE, + ACTIONS(1475), 1, anon_sym_LBRACK, - ACTIONS(1152), 13, + ACTIONS(1477), 1, + anon_sym_STAR_STAR, + ACTIONS(1485), 1, + anon_sym_AMP, + ACTIONS(1487), 1, + anon_sym_CARET, + ACTIONS(1465), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1467), 2, anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(1473), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR_STAR, + STATE(643), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1481), 3, anon_sym_AT, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1154), 19, + ACTIONS(1619), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1617), 18, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [41253] = 10, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [40022] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1459), 1, anon_sym_DOT, - ACTIONS(1633), 1, + ACTIONS(1461), 1, anon_sym_LPAREN, - ACTIONS(1645), 1, + ACTIONS(1475), 1, anon_sym_LBRACK, - ACTIONS(1647), 1, + ACTIONS(1547), 1, anon_sym_STAR_STAR, - ACTIONS(1557), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1635), 2, + ACTIONS(1537), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(799), 2, + ACTIONS(1539), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1545), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(643), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1649), 3, + ACTIONS(1549), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1555), 22, + ACTIONS(1599), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 21, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41310] = 8, + [40087] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1459), 1, anon_sym_DOT, - ACTIONS(1633), 1, + ACTIONS(1461), 1, anon_sym_LPAREN, - ACTIONS(1645), 1, + ACTIONS(1475), 1, anon_sym_LBRACK, - ACTIONS(1647), 1, + ACTIONS(1547), 1, anon_sym_STAR_STAR, - STATE(799), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1557), 4, + ACTIONS(1553), 1, + anon_sym_AMP, + ACTIONS(1555), 1, + anon_sym_CARET, + ACTIONS(1537), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1539), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1545), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(643), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1549), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1599), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 25, + ACTIONS(1597), 19, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AT, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41363] = 4, + [40156] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1075), 1, - anon_sym_COLON_EQ, - ACTIONS(1021), 5, + ACTIONS(1459), 1, + anon_sym_DOT, + ACTIONS(1461), 1, + anon_sym_LPAREN, + ACTIONS(1475), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_STAR_STAR, + ACTIONS(1537), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(643), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1549), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1599), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1016), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(1597), 25, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -58949,69 +56888,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41408] = 3, + [40217] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1427), 5, + ACTIONS(1459), 1, + anon_sym_DOT, + ACTIONS(1461), 1, + anon_sym_LPAREN, + ACTIONS(1475), 1, + anon_sym_LBRACK, + ACTIONS(1543), 1, + anon_sym_PIPE, + ACTIONS(1547), 1, + anon_sym_STAR_STAR, + ACTIONS(1553), 1, + anon_sym_AMP, + ACTIONS(1555), 1, + anon_sym_CARET, + ACTIONS(1537), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1539), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1545), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(643), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1549), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1615), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1425), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(1613), 18, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41450] = 3, + [40288] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1399), 5, + ACTIONS(1459), 1, + anon_sym_DOT, + ACTIONS(1461), 1, + anon_sym_LPAREN, + ACTIONS(1475), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_STAR_STAR, + STATE(643), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1397), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(1597), 28, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -59027,29 +56993,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41492] = 3, + [40345] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1553), 5, + ACTIONS(585), 1, + anon_sym_COLON_EQ, + ACTIONS(265), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1551), 29, - sym__newline, + ACTIONS(298), 31, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -59066,29 +57036,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41534] = 3, + sym_type_conversion, + [40393] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 5, + ACTIONS(627), 1, + sym__string_start, + STATE(691), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1407), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1405), 29, - sym__newline, + ACTIONS(1405), 31, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -59105,29 +57082,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41576] = 3, + [40443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1415), 5, + ACTIONS(1185), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1413), 29, - sym__newline, + ACTIONS(1180), 33, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -59144,31 +57124,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41618] = 4, + sym_type_conversion, + [40489] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1072), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1021), 4, + ACTIONS(1143), 1, + anon_sym_COLON_EQ, + ACTIONS(1084), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1016), 27, + ACTIONS(1079), 31, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -59185,30 +57168,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41662] = 4, + sym_type_conversion, + [40537] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1149), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1152), 4, + ACTIONS(629), 1, + sym__template_string_start, + STATE(693), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1403), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1147), 27, + ACTIONS(1401), 31, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -59225,21 +57214,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41706] = 4, + [40587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1106), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1109), 4, + ACTIONS(599), 1, + anon_sym_COLON_EQ, + ACTIONS(265), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1104), 27, + ACTIONS(298), 31, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -59249,6 +57240,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -59265,28 +57258,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41750] = 3, + [40635] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1152), 5, + ACTIONS(1621), 1, + sym__string_start, + STATE(691), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1396), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1147), 29, - sym__newline, + ACTIONS(1394), 31, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -59303,29 +57303,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41792] = 3, + [40685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1109), 5, + ACTIONS(1174), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1104), 29, - sym__newline, + ACTIONS(1169), 33, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -59342,29 +57345,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41834] = 3, + sym_type_conversion, + [40731] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1451), 5, + ACTIONS(1624), 1, + sym__template_string_start, + STATE(693), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1389), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1449), 29, - sym__newline, + ACTIONS(1387), 31, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -59381,29 +57391,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41876] = 3, + [40781] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1497), 5, + ACTIONS(1627), 1, + anon_sym_COLON_EQ, + ACTIONS(1084), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1495), 29, - sym__newline, + ACTIONS(1079), 31, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -59420,17 +57435,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41918] = 3, + [40829] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1423), 5, + ACTIONS(83), 1, + sym__template_string_start, + STATE(701), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1403), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 29, + ACTIONS(1401), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59460,16 +57479,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [41960] = 3, + [40878] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1423), 5, + ACTIONS(81), 1, + sym__string_start, + STATE(702), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1407), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 29, + ACTIONS(1405), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59499,55 +57523,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42002] = 3, + [40927] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 5, - anon_sym_STAR, + ACTIONS(1479), 1, anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1487), 29, - sym__newline, + ACTIONS(1629), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(1631), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, + ACTIONS(1639), 1, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1643), 1, anon_sym_LBRACK, + ACTIONS(1645), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1649), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(1651), 1, anon_sym_AMP, + ACTIONS(1653), 1, anon_sym_CARET, + ACTIONS(1657), 1, + anon_sym_is, + STATE(857), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1633), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1635), 2, + anon_sym_GT_GT, anon_sym_LT_LT, + ACTIONS(1641), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1655), 2, + anon_sym_LT, + anon_sym_GT, + STATE(787), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1647), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1637), 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(1463), 7, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_and, + anon_sym_or, sym__semicolon, - [42044] = 3, + [41006] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 5, + ACTIONS(81), 1, + sym__string_start, + STATE(696), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1084), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 29, + ACTIONS(1079), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59577,16 +57626,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42086] = 3, + [41055] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(260), 5, + ACTIONS(83), 1, + sym__template_string_start, + STATE(695), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1084), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(293), 29, + ACTIONS(1079), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59616,28 +57670,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42128] = 3, + [41104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1529), 5, + ACTIONS(1185), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1527), 29, - sym__newline, + ACTIONS(1180), 32, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -59654,17 +57712,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [42170] = 3, + [41149] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1533), 5, + ACTIONS(1659), 1, + sym__template_string_start, + STATE(701), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1389), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1531), 29, + ACTIONS(1387), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59694,16 +57756,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42212] = 3, + [41198] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 5, + ACTIONS(1662), 1, + sym__string_start, + STATE(702), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1396), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 29, + ACTIONS(1394), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59733,28 +57800,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42254] = 3, + [41247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1537), 5, + ACTIONS(1174), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1535), 29, - sym__newline, + ACTIONS(1169), 32, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -59771,24 +57842,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [42296] = 3, + [41292] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 5, + ACTIONS(629), 1, + sym__template_string_start, + STATE(689), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1084), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1543), 29, - sym__newline, + ACTIONS(1079), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -59810,21 +57885,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [42338] = 3, + [41340] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1549), 5, + ACTIONS(1629), 1, + anon_sym_DOT, + ACTIONS(1631), 1, + anon_sym_LPAREN, + ACTIONS(1643), 1, + anon_sym_LBRACK, + ACTIONS(1645), 1, + anon_sym_STAR_STAR, + STATE(787), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(1597), 25, sym__newline, - anon_sym_DOT, anon_sym_from, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -59832,8 +57915,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -59850,23 +57931,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42380] = 3, + [41394] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 5, + ACTIONS(627), 1, + sym__string_start, + STATE(686), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1084), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1543), 29, - sym__newline, + ACTIONS(1079), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -59888,29 +57974,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [42422] = 3, + [41442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1501), 5, + ACTIONS(1419), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1499), 29, - sym__newline, + ACTIONS(1417), 32, + sym__template_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -59927,39 +58015,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [42464] = 3, + [41486] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1403), 5, + ACTIONS(1629), 1, + anon_sym_DOT, + ACTIONS(1631), 1, + anon_sym_LPAREN, + ACTIONS(1643), 1, + anon_sym_LBRACK, + ACTIONS(1645), 1, + anon_sym_STAR_STAR, + ACTIONS(1653), 1, + anon_sym_CARET, + ACTIONS(1633), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1635), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1641), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(787), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1401), 29, + ACTIONS(1647), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1597), 17, sym__newline, - anon_sym_DOT, anon_sym_from, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -59967,20 +58066,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42506] = 3, + [41550] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1447), 5, + ACTIONS(1629), 1, + anon_sym_DOT, + ACTIONS(1631), 1, + anon_sym_LPAREN, + ACTIONS(1643), 1, + anon_sym_LBRACK, + ACTIONS(1645), 1, + anon_sym_STAR_STAR, + ACTIONS(1633), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(787), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1445), 29, + ACTIONS(1647), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1597), 22, sym__newline, - anon_sym_DOT, anon_sym_from, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -59988,14 +58101,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -60006,38 +58114,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42548] = 3, + [41608] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1419), 5, + ACTIONS(1629), 1, + anon_sym_DOT, + ACTIONS(1631), 1, + anon_sym_LPAREN, + ACTIONS(1643), 1, + anon_sym_LBRACK, + ACTIONS(1645), 1, + anon_sym_STAR_STAR, + ACTIONS(1633), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1635), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1641), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(787), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 29, + ACTIONS(1647), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1597), 18, sym__newline, - anon_sym_DOT, anon_sym_from, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -60045,38 +58164,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42590] = 3, + [41670] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 5, + ACTIONS(1629), 1, + anon_sym_DOT, + ACTIONS(1631), 1, + anon_sym_LPAREN, + ACTIONS(1643), 1, + anon_sym_LBRACK, + ACTIONS(1645), 1, + anon_sym_STAR_STAR, + ACTIONS(1651), 1, + anon_sym_AMP, + ACTIONS(1653), 1, + anon_sym_CARET, + ACTIONS(1633), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1635), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1641), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(787), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1441), 29, + ACTIONS(1647), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1597), 16, sym__newline, - anon_sym_DOT, anon_sym_from, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -60084,38 +58216,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42632] = 3, + [41736] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1411), 5, + ACTIONS(1629), 1, + anon_sym_DOT, + ACTIONS(1631), 1, + anon_sym_LPAREN, + ACTIONS(1639), 1, + anon_sym_PIPE, + ACTIONS(1643), 1, + anon_sym_LBRACK, + ACTIONS(1645), 1, + anon_sym_STAR_STAR, + ACTIONS(1651), 1, + anon_sym_AMP, + ACTIONS(1653), 1, + anon_sym_CARET, + ACTIONS(1633), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1635), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1641), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(787), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1615), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1409), 29, + ACTIONS(1647), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1613), 15, sym__newline, - anon_sym_DOT, anon_sym_from, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -60123,35 +58269,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42674] = 3, + [41804] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1431), 5, + ACTIONS(1629), 1, + anon_sym_DOT, + ACTIONS(1631), 1, + anon_sym_LPAREN, + ACTIONS(1643), 1, + anon_sym_LBRACK, + ACTIONS(1645), 1, + anon_sym_STAR_STAR, + ACTIONS(1633), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1641), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(787), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1429), 29, + ACTIONS(1647), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1597), 20, sym__newline, - anon_sym_DOT, anon_sym_from, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -60162,20 +58318,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42716] = 3, + [41864] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1541), 5, + ACTIONS(1629), 1, + anon_sym_DOT, + ACTIONS(1631), 1, + anon_sym_LPAREN, + ACTIONS(1643), 1, + anon_sym_LBRACK, + ACTIONS(1645), 1, + anon_sym_STAR_STAR, + STATE(787), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1539), 29, + ACTIONS(1597), 25, sym__newline, - anon_sym_DOT, anon_sym_from, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -60183,8 +58348,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -60201,20 +58364,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42758] = 3, + [41918] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1399), 5, + ACTIONS(1629), 1, + anon_sym_DOT, + ACTIONS(1631), 1, + anon_sym_LPAREN, + ACTIONS(1643), 1, + anon_sym_LBRACK, + ACTIONS(1645), 1, + anon_sym_STAR_STAR, + STATE(787), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1607), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1397), 29, + ACTIONS(1605), 25, sym__newline, - anon_sym_DOT, anon_sym_from, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -60222,8 +58394,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -60240,18 +58410,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42800] = 4, + [41972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(606), 1, - anon_sym_COLON_EQ, - ACTIONS(260), 5, + ACTIONS(1437), 4, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(293), 28, + ACTIONS(1435), 32, + sym__template_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60259,11 +58427,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -60280,18 +58451,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42844] = 4, + [42016] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1663), 1, - anon_sym_COLON_EQ, - ACTIONS(1021), 5, + ACTIONS(1629), 1, + anon_sym_DOT, + ACTIONS(1631), 1, + anon_sym_LPAREN, + ACTIONS(1639), 1, + anon_sym_PIPE, + ACTIONS(1643), 1, + anon_sym_LBRACK, + ACTIONS(1645), 1, + anon_sym_STAR_STAR, + ACTIONS(1651), 1, + anon_sym_AMP, + ACTIONS(1653), 1, + anon_sym_CARET, + ACTIONS(1633), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1635), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1641), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(787), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1619), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1647), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1617), 15, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [42084] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1427), 4, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1016), 28, + ACTIONS(1425), 32, + sym__string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60299,11 +58521,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -60320,28 +58545,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42888] = 3, + [42128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1435), 5, + ACTIONS(1423), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1433), 29, - sym__newline, + ACTIONS(1421), 32, + sym__string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -60358,39 +58586,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [42930] = 3, + [42172] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1439), 5, + ACTIONS(1629), 1, + anon_sym_DOT, + ACTIONS(1631), 1, + anon_sym_LPAREN, + ACTIONS(1639), 1, + anon_sym_PIPE, + ACTIONS(1643), 1, + anon_sym_LBRACK, + ACTIONS(1645), 1, + anon_sym_STAR_STAR, + ACTIONS(1651), 1, + anon_sym_AMP, + ACTIONS(1653), 1, + anon_sym_CARET, + ACTIONS(1633), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1635), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1641), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(787), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1611), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1437), 29, + ACTIONS(1647), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1609), 15, sym__newline, - anon_sym_DOT, anon_sym_from, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -60398,20 +58639,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42972] = 3, + [42240] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1021), 5, + ACTIONS(1629), 1, + anon_sym_DOT, + ACTIONS(1631), 1, + anon_sym_LPAREN, + ACTIONS(1643), 1, + anon_sym_LBRACK, + ACTIONS(1645), 1, + anon_sym_STAR_STAR, + STATE(787), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1603), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1016), 29, + ACTIONS(1601), 25, sym__newline, - anon_sym_DOT, anon_sym_from, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -60419,8 +58669,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -60437,55 +58685,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43014] = 3, + [42294] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1549), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(1665), 1, anon_sym_DOT, + ACTIONS(1667), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(1675), 1, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1679), 1, anon_sym_LBRACK, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1685), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(1687), 1, anon_sym_AMP, + ACTIONS(1689), 1, anon_sym_CARET, + ACTIONS(1693), 1, + anon_sym_is, + STATE(860), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1671), 2, + anon_sym_GT_GT, anon_sym_LT_LT, + ACTIONS(1677), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + STATE(812), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1683), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1673), 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, - [43055] = 3, + ACTIONS(1463), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [42370] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1447), 4, + ACTIONS(1665), 1, + anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + STATE(812), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1607), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1445), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1605), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -60496,8 +58772,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -60513,99 +58787,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43096] = 3, + [42423] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1419), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 29, + ACTIONS(1665), 1, anon_sym_DOT, + ACTIONS(1667), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(1675), 1, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1679), 1, anon_sym_LBRACK, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(1687), 1, anon_sym_AMP, + ACTIONS(1689), 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, - [43137] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1399), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1611), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1397), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1671), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1677), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(812), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1683), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1609), 15, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43178] = 3, + [42490] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + STATE(897), 1, + sym_template_string, + STATE(898), 1, + sym_string, + STATE(1448), 1, + sym_pattern_class_name, + STATE(987), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1019), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1195), 2, + sym__match_patterns, + sym_open_sequence_match_pattern, + STATE(1196), 2, + sym__match_pattern, + sym_match_as_pattern, + STATE(1352), 2, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(981), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [42571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1435), 4, + ACTIONS(1427), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1433), 29, + ACTIONS(1425), 30, + sym__newline, + sym__string_start, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -60627,23 +58937,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43219] = 3, + sym__semicolon, + [42614] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1439), 4, + ACTIONS(1627), 1, + anon_sym_COLON_EQ, + ACTIONS(1081), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1084), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1437), 29, + ACTIONS(1079), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -60665,17 +58980,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43260] = 3, + [42661] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1399), 4, + ACTIONS(1665), 1, + anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + STATE(812), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1397), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1597), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -60686,8 +59010,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -60703,17 +59025,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43301] = 3, + [42714] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1553), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1551), 29, + ACTIONS(1665), 1, anon_sym_DOT, + ACTIONS(1667), 1, anon_sym_LPAREN, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + ACTIONS(1599), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1677), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(812), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1683), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1597), 20, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -60722,16 +59061,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -60741,23 +59073,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43342] = 3, + [42773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 4, + ACTIONS(1423), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1405), 29, + ACTIONS(1421), 30, + sym__newline, + sym__string_start, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -60779,99 +59112,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43383] = 3, + sym__semicolon, + [42816] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1415), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1413), 29, - anon_sym_DOT, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1715), 1, anon_sym_if, + ACTIONS(1717), 1, anon_sym_COLON, - anon_sym_in, + STATE(897), 1, + sym_template_string, + STATE(898), 1, + sym_string, + STATE(1448), 1, + sym_pattern_class_name, + STATE(987), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1019), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(1081), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(981), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [42897] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1665), 1, + anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_LPAREN, + ACTIONS(1675), 1, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1679), 1, anon_sym_LBRACK, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(1687), 1, anon_sym_AMP, + ACTIONS(1689), 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, - [43424] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(820), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1615), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(818), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1671), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1677), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(812), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1683), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1613), 15, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43465] = 3, + [42964] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1423), 4, + ACTIONS(1627), 1, + anon_sym_COLON_EQ, + ACTIONS(1719), 1, + anon_sym_EQ, + ACTIONS(1084), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 29, + ACTIONS(1079), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -60893,23 +59266,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43506] = 3, + [43011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1423), 4, + ACTIONS(1419), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 29, + ACTIONS(1417), 30, + sym__newline, + sym__template_string_start, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -60931,23 +59305,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43547] = 3, + sym__semicolon, + [43054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 4, + ACTIONS(1437), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1487), 29, + ACTIONS(1435), 30, + sym__newline, + sym__template_string_start, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -60969,23 +59345,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43588] = 3, + sym__semicolon, + [43097] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 4, + ACTIONS(599), 1, + anon_sym_COLON_EQ, + ACTIONS(607), 1, + anon_sym_EQ, + ACTIONS(265), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 29, + ACTIONS(298), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61007,23 +59388,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43629] = 3, + [43144] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1529), 4, + ACTIONS(599), 1, + anon_sym_COLON_EQ, + ACTIONS(270), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(265), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1527), 29, + ACTIONS(298), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61045,55 +59430,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43670] = 3, + [43191] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1533), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1531), 29, + ACTIONS(1665), 1, anon_sym_DOT, + ACTIONS(1667), 1, anon_sym_LPAREN, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + ACTIONS(1687), 1, + anon_sym_AMP, + ACTIONS(1689), 1, + anon_sym_CARET, + ACTIONS(1599), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1671), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1677), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(812), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1683), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1597), 16, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43711] = 3, + [43256] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1491), 29, + ACTIONS(1665), 1, anon_sym_DOT, + ACTIONS(1667), 1, anon_sym_LPAREN, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + ACTIONS(1599), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1669), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(812), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1683), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1597), 22, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -61104,14 +59516,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -61121,61 +59528,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43752] = 3, + [43313] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1543), 29, + ACTIONS(298), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(265), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [43793] = 3, + ACTIONS(593), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [43358] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1451), 4, + ACTIONS(278), 1, + anon_sym_COLON_EQ, + ACTIONS(265), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1449), 29, + ACTIONS(298), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61197,62 +59609,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43834] = 5, + sym__semicolon, + [43403] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(578), 1, - anon_sym_COLON_EQ, - ACTIONS(620), 1, - anon_sym_EQ, - ACTIONS(260), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(293), 27, + ACTIONS(1079), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(1084), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [43879] = 5, + ACTIONS(1090), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [43448] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1023), 1, + ACTIONS(1086), 1, anon_sym_COLON_EQ, - ACTIONS(1661), 1, - anon_sym_EQ, - ACTIONS(1021), 4, + ACTIONS(1084), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1016), 27, + ACTIONS(1079), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -61277,17 +59691,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43924] = 3, + sym__semicolon, + [43493] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1021), 4, + ACTIONS(1665), 1, + anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + STATE(812), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1016), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1597), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -61298,8 +59722,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -61315,67 +59737,358 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43965] = 3, + [43546] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(260), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(293), 29, + ACTIONS(1079), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(1084), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1147), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [43591] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + STATE(897), 1, + sym_template_string, + STATE(898), 1, + sym_string, + STATE(1448), 1, + sym_pattern_class_name, + STATE(987), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1019), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1196), 2, + sym__match_pattern, + sym_match_as_pattern, + STATE(1205), 2, + sym__match_patterns, + sym_open_sequence_match_pattern, + STATE(1352), 2, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(981), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [43672] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1665), 1, + anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + ACTIONS(1689), 1, + anon_sym_CARET, + ACTIONS(1599), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1671), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1677), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(812), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1683), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1597), 17, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44006] = 3, + [43735] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1537), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1665), 1, + anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + ACTIONS(1599), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1535), 29, + ACTIONS(1669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1671), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1677), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(812), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1683), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1597), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_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, + [43796] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1180), 3, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1185), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1187), 19, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [43841] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1169), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1174), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1176), 19, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [43886] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(298), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(265), 13, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(302), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [43931] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1665), 1, + anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, anon_sym_LBRACK, + ACTIONS(1681), 1, anon_sym_STAR_STAR, + STATE(812), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1603), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1601), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -61391,23 +60104,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44047] = 3, + [43984] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1721), 1, + anon_sym_if, + ACTIONS(1723), 1, + anon_sym_COLON, + STATE(897), 1, + sym_template_string, + STATE(898), 1, + sym_string, + STATE(1448), 1, + sym_pattern_class_name, + STATE(987), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1019), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(1081), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(981), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [44065] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1665), 1, + anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_LPAREN, + ACTIONS(1675), 1, + anon_sym_PIPE, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + ACTIONS(1687), 1, + anon_sym_AMP, + ACTIONS(1689), 1, + anon_sym_CARET, + ACTIONS(1619), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1671), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1677), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(812), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1683), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1617), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1497), 4, + ACTIONS(1571), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1495), 29, + ACTIONS(1569), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61429,23 +60253,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44088] = 3, + sym__semicolon, + [44174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1501), 4, + ACTIONS(1449), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1499), 29, + ACTIONS(1447), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61467,23 +60292,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44129] = 3, + sym__semicolon, + [44216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1403), 4, + ACTIONS(1563), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1401), 29, + ACTIONS(1561), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61505,23 +60331,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44170] = 3, + sym__semicolon, + [44258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 4, + ACTIONS(1174), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1441), 29, + ACTIONS(1169), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61543,23 +60370,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44211] = 3, + sym__semicolon, + [44300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1411), 4, + ACTIONS(1515), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1409), 29, + ACTIONS(1513), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61581,23 +60409,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44252] = 3, + sym__semicolon, + [44342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1431), 4, + ACTIONS(1575), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1429), 29, + ACTIONS(1573), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61619,23 +60448,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44293] = 3, + sym__semicolon, + [44384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1541), 4, + ACTIONS(1579), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1539), 29, + ACTIONS(1577), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61657,23 +60487,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44334] = 3, + sym__semicolon, + [44426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(824), 4, + ACTIONS(1441), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(822), 29, + ACTIONS(1439), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61695,23 +60526,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44375] = 3, + sym__semicolon, + [44468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1427), 4, + ACTIONS(1587), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1425), 29, + ACTIONS(1585), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61733,15 +60565,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44416] = 3, + sym__semicolon, + [44510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 4, + ACTIONS(1725), 1, + anon_sym_COLON_EQ, + ACTIONS(1084), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1543), 29, + ACTIONS(1079), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61749,7 +60585,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61771,319 +60606,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44457] = 20, + [44554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1665), 1, - sym_identifier, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1595), 5, anon_sym_STAR, - ACTIONS(1671), 1, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1593), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, - ACTIONS(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - STATE(886), 1, - sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, - sym_pattern_class_name, - STATE(972), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1250), 2, - sym__match_patterns, - sym_open_sequence_match_pattern, - STATE(1254), 2, - sym__match_pattern, - sym_match_as_pattern, - STATE(1317), 2, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - STATE(968), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [44531] = 20, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [44596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1665), 1, - sym_identifier, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1507), 5, anon_sym_STAR, - ACTIONS(1671), 1, - anon_sym_DASH, - ACTIONS(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, - anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - STATE(886), 1, - sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, - sym_pattern_class_name, - STATE(972), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1254), 2, - sym__match_pattern, - sym_match_as_pattern, - STATE(1262), 2, - sym__match_patterns, - sym_open_sequence_match_pattern, - STATE(1317), 2, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - STATE(968), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [44605] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1665), 1, - sym_identifier, - ACTIONS(1667), 1, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1505), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1669), 1, - anon_sym_STAR, - ACTIONS(1671), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, - ACTIONS(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1685), 1, - anon_sym_if, - ACTIONS(1687), 1, - anon_sym_COLON, - STATE(886), 1, - sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, - sym_pattern_class_name, - STATE(972), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - STATE(1078), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(968), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [44679] = 20, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [44638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1665), 1, - sym_identifier, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1519), 5, anon_sym_STAR, - ACTIONS(1671), 1, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1517), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, - ACTIONS(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1689), 1, - anon_sym_if, - ACTIONS(1691), 1, - anon_sym_COLON, - STATE(886), 1, - sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, - sym_pattern_class_name, - STATE(972), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - STATE(1078), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(968), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [44753] = 20, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [44680] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, + ACTIONS(627), 1, sym__string_start, - ACTIONS(1665), 1, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1699), 1, anon_sym_STAR, - ACTIONS(1671), 1, + ACTIONS(1701), 1, anon_sym_DASH, - ACTIONS(1673), 1, + ACTIONS(1703), 1, sym_match_wildcard_pattern, - ACTIONS(1675), 1, + ACTIONS(1705), 1, anon_sym_LBRACK, - ACTIONS(1677), 1, + ACTIONS(1707), 1, anon_sym_LBRACE, - ACTIONS(1679), 1, + ACTIONS(1709), 1, sym_integer, - ACTIONS(1681), 1, + ACTIONS(1711), 1, sym_float, - ACTIONS(1693), 1, + ACTIONS(1727), 1, anon_sym_RPAREN, - STATE(886), 1, + STATE(897), 1, + sym_template_string, + STATE(898), 1, sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, + STATE(1448), 1, sym_pattern_class_name, - STATE(972), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1309), 2, - sym__match_pattern, - sym_match_as_pattern, - STATE(1310), 2, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - STATE(968), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [44826] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1665), 1, - sym_identifier, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1669), 1, - anon_sym_STAR, - ACTIONS(1671), 1, - anon_sym_DASH, - ACTIONS(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, - anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1693), 1, - anon_sym_RBRACK, - STATE(886), 1, - sym_string, - STATE(942), 1, + STATE(987), 2, sym_concatenated_string, - STATE(1386), 1, - sym_pattern_class_name, - STATE(972), 2, + sym_concatenated_template_string, + STATE(1019), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1683), 3, + ACTIONS(1713), 3, sym_true, sym_false, sym_none, - STATE(1201), 4, + STATE(1081), 4, sym__match_pattern, sym_match_as_pattern, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(968), 8, + STATE(981), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -62092,154 +60780,95 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [44897] = 19, + [44758] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1665), 1, - sym_identifier, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1081), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1084), 4, anon_sym_STAR, - ACTIONS(1671), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, - ACTIONS(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1695), 1, - anon_sym_RPAREN, - STATE(886), 1, - sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, - sym_pattern_class_name, - STATE(972), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - STATE(1078), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(968), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [44968] = 19, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44802] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, + ACTIONS(627), 1, sym__string_start, - ACTIONS(1665), 1, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1699), 1, anon_sym_STAR, - ACTIONS(1671), 1, + ACTIONS(1701), 1, anon_sym_DASH, - ACTIONS(1673), 1, + ACTIONS(1703), 1, sym_match_wildcard_pattern, - ACTIONS(1675), 1, + ACTIONS(1705), 1, anon_sym_LBRACK, - ACTIONS(1677), 1, + ACTIONS(1707), 1, anon_sym_LBRACE, - ACTIONS(1679), 1, + ACTIONS(1709), 1, sym_integer, - ACTIONS(1681), 1, + ACTIONS(1711), 1, sym_float, - ACTIONS(1695), 1, + ACTIONS(1727), 1, anon_sym_RBRACK, - STATE(886), 1, + STATE(897), 1, + sym_template_string, + STATE(898), 1, sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, + STATE(1448), 1, sym_pattern_class_name, - STATE(972), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - STATE(1078), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(968), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [45039] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1665), 1, - sym_identifier, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1669), 1, - anon_sym_STAR, - ACTIONS(1671), 1, - anon_sym_DASH, - ACTIONS(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, - anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1697), 1, - anon_sym_RPAREN, - STATE(886), 1, - sym_string, - STATE(942), 1, + STATE(987), 2, sym_concatenated_string, - STATE(1386), 1, - sym_pattern_class_name, - STATE(972), 2, + sym_concatenated_template_string, + STATE(1019), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1683), 3, + ACTIONS(1713), 3, sym_true, sym_false, sym_none, - STATE(1078), 4, + STATE(1081), 4, sym__match_pattern, sym_match_as_pattern, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(968), 8, + STATE(981), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -62248,154 +60877,1949 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [45110] = 19, + [44880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1665), 1, - sym_identifier, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1669), 1, + ACTIONS(265), 5, anon_sym_STAR, - ACTIONS(1671), 1, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(298), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, - ACTIONS(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1697), 1, - anon_sym_RBRACK, - STATE(886), 1, - sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, - sym_pattern_class_name, - STATE(972), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - STATE(1078), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(968), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [45181] = 20, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [44922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1667), 1, + ACTIONS(1535), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1533), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1671), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, - ACTIONS(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1699), 1, - sym_identifier, - ACTIONS(1701), 1, - anon_sym_RPAREN, - STATE(886), 1, - sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1166), 1, - sym_match_keyword_pattern, - STATE(1306), 1, - sym_match_positional_pattern, - STATE(1386), 1, - sym_pattern_class_name, - STATE(972), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1339), 2, - sym__match_pattern, - sym_match_as_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - STATE(968), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [45253] = 20, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [44964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1667), 1, + ACTIONS(1583), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1581), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1671), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, - ACTIONS(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1509), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45048] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1499), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1497), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1185), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1180), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45132] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1182), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1185), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1180), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45176] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1495), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1493), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1449), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1447), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45260] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(615), 1, + anon_sym_COLON_EQ, + ACTIONS(265), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(298), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45304] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1567), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1565), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45346] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1457), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1455), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45388] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1729), 1, + anon_sym_RPAREN, + STATE(897), 1, + sym_template_string, + STATE(898), 1, + sym_string, + STATE(1448), 1, + sym_pattern_class_name, + STATE(987), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1019), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1359), 2, + sym__match_pattern, + sym_match_as_pattern, + STATE(1360), 2, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(981), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [45468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1445), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1443), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45510] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1591), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1589), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1453), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1451), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1523), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1521), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45636] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1731), 1, + anon_sym_RPAREN, + STATE(897), 1, + sym_template_string, + STATE(898), 1, + sym_string, + STATE(1448), 1, + sym_pattern_class_name, + STATE(987), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1019), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(1081), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(981), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [45714] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1729), 1, + anon_sym_RBRACK, + STATE(897), 1, + sym_template_string, + STATE(898), 1, + sym_string, + STATE(1448), 1, + sym_pattern_class_name, + STATE(987), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1019), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(1180), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(981), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [45792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1515), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1513), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45834] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1171), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1174), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1169), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45878] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1531), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1529), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1453), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1451), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1503), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1501), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [46004] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1084), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [46046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1527), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1525), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [46088] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1457), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1455), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [46130] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1731), 1, + anon_sym_RBRACK, + STATE(897), 1, + sym_template_string, + STATE(898), 1, + sym_string, + STATE(1448), 1, + sym_pattern_class_name, + STATE(987), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1019), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(1081), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(981), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [46208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1587), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1585), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46249] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1733), 1, + sym_identifier, + ACTIONS(1735), 1, + anon_sym_RPAREN, + STATE(897), 1, + sym_template_string, + STATE(898), 1, + sym_string, + STATE(1293), 1, + sym_match_keyword_pattern, + STATE(1304), 1, + sym_match_positional_pattern, + STATE(1448), 1, + sym_pattern_class_name, + STATE(987), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1019), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1316), 2, + sym__match_pattern, + sym_match_as_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(981), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [46328] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(585), 1, + anon_sym_COLON_EQ, + ACTIONS(607), 1, + anon_sym_EQ, + ACTIONS(265), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(298), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46373] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1733), 1, + sym_identifier, + ACTIONS(1737), 1, + anon_sym_RPAREN, + STATE(897), 1, + sym_template_string, + STATE(898), 1, + sym_string, + STATE(1190), 1, + sym_match_keyword_pattern, + STATE(1337), 1, + sym_match_positional_pattern, + STATE(1448), 1, + sym_pattern_class_name, + STATE(987), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1019), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1316), 2, + sym__match_pattern, + sym_match_as_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(981), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [46452] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1143), 1, + anon_sym_COLON_EQ, + ACTIONS(1719), 1, + anon_sym_EQ, + ACTIONS(1084), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1449), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1447), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46538] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1084), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46579] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1495), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1493), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46620] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(265), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(298), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46661] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1449), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1447), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46702] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1453), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1451), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46743] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1503), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1501), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1571), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1569), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46825] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1523), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1521), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46866] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1527), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1525), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46907] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1453), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1451), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46948] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1531), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1529), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1591), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1589), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47030] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + sym__string_start, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, sym_float, - ACTIONS(1699), 1, + ACTIONS(1733), 1, sym_identifier, - ACTIONS(1703), 1, + ACTIONS(1739), 1, anon_sym_RPAREN, - STATE(886), 1, + STATE(897), 1, + sym_template_string, + STATE(898), 1, sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1269), 1, - sym_match_positional_pattern, - STATE(1270), 1, + STATE(1251), 1, sym_match_keyword_pattern, - STATE(1386), 1, + STATE(1337), 1, + sym_match_positional_pattern, + STATE(1448), 1, sym_pattern_class_name, - STATE(972), 2, + STATE(987), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1019), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1339), 2, + STATE(1316), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1683), 3, + ACTIONS(1713), 3, sym_true, sym_false, sym_none, - STATE(968), 8, + STATE(981), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -62404,48 +62828,319 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [45325] = 18, + [47109] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1445), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1443), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47150] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1457), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1455), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47191] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1583), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1581), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1535), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1533), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47273] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1575), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47314] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(869), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(867), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47355] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1457), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1455), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47396] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, + ACTIONS(627), 1, sym__string_start, - ACTIONS(1665), 1, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1699), 1, anon_sym_STAR, - ACTIONS(1671), 1, + ACTIONS(1701), 1, anon_sym_DASH, - ACTIONS(1673), 1, + ACTIONS(1703), 1, sym_match_wildcard_pattern, - ACTIONS(1675), 1, + ACTIONS(1705), 1, anon_sym_LBRACK, - ACTIONS(1677), 1, + ACTIONS(1707), 1, anon_sym_LBRACE, - ACTIONS(1679), 1, + ACTIONS(1709), 1, sym_integer, - ACTIONS(1681), 1, + ACTIONS(1711), 1, sym_float, - STATE(886), 1, + STATE(897), 1, + sym_template_string, + STATE(898), 1, sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, + STATE(1448), 1, sym_pattern_class_name, - STATE(972), 2, + STATE(987), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1019), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1683), 3, + ACTIONS(1713), 3, sym_true, sym_false, sym_none, - STATE(1078), 4, + STATE(1081), 4, sym__match_pattern, sym_match_as_pattern, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(968), 8, + STATE(981), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -62454,98 +63149,507 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [45393] = 20, + [47471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1667), 1, + ACTIONS(1567), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1565), 29, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1671), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, - ACTIONS(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1699), 1, - sym_identifier, - ACTIONS(1705), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47512] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(875), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(873), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(886), 1, - sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1162), 1, - sym_match_keyword_pattern, - STATE(1306), 1, - sym_match_positional_pattern, - STATE(1386), 1, - sym_pattern_class_name, - STATE(972), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1339), 2, - sym__match_pattern, - sym_match_as_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - STATE(968), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [45465] = 18, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47553] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1595), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1593), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1563), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1561), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47635] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1579), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1577), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1499), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1497), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47717] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1507), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1505), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47758] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1509), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47799] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1515), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1513), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47840] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1515), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1513), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47881] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1441), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1439), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1519), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1517), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47963] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, + ACTIONS(627), 1, sym__string_start, - ACTIONS(1665), 1, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - ACTIONS(1671), 1, + ACTIONS(1701), 1, anon_sym_DASH, - ACTIONS(1673), 1, + ACTIONS(1703), 1, sym_match_wildcard_pattern, - ACTIONS(1675), 1, + ACTIONS(1705), 1, anon_sym_LBRACK, - ACTIONS(1677), 1, + ACTIONS(1707), 1, anon_sym_LBRACE, - ACTIONS(1679), 1, + ACTIONS(1709), 1, sym_integer, - ACTIONS(1681), 1, + ACTIONS(1711), 1, sym_float, - STATE(886), 1, + STATE(897), 1, + sym_template_string, + STATE(898), 1, sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1306), 1, + STATE(1337), 1, sym_match_positional_pattern, - STATE(1386), 1, + STATE(1448), 1, sym_pattern_class_name, - STATE(972), 2, + STATE(987), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1019), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1339), 2, + STATE(1316), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1683), 3, + ACTIONS(1713), 3, sym_true, sym_false, sym_none, - STATE(968), 8, + STATE(981), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -62554,44 +63658,49 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [45531] = 17, + [48036] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, + ACTIONS(627), 1, sym__string_start, - ACTIONS(1665), 1, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - ACTIONS(1671), 1, + ACTIONS(1701), 1, anon_sym_DASH, - ACTIONS(1673), 1, + ACTIONS(1703), 1, sym_match_wildcard_pattern, - ACTIONS(1675), 1, + ACTIONS(1705), 1, anon_sym_LBRACK, - ACTIONS(1677), 1, + ACTIONS(1707), 1, anon_sym_LBRACE, - ACTIONS(1679), 1, + ACTIONS(1709), 1, sym_integer, - ACTIONS(1681), 1, + ACTIONS(1711), 1, sym_float, - STATE(886), 1, + STATE(897), 1, + sym_template_string, + STATE(898), 1, sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, + STATE(1448), 1, sym_pattern_class_name, - STATE(972), 2, + STATE(987), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1019), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1308), 2, + STATE(1372), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1683), 3, + ACTIONS(1713), 3, sym_true, sym_false, sym_none, - STATE(968), 8, + STATE(981), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -62600,44 +63709,49 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [45594] = 17, + [48106] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, + ACTIONS(627), 1, sym__string_start, - ACTIONS(1665), 1, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - ACTIONS(1671), 1, + ACTIONS(1701), 1, anon_sym_DASH, - ACTIONS(1673), 1, + ACTIONS(1703), 1, sym_match_wildcard_pattern, - ACTIONS(1675), 1, + ACTIONS(1705), 1, anon_sym_LBRACK, - ACTIONS(1677), 1, + ACTIONS(1707), 1, anon_sym_LBRACE, - ACTIONS(1679), 1, + ACTIONS(1709), 1, sym_integer, - ACTIONS(1681), 1, + ACTIONS(1711), 1, sym_float, - STATE(886), 1, + STATE(897), 1, + sym_template_string, + STATE(898), 1, sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, + STATE(1448), 1, sym_pattern_class_name, - STATE(972), 2, + STATE(987), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1019), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1344), 2, + STATE(1335), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1683), 3, + ACTIONS(1713), 3, sym_true, sym_false, sym_none, - STATE(968), 8, + STATE(981), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -62646,38 +63760,43 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [45657] = 15, + [48176] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, + ACTIONS(627), 1, sym__string_start, - ACTIONS(1665), 1, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - ACTIONS(1671), 1, + ACTIONS(1701), 1, anon_sym_DASH, - ACTIONS(1675), 1, + ACTIONS(1705), 1, anon_sym_LBRACK, - ACTIONS(1677), 1, + ACTIONS(1707), 1, anon_sym_LBRACE, - ACTIONS(1679), 1, + ACTIONS(1709), 1, sym_integer, - ACTIONS(1681), 1, + ACTIONS(1711), 1, sym_float, - ACTIONS(1707), 1, + ACTIONS(1741), 1, sym_match_wildcard_pattern, - STATE(886), 1, + STATE(897), 1, + sym_template_string, + STATE(898), 1, sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, + STATE(1448), 1, sym_pattern_class_name, - ACTIONS(1683), 3, + STATE(987), 2, + sym_concatenated_string, + sym_concatenated_template_string, + ACTIONS(1713), 3, sym_true, sym_false, sym_none, - STATE(929), 8, + STATE(973), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -62686,38 +63805,43 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [45712] = 15, + [48238] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, + ACTIONS(627), 1, sym__string_start, - ACTIONS(1665), 1, + ACTIONS(629), 1, + sym__template_string_start, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - ACTIONS(1671), 1, + ACTIONS(1701), 1, anon_sym_DASH, - ACTIONS(1675), 1, + ACTIONS(1705), 1, anon_sym_LBRACK, - ACTIONS(1677), 1, + ACTIONS(1707), 1, anon_sym_LBRACE, - ACTIONS(1679), 1, + ACTIONS(1709), 1, sym_integer, - ACTIONS(1681), 1, + ACTIONS(1711), 1, sym_float, - ACTIONS(1709), 1, + ACTIONS(1743), 1, sym_match_wildcard_pattern, - STATE(886), 1, + STATE(897), 1, + sym_template_string, + STATE(898), 1, sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, + STATE(1448), 1, sym_pattern_class_name, - ACTIONS(1683), 3, + STATE(987), 2, + sym_concatenated_string, + sym_concatenated_template_string, + ACTIONS(1713), 3, sym_true, sym_false, sym_none, - STATE(915), 8, + STATE(938), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -62726,142 +63850,142 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [45767] = 8, + [48300] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 1, + ACTIONS(1750), 1, + anon_sym_EQ, + ACTIONS(1752), 1, anon_sym_not, - ACTIONS(1485), 1, + ACTIONS(1758), 1, anon_sym_is, - ACTIONS(1713), 1, - anon_sym_as, - STATE(831), 1, + STATE(843), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1483), 2, + ACTIONS(1755), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1465), 6, + ACTIONS(1747), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1711), 10, + ACTIONS(1745), 10, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [45807] = 8, + sym_type_conversion, + [48340] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1720), 1, - anon_sym_EQ, - ACTIONS(1722), 1, + ACTIONS(1551), 1, anon_sym_not, - ACTIONS(1728), 1, + ACTIONS(1559), 1, anon_sym_is, - STATE(829), 1, + ACTIONS(1763), 1, + anon_sym_as, + STATE(845), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1725), 2, + ACTIONS(1557), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1717), 6, + ACTIONS(1541), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1715), 10, + ACTIONS(1761), 10, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [45847] = 8, + [48380] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1517), 1, + ACTIONS(1750), 1, + anon_sym_as, + ACTIONS(1768), 1, anon_sym_not, - ACTIONS(1525), 1, + ACTIONS(1774), 1, anon_sym_is, - ACTIONS(1713), 1, - anon_sym_EQ, - STATE(829), 1, + STATE(845), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1523), 2, + ACTIONS(1771), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1507), 6, + ACTIONS(1765), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1711), 10, + ACTIONS(1745), 10, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [45887] = 8, + [48420] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1720), 1, - anon_sym_as, - ACTIONS(1734), 1, + ACTIONS(1483), 1, anon_sym_not, - ACTIONS(1740), 1, + ACTIONS(1491), 1, anon_sym_is, - STATE(831), 1, + ACTIONS(1763), 1, + anon_sym_EQ, + STATE(843), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1737), 2, + ACTIONS(1489), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1731), 6, + ACTIONS(1469), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1715), 10, + ACTIONS(1761), 10, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [45927] = 4, + sym_type_conversion, + [48460] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1745), 1, + ACTIONS(1779), 1, anon_sym_COMMA, - STATE(832), 1, + STATE(847), 1, aux_sym__patterns_repeat1, - ACTIONS(1743), 18, + ACTIONS(1777), 18, anon_sym_RPAREN, anon_sym_COLON, anon_sym_in, @@ -62880,33 +64004,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45957] = 2, + [48490] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1079), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [45982] = 2, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1782), 1, + sym_identifier, + ACTIONS(1784), 1, + anon_sym_RBRACE, + ACTIONS(1786), 1, + anon_sym_STAR_STAR, + STATE(1110), 1, + sym_template_string, + STATE(1112), 1, + sym_string, + STATE(1361), 1, + sym_match_key_value_pattern, + STATE(1364), 1, + sym_match_double_star_pattern, + STATE(987), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1461), 2, + sym_match_literal_pattern, + sym_match_value_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + [48543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1748), 19, + ACTIONS(1788), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -62926,28 +64064,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46007] = 8, + [48568] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1782), 1, + sym_identifier, + ACTIONS(1786), 1, + anon_sym_STAR_STAR, + ACTIONS(1790), 1, + anon_sym_RBRACE, + STATE(1110), 1, + sym_template_string, + STATE(1112), 1, + sym_string, + STATE(1187), 1, + sym_match_key_value_pattern, + STATE(1322), 1, + sym_match_double_star_pattern, + STATE(987), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1461), 2, + sym_match_literal_pattern, + sym_match_value_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + [48621] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1782), 1, + sym_identifier, + ACTIONS(1786), 1, + anon_sym_STAR_STAR, + ACTIONS(1792), 1, + anon_sym_RBRACE, + STATE(1110), 1, + sym_template_string, + STATE(1112), 1, + sym_string, + STATE(1328), 1, + sym_match_double_star_pattern, + STATE(1361), 1, + sym_match_key_value_pattern, + STATE(987), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1461), 2, + sym_match_literal_pattern, + sym_match_value_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + [48674] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1720), 1, + ACTIONS(1750), 1, anon_sym_EQ, - ACTIONS(1753), 1, + ACTIONS(1797), 1, anon_sym_not, - ACTIONS(1759), 1, + ACTIONS(1803), 1, anon_sym_is, - STATE(835), 1, + STATE(852), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1756), 2, + ACTIONS(1800), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1750), 6, + ACTIONS(1794), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1715), 7, + ACTIONS(1745), 7, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -62955,10 +64167,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym__semicolon, - [46044] = 2, + [48711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 19, + ACTIONS(1806), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -62978,46 +64190,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46069] = 8, + [48736] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1618), 1, - anon_sym_not, - ACTIONS(1626), 1, - anon_sym_is, - ACTIONS(1713), 1, - anon_sym_EQ, - STATE(835), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1624), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1606), 6, + ACTIONS(1808), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1711), 7, - sym__newline, - anon_sym_from, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [48761] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1090), 19, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_and, - anon_sym_or, - sym__semicolon, - [46106] = 4, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [48786] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(260), 2, + ACTIONS(265), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(826), 3, + ACTIONS(827), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(293), 14, + ACTIONS(298), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -63032,17 +64261,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [46135] = 4, + [48815] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1649), 1, + anon_sym_not, + ACTIONS(1657), 1, + anon_sym_is, + ACTIONS(1763), 1, + anon_sym_EQ, + STATE(852), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1655), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1637), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1761), 7, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_and, + anon_sym_or, + sym__semicolon, + [48852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1021), 2, + ACTIONS(1084), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1764), 3, + ACTIONS(1810), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1016), 14, + ACTIONS(1079), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -63057,49 +64315,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [46164] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1766), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [46189] = 7, + [48881] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1815), 1, anon_sym_not, - ACTIONS(1777), 1, + ACTIONS(1821), 1, anon_sym_is, - STATE(841), 1, + STATE(859), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1774), 2, + ACTIONS(1818), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1768), 6, + ACTIONS(1812), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1715), 7, + ACTIONS(1745), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -63107,50 +64342,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [46223] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1780), 1, - anon_sym_COMMA, - STATE(832), 1, - aux_sym__patterns_repeat1, - ACTIONS(1782), 16, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [46251] = 7, + [48915] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1651), 1, + ACTIONS(1685), 1, anon_sym_not, - ACTIONS(1659), 1, + ACTIONS(1693), 1, anon_sym_is, - STATE(841), 1, + STATE(859), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1657), 2, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1639), 6, + ACTIONS(1673), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1711), 7, + ACTIONS(1761), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -63158,113 +64369,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [46285] = 13, + [48949] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, + ACTIONS(1459), 1, anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(1461), 1, anon_sym_LPAREN, ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1509), 1, anon_sym_PIPE, - ACTIONS(1513), 1, + ACTIONS(1475), 1, + anon_sym_LBRACK, + ACTIONS(1477), 1, anon_sym_STAR_STAR, - ACTIONS(1519), 1, + ACTIONS(1485), 1, anon_sym_AMP, - ACTIONS(1521), 1, + ACTIONS(1487), 1, anon_sym_CARET, - ACTIONS(1503), 2, + ACTIONS(1465), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1505), 2, + ACTIONS(1467), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1511), 2, + ACTIONS(1473), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(593), 2, + STATE(643), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1515), 3, + ACTIONS(1481), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [46331] = 12, + [48995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1784), 1, - sym_identifier, - ACTIONS(1786), 1, - anon_sym_LPAREN, - ACTIONS(1788), 1, - anon_sym_STAR, - ACTIONS(1790), 1, + ACTIONS(1824), 1, + anon_sym_COMMA, + STATE(847), 1, + aux_sym__patterns_repeat1, + ACTIONS(1826), 16, anon_sym_COLON, - ACTIONS(1792), 1, - anon_sym_STAR_STAR, - ACTIONS(1794), 1, - anon_sym_SLASH, - STATE(1195), 1, - sym_parameter, - STATE(1436), 1, - sym_lambda_parameters, - STATE(1476), 1, - sym__parameters, - STATE(1295), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1204), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [46374] = 12, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [49023] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1784), 1, + ACTIONS(1828), 1, sym_identifier, - ACTIONS(1786), 1, + ACTIONS(1830), 1, anon_sym_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1832), 1, anon_sym_STAR, - ACTIONS(1792), 1, + ACTIONS(1834), 1, + anon_sym_COLON, + ACTIONS(1836), 1, anon_sym_STAR_STAR, - ACTIONS(1794), 1, + ACTIONS(1838), 1, anon_sym_SLASH, - ACTIONS(1796), 1, - anon_sym_COLON, - STATE(1195), 1, + STATE(1296), 1, sym_parameter, - STATE(1370), 1, + STATE(1433), 1, sym_lambda_parameters, STATE(1476), 1, sym__parameters, - STATE(1295), 2, + STATE(1325), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1204), 6, + STATE(1299), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [46417] = 6, + [49066] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, + ACTIONS(1840), 1, anon_sym_COMMA, - ACTIONS(1800), 1, + ACTIONS(1842), 1, anon_sym_COLON, - ACTIONS(1802), 1, + ACTIONS(1844), 1, anon_sym_EQ, - STATE(842), 1, + STATE(862), 1, aux_sym__patterns_repeat1, - ACTIONS(1804), 13, + ACTIONS(1846), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63278,428 +64482,369 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46448] = 12, + [49097] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1784), 1, + ACTIONS(1828), 1, sym_identifier, - ACTIONS(1786), 1, + ACTIONS(1830), 1, anon_sym_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1832), 1, anon_sym_STAR, - ACTIONS(1792), 1, + ACTIONS(1836), 1, anon_sym_STAR_STAR, - ACTIONS(1794), 1, + ACTIONS(1838), 1, anon_sym_SLASH, - ACTIONS(1806), 1, + ACTIONS(1848), 1, anon_sym_COLON, - STATE(1195), 1, + STATE(1296), 1, sym_parameter, - STATE(1393), 1, + STATE(1475), 1, sym_lambda_parameters, STATE(1476), 1, sym__parameters, - STATE(1295), 2, + STATE(1325), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1204), 6, + STATE(1299), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [46491] = 12, + [49140] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1784), 1, + ACTIONS(1828), 1, sym_identifier, - ACTIONS(1786), 1, + ACTIONS(1830), 1, anon_sym_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1832), 1, anon_sym_STAR, - ACTIONS(1792), 1, + ACTIONS(1836), 1, anon_sym_STAR_STAR, - ACTIONS(1794), 1, + ACTIONS(1838), 1, anon_sym_SLASH, - ACTIONS(1808), 1, + ACTIONS(1850), 1, anon_sym_COLON, - STATE(1195), 1, + STATE(1296), 1, sym_parameter, - STATE(1356), 1, + STATE(1402), 1, sym_lambda_parameters, STATE(1476), 1, sym__parameters, - STATE(1295), 2, + STATE(1325), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1204), 6, + STATE(1299), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [46534] = 12, + [49183] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1784), 1, + ACTIONS(1828), 1, sym_identifier, - ACTIONS(1786), 1, + ACTIONS(1830), 1, anon_sym_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1832), 1, anon_sym_STAR, - ACTIONS(1792), 1, + ACTIONS(1836), 1, anon_sym_STAR_STAR, - ACTIONS(1794), 1, + ACTIONS(1838), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1852), 1, anon_sym_COLON, - STATE(1195), 1, + STATE(1296), 1, sym_parameter, - STATE(1467), 1, + STATE(1417), 1, sym_lambda_parameters, STATE(1476), 1, sym__parameters, - STATE(1295), 2, + STATE(1325), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1204), 6, + STATE(1299), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [46577] = 11, + [49226] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1828), 1, + sym_identifier, + ACTIONS(1830), 1, anon_sym_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1832), 1, anon_sym_STAR, - ACTIONS(1792), 1, + ACTIONS(1836), 1, anon_sym_STAR_STAR, - ACTIONS(1794), 1, + ACTIONS(1838), 1, anon_sym_SLASH, - ACTIONS(1812), 1, - sym_identifier, - ACTIONS(1814), 1, - anon_sym_RPAREN, - STATE(1248), 1, + ACTIONS(1854), 1, + anon_sym_COLON, + STATE(1296), 1, sym_parameter, - STATE(1377), 1, + STATE(1383), 1, + sym_lambda_parameters, + STATE(1476), 1, sym__parameters, - STATE(1255), 2, + STATE(1325), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1204), 6, + STATE(1299), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [46617] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(1671), 1, - anon_sym_DASH, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1816), 1, - sym_identifier, - ACTIONS(1818), 1, - anon_sym_RBRACE, - ACTIONS(1820), 1, - anon_sym_STAR_STAR, - STATE(942), 1, - sym_concatenated_string, - STATE(1101), 1, - sym_string, - STATE(1287), 1, - sym_match_double_star_pattern, - STATE(1336), 1, - sym_match_key_value_pattern, - STATE(1477), 2, - sym_match_literal_pattern, - sym_match_value_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - [46663] = 14, + [49269] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(1671), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(1701), 1, anon_sym_DASH, - ACTIONS(1679), 1, + ACTIONS(1709), 1, sym_integer, - ACTIONS(1681), 1, + ACTIONS(1711), 1, sym_float, - ACTIONS(1816), 1, + ACTIONS(1782), 1, sym_identifier, - ACTIONS(1820), 1, - anon_sym_STAR_STAR, - ACTIONS(1822), 1, - anon_sym_RBRACE, - STATE(942), 1, - sym_concatenated_string, - STATE(1101), 1, + STATE(1110), 1, + sym_template_string, + STATE(1112), 1, sym_string, - STATE(1232), 1, + STATE(1361), 1, sym_match_key_value_pattern, - STATE(1323), 1, - sym_match_double_star_pattern, - STATE(1477), 2, - sym_match_literal_pattern, - sym_match_value_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - [46709] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(1671), 1, - anon_sym_DASH, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1816), 1, - sym_identifier, - ACTIONS(1820), 1, - anon_sym_STAR_STAR, - ACTIONS(1824), 1, - anon_sym_RBRACE, - STATE(942), 1, + STATE(987), 2, sym_concatenated_string, - STATE(1101), 1, - sym_string, - STATE(1336), 1, - sym_match_key_value_pattern, - STATE(1351), 1, - sym_match_double_star_pattern, - STATE(1477), 2, + sym_concatenated_template_string, + STATE(1461), 2, sym_match_literal_pattern, sym_match_value_pattern, - ACTIONS(1683), 3, + ACTIONS(1713), 3, sym_true, sym_false, sym_none, - [46755] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1800), 1, - anon_sym_COLON, - ACTIONS(1802), 1, - anon_sym_EQ, - ACTIONS(1804), 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, - [46780] = 10, + [49313] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1784), 1, - sym_identifier, - ACTIONS(1786), 1, + sym_comment, + ACTIONS(1830), 1, anon_sym_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1832), 1, anon_sym_STAR, - ACTIONS(1792), 1, + ACTIONS(1836), 1, anon_sym_STAR_STAR, - ACTIONS(1794), 1, + ACTIONS(1838), 1, anon_sym_SLASH, - ACTIONS(1826), 1, - anon_sym_COLON, - STATE(1192), 1, + ACTIONS(1856), 1, + sym_identifier, + ACTIONS(1858), 1, + anon_sym_RPAREN, + STATE(1228), 1, sym_parameter, - STATE(1295), 2, + STATE(1469), 1, + sym__parameters, + STATE(1267), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1204), 6, + STATE(1299), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [46817] = 10, + [49353] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1830), 1, anon_sym_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1832), 1, anon_sym_STAR, - ACTIONS(1792), 1, + ACTIONS(1836), 1, anon_sym_STAR_STAR, - ACTIONS(1794), 1, + ACTIONS(1838), 1, anon_sym_SLASH, - ACTIONS(1812), 1, + ACTIONS(1856), 1, sym_identifier, - ACTIONS(1826), 1, + ACTIONS(1860), 1, anon_sym_RPAREN, - STATE(1192), 1, + STATE(1282), 1, sym_parameter, - STATE(1255), 2, + STATE(1267), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1204), 6, + STATE(1299), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [46854] = 10, + [49390] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1784), 1, + ACTIONS(1828), 1, sym_identifier, - ACTIONS(1786), 1, + ACTIONS(1830), 1, anon_sym_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1832), 1, anon_sym_STAR, - ACTIONS(1792), 1, + ACTIONS(1836), 1, anon_sym_STAR_STAR, - ACTIONS(1794), 1, + ACTIONS(1838), 1, anon_sym_SLASH, - ACTIONS(1828), 1, + ACTIONS(1862), 1, anon_sym_COLON, - STATE(1192), 1, + STATE(1282), 1, sym_parameter, - STATE(1295), 2, + STATE(1325), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1204), 6, + STATE(1299), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [46891] = 10, + [49427] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1830), 1, anon_sym_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1832), 1, anon_sym_STAR, - ACTIONS(1792), 1, + ACTIONS(1836), 1, anon_sym_STAR_STAR, - ACTIONS(1794), 1, + ACTIONS(1838), 1, anon_sym_SLASH, - ACTIONS(1812), 1, + ACTIONS(1856), 1, sym_identifier, - ACTIONS(1828), 1, + ACTIONS(1862), 1, anon_sym_RPAREN, - STATE(1192), 1, + STATE(1282), 1, sym_parameter, - STATE(1255), 2, + STATE(1267), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1204), 6, + STATE(1299), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [46928] = 3, + [49464] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1832), 1, - anon_sym_as, - ACTIONS(1830), 13, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, + ACTIONS(1842), 1, anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1844), 1, anon_sym_EQ, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [46950] = 9, + ACTIONS(1846), 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, + [49489] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1784), 1, + ACTIONS(1828), 1, sym_identifier, - ACTIONS(1786), 1, + ACTIONS(1830), 1, anon_sym_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1832), 1, anon_sym_STAR, - ACTIONS(1792), 1, + ACTIONS(1836), 1, anon_sym_STAR_STAR, - ACTIONS(1794), 1, + ACTIONS(1838), 1, anon_sym_SLASH, - STATE(1192), 1, + ACTIONS(1860), 1, + anon_sym_COLON, + STATE(1282), 1, sym_parameter, - STATE(1295), 2, + STATE(1325), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1204), 6, + STATE(1299), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [46984] = 9, + [49526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1479), 1, + anon_sym_as, + ACTIONS(1463), 13, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [49548] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1830), 1, anon_sym_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1832), 1, anon_sym_STAR, - ACTIONS(1792), 1, + ACTIONS(1836), 1, anon_sym_STAR_STAR, - ACTIONS(1794), 1, + ACTIONS(1838), 1, anon_sym_SLASH, - ACTIONS(1812), 1, + ACTIONS(1856), 1, sym_identifier, - STATE(1192), 1, + STATE(1282), 1, sym_parameter, - STATE(1255), 2, + STATE(1267), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1204), 6, + STATE(1299), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [47018] = 3, + [49582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(1866), 1, anon_sym_as, - ACTIONS(1457), 13, + ACTIONS(1864), 13, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -63713,40 +64858,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [47040] = 11, + [49604] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(1671), 1, - anon_sym_DASH, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1816), 1, + ACTIONS(1828), 1, sym_identifier, - STATE(942), 1, - sym_concatenated_string, - STATE(1101), 1, - sym_string, - STATE(1336), 1, - sym_match_key_value_pattern, - STATE(1477), 2, - sym_match_literal_pattern, - sym_match_value_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - [47077] = 4, + ACTIONS(1830), 1, + anon_sym_LPAREN, + ACTIONS(1832), 1, + anon_sym_STAR, + ACTIONS(1836), 1, + anon_sym_STAR_STAR, + ACTIONS(1838), 1, + anon_sym_SLASH, + STATE(1282), 1, + sym_parameter, + STATE(1325), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1299), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [49638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1836), 1, + ACTIONS(1870), 1, anon_sym_DOT, - STATE(865), 1, + STATE(880), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(1834), 10, + ACTIONS(1868), 10, anon_sym_import, anon_sym_LPAREN, anon_sym_RPAREN, @@ -63757,82 +64901,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [47099] = 3, + [49660] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1875), 1, + anon_sym_if, + ACTIONS(1877), 1, anon_sym_and, - ACTIONS(1839), 10, + ACTIONS(1879), 1, + anon_sym_or, + ACTIONS(1873), 8, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_or, sym_type_conversion, - [47118] = 12, + [49683] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(1881), 1, anon_sym_COMMA, - ACTIONS(1845), 1, + ACTIONS(1883), 1, anon_sym_if, - ACTIONS(1847), 1, + ACTIONS(1885), 1, anon_sym_COLON, - ACTIONS(1849), 1, + ACTIONS(1887), 1, anon_sym_async, - ACTIONS(1851), 1, + ACTIONS(1889), 1, anon_sym_for, - ACTIONS(1853), 1, + ACTIONS(1891), 1, anon_sym_RBRACE, - ACTIONS(1855), 1, + ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1895), 1, anon_sym_or, - STATE(916), 1, + STATE(943), 1, sym_for_in_clause, - STATE(1061), 1, + STATE(1069), 1, aux_sym__collection_elements_repeat1, - STATE(1366), 1, + STATE(1450), 1, sym__comprehension_clauses, - [47155] = 12, + [49720] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_COMMA, - ACTIONS(1845), 1, + ACTIONS(1883), 1, anon_sym_if, - ACTIONS(1847), 1, - anon_sym_COLON, - ACTIONS(1849), 1, + ACTIONS(1887), 1, anon_sym_async, - ACTIONS(1851), 1, + ACTIONS(1889), 1, anon_sym_for, - ACTIONS(1853), 1, - anon_sym_RBRACE, - ACTIONS(1855), 1, + ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1895), 1, anon_sym_or, - STATE(916), 1, + ACTIONS(1897), 1, + anon_sym_RPAREN, + ACTIONS(1899), 1, + anon_sym_COMMA, + ACTIONS(1902), 1, + anon_sym_as, + STATE(943), 1, sym_for_in_clause, - STATE(1061), 1, + STATE(1069), 1, aux_sym__collection_elements_repeat1, - STATE(1439), 1, + STATE(1387), 1, sym__comprehension_clauses, - [47192] = 5, + [49757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1868), 11, + anon_sym_import, anon_sym_DOT, - ACTIONS(1861), 1, anon_sym_LPAREN, - STATE(865), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(1863), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -63841,69 +64984,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [47215] = 7, + [49774] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1867), 1, - anon_sym_COMMA, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, anon_sym_or, - STATE(936), 1, + ACTIONS(1906), 1, + anon_sym_COMMA, + STATE(986), 1, aux_sym_expression_list_repeat1, - ACTIONS(1865), 6, + ACTIONS(1904), 6, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [47242] = 4, + [49801] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(1873), 9, + ACTIONS(1908), 1, + anon_sym_DOT, + ACTIONS(1910), 1, + anon_sym_LPAREN, + STATE(880), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(1912), 8, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [47263] = 5, + [49824] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1895), 1, anon_sym_or, - ACTIONS(1875), 8, + ACTIONS(1916), 1, + anon_sym_as, + ACTIONS(1914), 8, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [47286] = 4, + [49847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1877), 1, anon_sym_and, - ACTIONS(1871), 1, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(1877), 9, + ACTIONS(1918), 9, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -63913,106 +65057,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [47307] = 4, + [49868] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1871), 1, + ACTIONS(1895), 1, anon_sym_or, - ACTIONS(1839), 9, + ACTIONS(1920), 1, + anon_sym_as, + ACTIONS(1918), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [47328] = 5, + [49891] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(1883), 1, + anon_sym_if, + ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1895), 1, anon_sym_or, - ACTIONS(1879), 1, + ACTIONS(1924), 1, anon_sym_as, - ACTIONS(1873), 8, + ACTIONS(1922), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [47351] = 5, + [49916] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1920), 1, + anon_sym_as, + ACTIONS(1918), 9, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - ACTIONS(1871), 1, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_or, - ACTIONS(1881), 8, + [49937] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1918), 10, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, + anon_sym_or, sym_type_conversion, - [47374] = 6, + [49956] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, - anon_sym_if, - ACTIONS(1855), 1, + ACTIONS(1877), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(1883), 1, - anon_sym_as, - ACTIONS(1875), 7, + ACTIONS(1926), 9, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, - [47399] = 5, + anon_sym_EQ, + sym_type_conversion, + [49977] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(1883), 1, + anon_sym_if, + ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1895), 1, anon_sym_or, - ACTIONS(1885), 1, + ACTIONS(1928), 1, anon_sym_as, - ACTIONS(1877), 8, + ACTIONS(1873), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [47422] = 5, + [50002] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(1887), 8, + ACTIONS(1930), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -64021,33 +65181,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [47445] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1855), 1, - anon_sym_and, - ACTIONS(1889), 1, - anon_sym_as, - ACTIONS(1839), 9, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_or, - [47466] = 5, + [50025] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1895), 1, anon_sym_or, - ACTIONS(1889), 1, + ACTIONS(1932), 1, anon_sym_as, - ACTIONS(1839), 8, + ACTIONS(1926), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -64056,13 +65199,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [47489] = 2, + [50048] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1834), 11, - anon_sym_import, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(629), 1, + sym__template_string_start, + STATE(689), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1934), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64071,16 +65216,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [47506] = 5, + [50069] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, - anon_sym_DOT, - ACTIONS(1891), 1, - anon_sym_LPAREN, - STATE(869), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(1893), 8, + ACTIONS(627), 1, + sym__string_start, + STATE(686), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1934), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64089,43 +65233,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [47529] = 12, + [50090] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(1881), 1, + anon_sym_COMMA, + ACTIONS(1883), 1, anon_sym_if, - ACTIONS(1849), 1, + ACTIONS(1885), 1, + anon_sym_COLON, + ACTIONS(1887), 1, anon_sym_async, - ACTIONS(1851), 1, + ACTIONS(1889), 1, anon_sym_for, - ACTIONS(1855), 1, + ACTIONS(1891), 1, + anon_sym_RBRACE, + ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1857), 1, - anon_sym_or, ACTIONS(1895), 1, - anon_sym_RPAREN, - ACTIONS(1897), 1, - anon_sym_COMMA, - ACTIONS(1900), 1, - anon_sym_as, - STATE(916), 1, + anon_sym_or, + STATE(943), 1, sym_for_in_clause, - STATE(1061), 1, + STATE(1069), 1, aux_sym__collection_elements_repeat1, - STATE(1362), 1, + STATE(1391), 1, sym__comprehension_clauses, - [47566] = 6, + [50127] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(1883), 1, anon_sym_if, - ACTIONS(1855), 1, + ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1895), 1, anon_sym_or, - ACTIONS(1902), 1, + ACTIONS(1936), 1, anon_sym_as, - ACTIONS(1881), 7, + ACTIONS(1930), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -64133,242 +65277,284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [47591] = 4, + [50152] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, - sym__string_start, - STATE(643), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1904), 8, - anon_sym_RPAREN, + ACTIONS(1881), 1, anon_sym_COMMA, - anon_sym_as, + ACTIONS(1883), 1, anon_sym_if, + ACTIONS(1885), 1, anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, + ACTIONS(1887), 1, + anon_sym_async, + ACTIONS(1889), 1, + anon_sym_for, + ACTIONS(1891), 1, anon_sym_RBRACE, - [47612] = 6, + ACTIONS(1893), 1, + anon_sym_and, + ACTIONS(1895), 1, + anon_sym_or, + STATE(943), 1, + sym_for_in_clause, + STATE(1069), 1, + aux_sym__collection_elements_repeat1, + STATE(1489), 1, + sym__comprehension_clauses, + [50189] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1855), 1, + ACTIONS(1877), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(1906), 1, - anon_sym_as, - ACTIONS(1887), 7, + ACTIONS(1922), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, - [47637] = 12, + anon_sym_EQ, + sym_type_conversion, + [50212] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(1908), 1, + anon_sym_DOT, + ACTIONS(1938), 1, + anon_sym_LPAREN, + STATE(886), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(1940), 8, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1845), 1, + anon_sym_as, anon_sym_if, - ACTIONS(1847), 1, anon_sym_COLON, - ACTIONS(1849), 1, - anon_sym_async, - ACTIONS(1851), 1, - anon_sym_for, - ACTIONS(1853), 1, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(1855), 1, + [50235] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1877), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1879), 1, anon_sym_or, - STATE(916), 1, - sym_for_in_clause, - STATE(1061), 1, - aux_sym__collection_elements_repeat1, - STATE(1455), 1, - sym__comprehension_clauses, - [47674] = 9, - ACTIONS(1908), 1, + ACTIONS(1914), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [50256] = 9, + ACTIONS(1942), 1, anon_sym_LBRACE2, - ACTIONS(1912), 1, + ACTIONS(1946), 1, sym__not_escape_sequence, - ACTIONS(1914), 1, + ACTIONS(1948), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(1950), 1, sym__string_end, - STATE(912), 1, + STATE(931), 1, aux_sym_string_repeat1, - STATE(1009), 1, + STATE(1017), 1, aux_sym_string_content_repeat1, - STATE(1013), 1, - sym_string_content, - STATE(1020), 1, + STATE(1058), 1, sym_interpolation, - ACTIONS(1910), 3, + STATE(1059), 1, + sym_string_content, + ACTIONS(1944), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [47704] = 9, - ACTIONS(1908), 1, + [50286] = 9, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(1952), 1, anon_sym_LBRACE2, - ACTIONS(1912), 1, + ACTIONS(1958), 1, sym__not_escape_sequence, - ACTIONS(1914), 1, - sym_comment, - ACTIONS(1918), 1, + ACTIONS(1961), 1, sym__string_end, - STATE(912), 1, + STATE(906), 1, aux_sym_string_repeat1, - STATE(1009), 1, + STATE(1017), 1, aux_sym_string_content_repeat1, - STATE(1013), 1, - sym_string_content, - STATE(1020), 1, + STATE(1058), 1, sym_interpolation, - ACTIONS(1910), 3, + STATE(1059), 1, + sym_string_content, + ACTIONS(1955), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [47734] = 9, - ACTIONS(1908), 1, + [50316] = 9, + ACTIONS(1942), 1, anon_sym_LBRACE2, - ACTIONS(1912), 1, + ACTIONS(1946), 1, sym__not_escape_sequence, - ACTIONS(1914), 1, + ACTIONS(1948), 1, sym_comment, - ACTIONS(1920), 1, + ACTIONS(1963), 1, sym__string_end, - STATE(890), 1, + STATE(906), 1, aux_sym_string_repeat1, - STATE(1009), 1, + STATE(1017), 1, aux_sym_string_content_repeat1, - STATE(1013), 1, - sym_string_content, - STATE(1020), 1, + STATE(1058), 1, sym_interpolation, - ACTIONS(1910), 3, + STATE(1059), 1, + sym_string_content, + ACTIONS(1944), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [47764] = 9, - ACTIONS(1908), 1, + [50346] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1875), 1, + anon_sym_if, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, + anon_sym_or, + ACTIONS(1965), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [50368] = 9, + ACTIONS(1942), 1, anon_sym_LBRACE2, - ACTIONS(1912), 1, + ACTIONS(1946), 1, sym__not_escape_sequence, - ACTIONS(1914), 1, + ACTIONS(1948), 1, sym_comment, - ACTIONS(1922), 1, + ACTIONS(1967), 1, sym__string_end, - STATE(889), 1, + STATE(933), 1, aux_sym_string_repeat1, - STATE(1009), 1, + STATE(1017), 1, aux_sym_string_content_repeat1, - STATE(1013), 1, - sym_string_content, - STATE(1020), 1, + STATE(1058), 1, sym_interpolation, - ACTIONS(1910), 3, + STATE(1059), 1, + sym_string_content, + ACTIONS(1944), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [47794] = 11, + [50398] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_COMMA, - ACTIONS(1845), 1, + ACTIONS(1883), 1, anon_sym_if, - ACTIONS(1849), 1, + ACTIONS(1887), 1, anon_sym_async, - ACTIONS(1851), 1, + ACTIONS(1889), 1, anon_sym_for, - ACTIONS(1853), 1, - anon_sym_RBRACK, - ACTIONS(1855), 1, + ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1895), 1, anon_sym_or, - STATE(916), 1, + ACTIONS(1969), 1, + anon_sym_RPAREN, + ACTIONS(1971), 1, + anon_sym_COMMA, + STATE(943), 1, sym_for_in_clause, - STATE(1061), 1, - aux_sym__collection_elements_repeat1, - STATE(1374), 1, + STATE(1264), 1, + aux_sym_argument_list_repeat1, + STATE(1472), 1, sym__comprehension_clauses, - [47828] = 11, + [50432] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(1881), 1, anon_sym_COMMA, - ACTIONS(1845), 1, + ACTIONS(1883), 1, anon_sym_if, - ACTIONS(1849), 1, + ACTIONS(1887), 1, anon_sym_async, - ACTIONS(1851), 1, + ACTIONS(1889), 1, anon_sym_for, - ACTIONS(1855), 1, + ACTIONS(1891), 1, + anon_sym_RBRACK, + ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1895), 1, anon_sym_or, - ACTIONS(1924), 1, - anon_sym_RPAREN, - STATE(916), 1, + STATE(943), 1, sym_for_in_clause, - STATE(1061), 1, + STATE(1069), 1, aux_sym__collection_elements_repeat1, - STATE(1407), 1, + STATE(1422), 1, sym__comprehension_clauses, - [47862] = 11, + [50466] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(1883), 1, anon_sym_if, - ACTIONS(1849), 1, + ACTIONS(1887), 1, anon_sym_async, - ACTIONS(1851), 1, + ACTIONS(1889), 1, anon_sym_for, - ACTIONS(1855), 1, + ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1895), 1, anon_sym_or, - ACTIONS(1926), 1, + ACTIONS(1973), 1, anon_sym_RPAREN, - ACTIONS(1928), 1, + ACTIONS(1975), 1, anon_sym_COMMA, - STATE(916), 1, + STATE(943), 1, sym_for_in_clause, - STATE(1170), 1, + STATE(1221), 1, aux_sym_argument_list_repeat1, - STATE(1407), 1, + STATE(1387), 1, sym__comprehension_clauses, - [47896] = 3, + [50500] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1932), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1930), 8, + ACTIONS(1883), 1, + anon_sym_if, + ACTIONS(1887), 1, + anon_sym_async, + ACTIONS(1889), 1, + anon_sym_for, + ACTIONS(1893), 1, + anon_sym_and, + ACTIONS(1895), 1, + anon_sym_or, + ACTIONS(1977), 1, anon_sym_RPAREN, + ACTIONS(1979), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [47914] = 3, + STATE(943), 1, + sym_for_in_clause, + STATE(1280), 1, + aux_sym_argument_list_repeat1, + STATE(1390), 1, + sym__comprehension_clauses, + [50534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 2, + ACTIONS(1983), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1934), 8, + ACTIONS(1981), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64377,96 +65563,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [47932] = 5, + [50552] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(1938), 7, - anon_sym_RPAREN, + ACTIONS(1881), 1, anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(1883), 1, + anon_sym_if, + ACTIONS(1887), 1, + anon_sym_async, + ACTIONS(1889), 1, + anon_sym_for, + ACTIONS(1891), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [47954] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, + ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1895), 1, anon_sym_or, - ACTIONS(1940), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [47976] = 11, + STATE(943), 1, + sym_for_in_clause, + STATE(1069), 1, + aux_sym__collection_elements_repeat1, + STATE(1388), 1, + sym__comprehension_clauses, + [50586] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(1881), 1, anon_sym_COMMA, - ACTIONS(1845), 1, + ACTIONS(1883), 1, anon_sym_if, - ACTIONS(1849), 1, + ACTIONS(1887), 1, anon_sym_async, - ACTIONS(1851), 1, + ACTIONS(1889), 1, anon_sym_for, - ACTIONS(1855), 1, + ACTIONS(1891), 1, + anon_sym_RBRACK, + ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1895), 1, anon_sym_or, - ACTIONS(1942), 1, - anon_sym_RPAREN, - STATE(916), 1, + STATE(943), 1, sym_for_in_clause, - STATE(1061), 1, + STATE(1069), 1, aux_sym__collection_elements_repeat1, - STATE(1448), 1, + STATE(1381), 1, sym__comprehension_clauses, - [48010] = 11, + [50620] = 9, + ACTIONS(1942), 1, + anon_sym_LBRACE2, + ACTIONS(1946), 1, + sym__not_escape_sequence, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(1985), 1, + sym__string_end, + STATE(906), 1, + aux_sym_string_repeat1, + STATE(1017), 1, + aux_sym_string_content_repeat1, + STATE(1058), 1, + sym_interpolation, + STATE(1059), 1, + sym_string_content, + ACTIONS(1944), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [50650] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1849), 1, - anon_sym_async, - ACTIONS(1851), 1, - anon_sym_for, - ACTIONS(1855), 1, + ACTIONS(1877), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(1944), 1, + ACTIONS(1987), 7, anon_sym_RPAREN, - ACTIONS(1946), 1, anon_sym_COMMA, - STATE(916), 1, - sym_for_in_clause, - STATE(1155), 1, - aux_sym_argument_list_repeat1, - STATE(1448), 1, - sym__comprehension_clauses, - [48044] = 5, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [50672] = 9, + ACTIONS(1942), 1, + anon_sym_LBRACE2, + ACTIONS(1946), 1, + sym__not_escape_sequence, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(1989), 1, + sym__string_end, + STATE(930), 1, + aux_sym_string_repeat1, + STATE(1017), 1, + aux_sym_string_content_repeat1, + STATE(1058), 1, + sym_interpolation, + STATE(1059), 1, + sym_string_content, + ACTIONS(1944), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [50702] = 9, + ACTIONS(1942), 1, + anon_sym_LBRACE2, + ACTIONS(1946), 1, + sym__not_escape_sequence, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(1991), 1, + sym__string_end, + STATE(906), 1, + aux_sym_string_repeat1, + STATE(1017), 1, + aux_sym_string_content_repeat1, + STATE(1058), 1, + sym_interpolation, + STATE(1059), 1, + sym_string_content, + ACTIONS(1944), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [50732] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(1948), 7, + ACTIONS(1993), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -64474,228 +65706,283 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [48066] = 9, - ACTIONS(1908), 1, + [50754] = 9, + ACTIONS(1942), 1, anon_sym_LBRACE2, - ACTIONS(1912), 1, + ACTIONS(1946), 1, sym__not_escape_sequence, - ACTIONS(1914), 1, + ACTIONS(1948), 1, sym_comment, - ACTIONS(1950), 1, + ACTIONS(1995), 1, sym__string_end, - STATE(904), 1, + STATE(907), 1, aux_sym_string_repeat1, - STATE(1009), 1, + STATE(1017), 1, aux_sym_string_content_repeat1, - STATE(1013), 1, - sym_string_content, - STATE(1020), 1, + STATE(1058), 1, sym_interpolation, - ACTIONS(1910), 3, + STATE(1059), 1, + sym_string_content, + ACTIONS(1944), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [48096] = 9, - ACTIONS(1908), 1, + [50784] = 9, + ACTIONS(1942), 1, anon_sym_LBRACE2, - ACTIONS(1912), 1, + ACTIONS(1946), 1, sym__not_escape_sequence, - ACTIONS(1914), 1, + ACTIONS(1948), 1, sym_comment, - ACTIONS(1952), 1, + ACTIONS(1997), 1, sym__string_end, - STATE(912), 1, + STATE(927), 1, aux_sym_string_repeat1, - STATE(1009), 1, + STATE(1017), 1, aux_sym_string_content_repeat1, - STATE(1013), 1, - sym_string_content, - STATE(1020), 1, + STATE(1058), 1, sym_interpolation, - ACTIONS(1910), 3, + STATE(1059), 1, + sym_string_content, + ACTIONS(1944), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [48126] = 11, + [50814] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(1881), 1, anon_sym_COMMA, - ACTIONS(1845), 1, + ACTIONS(1883), 1, anon_sym_if, - ACTIONS(1849), 1, + ACTIONS(1887), 1, anon_sym_async, - ACTIONS(1851), 1, + ACTIONS(1889), 1, anon_sym_for, - ACTIONS(1855), 1, + ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1857), 1, - anon_sym_or, ACTIONS(1895), 1, + anon_sym_or, + ACTIONS(1897), 1, anon_sym_RPAREN, - STATE(916), 1, + STATE(943), 1, sym_for_in_clause, - STATE(1061), 1, + STATE(1069), 1, aux_sym__collection_elements_repeat1, - STATE(1362), 1, + STATE(1387), 1, sym__comprehension_clauses, - [48160] = 11, + [50848] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1849), 1, - anon_sym_async, - ACTIONS(1851), 1, - anon_sym_for, - ACTIONS(1855), 1, + ACTIONS(1877), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(1954), 1, + ACTIONS(1999), 7, anon_sym_RPAREN, - ACTIONS(1956), 1, anon_sym_COMMA, - STATE(916), 1, - sym_for_in_clause, - STATE(1240), 1, - aux_sym_argument_list_repeat1, - STATE(1362), 1, - sym__comprehension_clauses, - [48194] = 9, - ACTIONS(1908), 1, - anon_sym_LBRACE2, - ACTIONS(1912), 1, - sym__not_escape_sequence, - ACTIONS(1914), 1, - sym_comment, - ACTIONS(1958), 1, - sym__string_end, - STATE(909), 1, - aux_sym_string_repeat1, - STATE(1009), 1, - aux_sym_string_content_repeat1, - STATE(1013), 1, - sym_string_content, - STATE(1020), 1, - sym_interpolation, - ACTIONS(1910), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [48224] = 5, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [50870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(1960), 7, + ACTIONS(2003), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2001), 8, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [48246] = 9, - ACTIONS(1908), 1, + [50888] = 9, + ACTIONS(1942), 1, anon_sym_LBRACE2, - ACTIONS(1912), 1, + ACTIONS(1946), 1, sym__not_escape_sequence, - ACTIONS(1914), 1, + ACTIONS(1948), 1, sym_comment, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym__string_end, - STATE(912), 1, + STATE(906), 1, aux_sym_string_repeat1, - STATE(1009), 1, + STATE(1017), 1, aux_sym_string_content_repeat1, - STATE(1013), 1, - sym_string_content, - STATE(1020), 1, + STATE(1058), 1, sym_interpolation, - ACTIONS(1910), 3, + STATE(1059), 1, + sym_string_content, + ACTIONS(1944), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [48276] = 11, + [50918] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(1881), 1, anon_sym_COMMA, - ACTIONS(1845), 1, + ACTIONS(1883), 1, anon_sym_if, - ACTIONS(1849), 1, + ACTIONS(1887), 1, anon_sym_async, - ACTIONS(1851), 1, + ACTIONS(1889), 1, anon_sym_for, - ACTIONS(1853), 1, - anon_sym_RBRACK, - ACTIONS(1855), 1, + ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1895), 1, anon_sym_or, - STATE(916), 1, + ACTIONS(2007), 1, + anon_sym_RPAREN, + STATE(943), 1, sym_for_in_clause, - STATE(1061), 1, + STATE(1069), 1, aux_sym__collection_elements_repeat1, - STATE(1445), 1, + STATE(1472), 1, sym__comprehension_clauses, - [48310] = 11, + [50952] = 9, + ACTIONS(1942), 1, + anon_sym_LBRACE2, + ACTIONS(1946), 1, + sym__not_escape_sequence, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2009), 1, + sym__string_end, + STATE(920), 1, + aux_sym_string_repeat1, + STATE(1017), 1, + aux_sym_string_content_repeat1, + STATE(1058), 1, + sym_interpolation, + STATE(1059), 1, + sym_string_content, + ACTIONS(1944), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [50982] = 9, + ACTIONS(1942), 1, + anon_sym_LBRACE2, + ACTIONS(1946), 1, + sym__not_escape_sequence, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2011), 1, + sym__string_end, + STATE(906), 1, + aux_sym_string_repeat1, + STATE(1017), 1, + aux_sym_string_content_repeat1, + STATE(1058), 1, + sym_interpolation, + STATE(1059), 1, + sym_string_content, + ACTIONS(1944), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [51012] = 9, + ACTIONS(1942), 1, + anon_sym_LBRACE2, + ACTIONS(1946), 1, + sym__not_escape_sequence, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2013), 1, + sym__string_end, + STATE(906), 1, + aux_sym_string_repeat1, + STATE(1017), 1, + aux_sym_string_content_repeat1, + STATE(1058), 1, + sym_interpolation, + STATE(1059), 1, + sym_string_content, + ACTIONS(1944), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [51042] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(1881), 1, anon_sym_COMMA, - ACTIONS(1845), 1, + ACTIONS(1883), 1, anon_sym_if, - ACTIONS(1849), 1, + ACTIONS(1887), 1, anon_sym_async, - ACTIONS(1851), 1, + ACTIONS(1889), 1, anon_sym_for, - ACTIONS(1853), 1, - anon_sym_RBRACK, - ACTIONS(1855), 1, + ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1895), 1, anon_sym_or, - STATE(916), 1, + ACTIONS(2015), 1, + anon_sym_RPAREN, + STATE(943), 1, sym_for_in_clause, - STATE(1061), 1, + STATE(1069), 1, aux_sym__collection_elements_repeat1, - STATE(1363), 1, + STATE(1390), 1, sym__comprehension_clauses, - [48344] = 9, - ACTIONS(1914), 1, - sym_comment, - ACTIONS(1964), 1, + [51076] = 9, + ACTIONS(1942), 1, anon_sym_LBRACE2, - ACTIONS(1970), 1, + ACTIONS(1946), 1, sym__not_escape_sequence, - ACTIONS(1973), 1, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2017), 1, sym__string_end, - STATE(912), 1, + STATE(906), 1, aux_sym_string_repeat1, - STATE(1009), 1, + STATE(1017), 1, aux_sym_string_content_repeat1, - STATE(1013), 1, + STATE(1058), 1, + sym_interpolation, + STATE(1059), 1, sym_string_content, - STATE(1020), 1, + ACTIONS(1944), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [51106] = 9, + ACTIONS(1942), 1, + anon_sym_LBRACE2, + ACTIONS(1946), 1, + sym__not_escape_sequence, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2019), 1, + sym__string_end, + STATE(917), 1, + aux_sym_string_repeat1, + STATE(1017), 1, + aux_sym_string_content_repeat1, + STATE(1058), 1, sym_interpolation, - ACTIONS(1967), 3, + STATE(1059), 1, + sym_string_content, + ACTIONS(1944), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [48374] = 4, + [51136] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1895), 1, anon_sym_or, - ACTIONS(1975), 7, + ACTIONS(2021), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -64703,29 +65990,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [48393] = 4, + [51155] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1979), 1, - anon_sym_PIPE, - STATE(914), 1, - aux_sym_match_or_pattern_repeat1, - ACTIONS(1977), 7, + ACTIONS(1887), 1, + anon_sym_async, + ACTIONS(1889), 1, + anon_sym_for, + ACTIONS(2025), 1, + anon_sym_if, + ACTIONS(2023), 3, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(937), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [51178] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2029), 1, anon_sym_if, - anon_sym_COLON, + ACTIONS(2032), 1, + anon_sym_async, + ACTIONS(2035), 1, + anon_sym_for, + ACTIONS(2027), 3, + anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [48412] = 4, + STATE(937), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [51201] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 1, + ACTIONS(2040), 1, anon_sym_PIPE, - STATE(917), 1, + STATE(940), 1, aux_sym_match_or_pattern_repeat1, - ACTIONS(1982), 7, + ACTIONS(2038), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64733,31 +66039,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [48431] = 6, + [51220] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1849), 1, - anon_sym_async, - ACTIONS(1851), 1, - anon_sym_for, - ACTIONS(1988), 1, - anon_sym_if, - ACTIONS(1986), 3, + ACTIONS(2044), 1, + anon_sym_PIPE, + STATE(939), 1, + aux_sym_match_or_pattern_repeat1, + ACTIONS(2042), 7, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(922), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [48454] = 4, + [51239] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 1, + ACTIONS(2040), 1, anon_sym_PIPE, - STATE(914), 1, + STATE(939), 1, aux_sym_match_or_pattern_repeat1, - ACTIONS(1990), 7, + ACTIONS(2047), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64765,49 +66069,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [48473] = 7, + [51258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1867), 1, + ACTIONS(1895), 1, + anon_sym_or, + ACTIONS(2021), 7, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1869), 1, anon_sym_if, - ACTIONS(1871), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51277] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1875), 1, + anon_sym_if, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, anon_sym_or, - STATE(936), 1, + ACTIONS(1906), 1, + anon_sym_COMMA, + STATE(986), 1, aux_sym_expression_list_repeat1, - ACTIONS(1992), 4, + ACTIONS(2049), 4, anon_sym_COLON, anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [48498] = 6, + [51302] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1996), 1, - anon_sym_if, - ACTIONS(1999), 1, + ACTIONS(1887), 1, anon_sym_async, - ACTIONS(2002), 1, + ACTIONS(1889), 1, anon_sym_for, - ACTIONS(1994), 3, + ACTIONS(2025), 1, + anon_sym_if, + ACTIONS(2051), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(919), 3, + STATE(936), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [48521] = 4, + [51325] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1895), 1, anon_sym_or, - ACTIONS(1975), 7, + ACTIONS(2021), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -64815,42 +66134,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [48540] = 4, + [51344] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(2053), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(2055), 1, anon_sym_or, - ACTIONS(1975), 7, + ACTIONS(1926), 6, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ, + sym__semicolon, + [51362] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2057), 8, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48559] = 6, + [51376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1849), 1, - anon_sym_async, - ACTIONS(1851), 1, - anon_sym_for, - ACTIONS(1988), 1, + ACTIONS(2053), 1, + anon_sym_and, + ACTIONS(1918), 7, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ, + anon_sym_or, + sym__semicolon, + [51392] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2053), 1, + anon_sym_and, + ACTIONS(2055), 1, + anon_sym_or, + ACTIONS(1918), 6, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ, + sym__semicolon, + [51410] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2053), 1, + anon_sym_and, + ACTIONS(2055), 1, + anon_sym_or, + ACTIONS(2059), 1, anon_sym_if, - ACTIONS(2005), 3, + ACTIONS(1922), 5, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_EQ, + sym__semicolon, + [51430] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2061), 8, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(919), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [48582] = 2, + [51444] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2007), 8, + ACTIONS(2063), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64859,10 +66226,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48596] = 2, + [51458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2009), 8, + ACTIONS(2065), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64871,24 +66238,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48610] = 4, + [51472] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2013), 1, + ACTIONS(2053), 1, + anon_sym_and, + ACTIONS(2055), 1, + anon_sym_or, + ACTIONS(1914), 6, + sym__newline, + anon_sym_from, anon_sym_COMMA, - STATE(925), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2011), 6, + anon_sym_if, + anon_sym_EQ, + sym__semicolon, + [51490] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2067), 8, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [48628] = 2, + [51504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2016), 8, + ACTIONS(2069), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64897,36 +66276,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48642] = 2, + [51518] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 8, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_EQ, + ACTIONS(2053), 1, anon_sym_and, + ACTIONS(2055), 1, anon_sym_or, + ACTIONS(2059), 1, + anon_sym_if, + ACTIONS(2071), 1, + anon_sym_from, + ACTIONS(2073), 1, + anon_sym_COMMA, + STATE(1078), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2075), 2, + sym__newline, sym__semicolon, - [48656] = 4, + [51544] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(2079), 1, anon_sym_COMMA, - STATE(928), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2018), 6, + STATE(957), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2077), 6, anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [48674] = 2, + anon_sym_EQ, + sym_type_conversion, + [51562] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1977), 8, + ACTIONS(2082), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64935,10 +66320,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48688] = 2, + [51576] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 8, + ACTIONS(2084), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64947,55 +66332,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48702] = 4, + [51590] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2027), 1, + ACTIONS(2088), 1, anon_sym_COMMA, - STATE(963), 1, + STATE(964), 1, aux_sym_for_in_clause_repeat1, - ACTIONS(2025), 6, + ACTIONS(2086), 6, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [48720] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_AT, - ACTIONS(2029), 1, - anon_sym_async, - ACTIONS(2031), 1, - anon_sym_def, - ACTIONS(2033), 1, - anon_sym_class, - STATE(501), 2, - sym_function_definition, - sym_class_definition, - STATE(1019), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [48744] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2037), 1, - anon_sym_COMMA, - STATE(925), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2035), 6, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [48762] = 2, + [51608] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2039), 8, + ACTIONS(2090), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65004,10 +66358,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48776] = 2, + [51622] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2041), 8, + ACTIONS(2092), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65016,24 +66370,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48790] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2043), 1, - anon_sym_COMMA, - STATE(925), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2035), 6, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [48808] = 2, + [51636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2045), 8, + ACTIONS(2094), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65042,38 +66382,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48822] = 4, + [51650] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2049), 1, + ACTIONS(2098), 1, anon_sym_COMMA, - STATE(928), 1, + STATE(964), 1, aux_sym_for_in_clause_repeat1, - ACTIONS(2047), 6, + ACTIONS(2096), 6, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [48840] = 4, + [51668] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, ACTIONS(2053), 1, + anon_sym_and, + ACTIONS(2055), 1, anon_sym_or, - ACTIONS(1873), 6, + ACTIONS(2059), 1, + anon_sym_if, + ACTIONS(1987), 5, sym__newline, anon_sym_from, anon_sym_COMMA, - anon_sym_if, anon_sym_EQ, sym__semicolon, - [48858] = 2, + [51688] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 8, + ACTIONS(1864), 8, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -65082,48 +66423,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym__semicolon, - [48872] = 4, + [51702] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, - anon_sym_and, - ACTIONS(1857), 1, - anon_sym_or, - ACTIONS(2055), 6, + ACTIONS(1908), 1, + anon_sym_DOT, + ACTIONS(1938), 1, + anon_sym_LPAREN, + ACTIONS(2101), 1, + anon_sym_EQ, + STATE(886), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(1940), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [51724] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2105), 1, + anon_sym_COMMA, + STATE(972), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2103), 6, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [48890] = 2, + [51742] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1904), 8, - anon_sym_RPAREN, + ACTIONS(2109), 1, anon_sym_COMMA, - anon_sym_as, + STATE(960), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2107), 6, + anon_sym_RPAREN, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [48904] = 2, + [51760] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [48918] = 2, + ACTIONS(67), 1, + anon_sym_AT, + ACTIONS(2111), 1, + anon_sym_async, + ACTIONS(2113), 1, + anon_sym_def, + ACTIONS(2115), 1, + anon_sym_class, + STATE(544), 2, + sym_function_definition, + sym_class_definition, + STATE(1064), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [51784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2059), 8, + ACTIONS(2117), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65132,39 +66496,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48932] = 4, + [51798] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2121), 1, anon_sym_COMMA, - STATE(938), 1, + STATE(964), 1, aux_sym_for_in_clause_repeat1, - ACTIONS(2061), 6, + ACTIONS(2119), 6, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [48950] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(1875), 5, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_EQ, - sym__semicolon, - [48970] = 2, + [51816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2067), 8, + ACTIONS(2042), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65173,10 +66522,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48984] = 2, + [51830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2069), 8, + ACTIONS(2123), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65185,10 +66534,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48998] = 2, + [51844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2071), 8, + ACTIONS(2125), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65197,10 +66546,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49012] = 2, + [51858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2073), 8, + ACTIONS(2127), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65209,61 +66558,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49026] = 2, + [51872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2075), 8, - anon_sym_RPAREN, + ACTIONS(1463), 8, + sym__newline, + anon_sym_from, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [49040] = 5, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + sym__semicolon, + [51886] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, ACTIONS(2053), 1, + anon_sym_and, + ACTIONS(2055), 1, anon_sym_or, - ACTIONS(2065), 1, + ACTIONS(2059), 1, anon_sym_if, - ACTIONS(1887), 5, + ACTIONS(1930), 5, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_EQ, sym__semicolon, - [49060] = 2, + [51906] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2129), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51920] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2077), 8, + ACTIONS(1893), 1, + anon_sym_and, + ACTIONS(1895), 1, + anon_sym_or, + ACTIONS(2131), 6, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [49074] = 2, + [51938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2079), 8, + ACTIONS(2135), 1, + anon_sym_PIPE, + ACTIONS(2133), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49088] = 2, + [51954] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2081), 8, + ACTIONS(2137), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65272,89 +66636,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49102] = 8, + [51968] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, ACTIONS(2053), 1, + anon_sym_and, + ACTIONS(2055), 1, anon_sym_or, - ACTIONS(2065), 1, + ACTIONS(2059), 1, anon_sym_if, - ACTIONS(2083), 1, + ACTIONS(1873), 5, + sym__newline, anon_sym_from, - ACTIONS(2085), 1, anon_sym_COMMA, - STATE(1079), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2087), 2, - sym__newline, + anon_sym_EQ, sym__semicolon, - [49128] = 7, + [51988] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2139), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [52002] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(67), 1, anon_sym_AT, - ACTIONS(2089), 1, + ACTIONS(2141), 1, anon_sym_async, - ACTIONS(2091), 1, + ACTIONS(2143), 1, anon_sym_def, - ACTIONS(2093), 1, + ACTIONS(2145), 1, anon_sym_class, - STATE(469), 2, + STATE(547), 2, sym_function_definition, sym_class_definition, - STATE(1019), 2, + STATE(1064), 2, sym_decorator, aux_sym_decorated_definition_repeat1, - [49152] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(1877), 6, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_EQ, - sym__semicolon, - [49170] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(1881), 5, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_EQ, - sym__semicolon, - [49190] = 5, + [52026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(1960), 5, - sym__newline, - anon_sym_from, + ACTIONS(2149), 1, anon_sym_COMMA, + STATE(957), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2147), 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_EQ, - sym__semicolon, - [49210] = 2, + sym_type_conversion, + [52044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2095), 8, + ACTIONS(1934), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65363,10 +66706,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49224] = 2, + [52058] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2097), 8, + ACTIONS(2151), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65375,24 +66718,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49238] = 4, + [52072] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2101), 1, + ACTIONS(2153), 1, anon_sym_COMMA, - STATE(928), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2099), 6, + STATE(957), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2147), 6, anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [49256] = 2, + anon_sym_EQ, + sym_type_conversion, + [52090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 8, + ACTIONS(2155), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65401,301 +66744,303 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49270] = 6, + [52104] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, - anon_sym_DOT, - ACTIONS(1891), 1, - anon_sym_LPAREN, - ACTIONS(2105), 1, - anon_sym_EQ, - STATE(869), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(1893), 4, - anon_sym_RPAREN, + ACTIONS(2053), 1, + anon_sym_and, + ACTIONS(2055), 1, + anon_sym_or, + ACTIONS(2059), 1, + anon_sym_if, + ACTIONS(2073), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [49292] = 3, + STATE(1078), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2157), 2, + sym__newline, + sym__semicolon, + [52127] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(1839), 7, - sym__newline, - anon_sym_from, + ACTIONS(2159), 7, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, - anon_sym_EQ, - anon_sym_or, - sym__semicolon, - [49308] = 4, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [52140] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(1883), 1, + anon_sym_if, + ACTIONS(1893), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(1895), 1, anon_sym_or, - ACTIONS(1839), 6, - sym__newline, - anon_sym_from, + ACTIONS(2161), 4, anon_sym_COMMA, - anon_sym_if, - anon_sym_EQ, - sym__semicolon, - [49326] = 3, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [52159] = 6, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2163), 1, + anon_sym_LBRACE2, + ACTIONS(2168), 1, + sym__not_escape_sequence, + ACTIONS(2171), 1, + sym__string_end, + STATE(994), 1, + aux_sym_string_content_repeat1, + ACTIONS(2165), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [52180] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2107), 7, + ACTIONS(2173), 1, + anon_sym_if, + ACTIONS(2175), 1, + anon_sym_and, + ACTIONS(2177), 1, + anon_sym_or, + ACTIONS(1922), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - [49342] = 5, + [52199] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2111), 1, + ACTIONS(2179), 1, sym_identifier, - ACTIONS(2113), 1, - anon_sym_STAR, - ACTIONS(2115), 1, - anon_sym_STAR_STAR, - STATE(1277), 4, - sym_typevar_parameter, - sym_typevartuple_parameter, - sym_paramspec_parameter, - sym__type_parameter, - [49361] = 3, + ACTIONS(2181), 1, + anon_sym_DOT, + ACTIONS(2183), 1, + anon_sym___future__, + STATE(1129), 1, + aux_sym_import_prefix_repeat1, + STATE(1215), 1, + sym_import_prefix, + STATE(1414), 2, + sym_relative_import, + sym_dotted_name, + [52222] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, + ACTIONS(2053), 1, anon_sym_and, - ACTIONS(1839), 6, + ACTIONS(2055), 1, + anon_sym_or, + ACTIONS(2059), 1, + anon_sym_if, + ACTIONS(1999), 4, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + sym__semicolon, + [52241] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1463), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_and, anon_sym_or, - [49376] = 4, + [52254] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, + ACTIONS(2173), 1, + anon_sym_if, + ACTIONS(2175), 1, anon_sym_and, - ACTIONS(2119), 1, + ACTIONS(2177), 1, anon_sym_or, - ACTIONS(1839), 5, + ACTIONS(1873), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, anon_sym_COLON, - [49393] = 3, + [52273] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2123), 1, - anon_sym_as, - ACTIONS(2121), 6, + ACTIONS(2053), 1, + anon_sym_and, + ACTIONS(2055), 1, + anon_sym_or, + ACTIONS(2059), 1, + anon_sym_if, + ACTIONS(2073), 1, + anon_sym_COMMA, + STATE(1078), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2185), 2, + sym__newline, + sym__semicolon, + [52296] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1887), 1, + anon_sym_async, + ACTIONS(1889), 1, + anon_sym_for, + ACTIONS(2187), 1, + anon_sym_COMMA, + ACTIONS(2189), 1, + anon_sym_RBRACE, + STATE(943), 1, + sym_for_in_clause, + STATE(1240), 1, + aux_sym_dictionary_repeat1, + STATE(1380), 1, + sym__comprehension_clauses, + [52321] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1999), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [49408] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2125), 1, - anon_sym_except, - ACTIONS(2127), 1, - anon_sym_finally, - STATE(532), 1, - sym_finally_clause, - STATE(231), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - STATE(232), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - [49429] = 7, + anon_sym_EQ, + sym_type_conversion, + [52334] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2175), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(2177), 1, anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(2085), 1, + ACTIONS(1918), 5, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1079), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2129), 2, - sym__newline, - sym__semicolon, - [49452] = 6, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [52351] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2125), 1, + ACTIONS(2191), 1, anon_sym_except, - ACTIONS(2127), 1, + ACTIONS(2193), 1, anon_sym_finally, - STATE(544), 1, + STATE(521), 1, sym_finally_clause, - STATE(223), 2, + STATE(242), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - STATE(233), 2, + STATE(248), 2, sym_except_clause, aux_sym_try_statement_repeat1, - [49473] = 5, + [52372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, + ACTIONS(2175), 1, anon_sym_and, - ACTIONS(2119), 1, - anon_sym_or, - ACTIONS(2131), 1, - anon_sym_if, - ACTIONS(1881), 4, + ACTIONS(1918), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_if, anon_sym_COLON, - [49492] = 7, + anon_sym_or, + [52387] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, ACTIONS(2053), 1, + anon_sym_and, + ACTIONS(2055), 1, anon_sym_or, - ACTIONS(2065), 1, + ACTIONS(2059), 1, anon_sym_if, - ACTIONS(2133), 1, + ACTIONS(2195), 1, anon_sym_COMMA, - STATE(1098), 1, + STATE(1160), 1, aux_sym_assert_statement_repeat1, - ACTIONS(2135), 2, + ACTIONS(2197), 2, sym__newline, sym__semicolon, - [49515] = 5, + [52410] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(1875), 1, + anon_sym_if, + ACTIONS(1877), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(1938), 4, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - sym__semicolon, - [49534] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2137), 7, + ACTIONS(2199), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [49547] = 7, + anon_sym_COLON, + anon_sym_EQ, + [52429] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2175), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(2177), 1, anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(2133), 1, - anon_sym_COMMA, - STATE(1116), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2139), 2, - sym__newline, - sym__semicolon, - [49570] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2111), 1, - sym_identifier, - ACTIONS(2113), 1, - anon_sym_STAR, - ACTIONS(2115), 1, - anon_sym_STAR_STAR, - STATE(1347), 4, - sym_typevar_parameter, - sym_typevartuple_parameter, - sym_paramspec_parameter, - sym__type_parameter, - [49589] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1457), 7, + ACTIONS(1926), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [49602] = 5, + [52446] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, + ACTIONS(2173), 1, + anon_sym_if, + ACTIONS(2175), 1, anon_sym_and, - ACTIONS(2119), 1, + ACTIONS(2177), 1, anon_sym_or, - ACTIONS(2131), 1, - anon_sym_if, - ACTIONS(1887), 4, + ACTIONS(1930), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_COLON, - [49621] = 5, + [52465] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, - anon_sym_if, - ACTIONS(1855), 1, + ACTIONS(2175), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(2177), 1, anon_sym_or, - ACTIONS(2141), 4, + ACTIONS(1914), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [49640] = 5, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [52482] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2143), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [49659] = 2, + ACTIONS(2201), 1, + sym_identifier, + ACTIONS(2203), 1, + anon_sym_STAR, + ACTIONS(2205), 1, + anon_sym_STAR_STAR, + STATE(1353), 4, + sym_typevar_parameter, + sym_typevartuple_parameter, + sym_paramspec_parameter, + sym__type_parameter, + [52501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2018), 7, + ACTIONS(2207), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -65703,40 +67048,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [49672] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2117), 1, - anon_sym_and, - ACTIONS(2119), 1, - anon_sym_or, - ACTIONS(2131), 1, - anon_sym_if, - ACTIONS(2147), 1, - anon_sym_as, - ACTIONS(2145), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [49693] = 6, - ACTIONS(1914), 1, - sym_comment, - ACTIONS(2149), 1, - anon_sym_LBRACE2, - ACTIONS(2154), 1, - sym__not_escape_sequence, - ACTIONS(2157), 1, - sym__string_end, - STATE(988), 1, - aux_sym_string_content_repeat1, - ACTIONS(2151), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49714] = 2, + [52514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2159), 7, + ACTIONS(2096), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -65744,207 +67059,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [49727] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1849), 1, - anon_sym_async, - ACTIONS(1851), 1, - anon_sym_for, - ACTIONS(2161), 1, - anon_sym_COMMA, - ACTIONS(2163), 1, - anon_sym_RBRACE, - STATE(916), 1, - sym_for_in_clause, - STATE(1265), 1, - aux_sym_dictionary_repeat1, - STATE(1457), 1, - sym__comprehension_clauses, - [49752] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2165), 1, - sym_identifier, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_STAR, - STATE(1055), 1, - sym_dotted_name, - STATE(1117), 1, - sym_aliased_import, - STATE(1293), 1, - sym__import_list, - STATE(1297), 1, - sym_wildcard_import, - [49777] = 6, + [52527] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, + ACTIONS(2209), 1, anon_sym_except, - ACTIONS(2173), 1, + ACTIONS(2211), 1, anon_sym_finally, - STATE(460), 1, + STATE(559), 1, sym_finally_clause, - STATE(229), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - STATE(234), 2, + STATE(240), 2, sym_except_clause, aux_sym_try_statement_repeat1, - [49798] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(2085), 1, - anon_sym_COMMA, - STATE(1079), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2175), 2, - sym__newline, - sym__semicolon, - [49821] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(2085), 1, - anon_sym_COMMA, - STATE(1079), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2177), 2, - sym__newline, - sym__semicolon, - [49844] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2179), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [49863] = 8, + STATE(244), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [52548] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1849), 1, + ACTIONS(1887), 1, anon_sym_async, - ACTIONS(1851), 1, + ACTIONS(1889), 1, anon_sym_for, - ACTIONS(2181), 1, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(2183), 1, + ACTIONS(2215), 1, anon_sym_RBRACE, - STATE(916), 1, + STATE(943), 1, sym_for_in_clause, - STATE(1190), 1, + STATE(1245), 1, aux_sym_dictionary_repeat1, - STATE(1360), 1, + STATE(1420), 1, sym__comprehension_clauses, - [49888] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2185), 1, - sym_identifier, - ACTIONS(2187), 1, - anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym___future__, - STATE(1108), 1, - aux_sym_import_prefix_repeat1, - STATE(1173), 1, - sym_import_prefix, - STATE(1388), 2, - sym_relative_import, - sym_dotted_name, - [49911] = 5, + [52573] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2173), 1, + anon_sym_if, + ACTIONS(2175), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(2177), 1, anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(1948), 4, - sym__newline, - anon_sym_from, + ACTIONS(2219), 1, + anon_sym_as, + ACTIONS(2217), 3, + anon_sym_RPAREN, anon_sym_COMMA, - sym__semicolon, - [49930] = 7, + anon_sym_COLON, + [52594] = 6, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2221), 1, + anon_sym_LBRACE2, + ACTIONS(2225), 1, + sym__not_escape_sequence, + ACTIONS(2227), 1, + sym__string_end, + STATE(994), 1, + aux_sym_string_content_repeat1, + ACTIONS(2223), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [52615] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(2191), 1, - anon_sym_COMMA, - STATE(1097), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2193), 2, - sym__newline, - sym__semicolon, - [49953] = 2, + ACTIONS(2229), 1, + sym_identifier, + ACTIONS(2231), 1, + anon_sym_LPAREN, + ACTIONS(2233), 1, + anon_sym_STAR, + STATE(1095), 1, + sym_dotted_name, + STATE(1146), 1, + sym_aliased_import, + STATE(1330), 1, + sym_wildcard_import, + STATE(1331), 1, + sym__import_list, + [52640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 7, + ACTIONS(2237), 1, + anon_sym_as, + ACTIONS(2235), 6, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [49966] = 4, + [52655] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, + ACTIONS(1875), 1, + anon_sym_if, + ACTIONS(1877), 1, anon_sym_and, - ACTIONS(2119), 1, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(1873), 5, + ACTIONS(2239), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [49983] = 6, + anon_sym_RBRACK, + anon_sym_RBRACE, + [52674] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, - anon_sym_except, - ACTIONS(2173), 1, - anon_sym_finally, - STATE(475), 1, - sym_finally_clause, - STATE(226), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(227), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [50004] = 2, + ACTIONS(2201), 1, + sym_identifier, + ACTIONS(2203), 1, + anon_sym_STAR, + ACTIONS(2205), 1, + anon_sym_STAR_STAR, + STATE(1286), 4, + sym_typevar_parameter, + sym_typevartuple_parameter, + sym_paramspec_parameter, + sym__type_parameter, + [52693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 7, + ACTIONS(1864), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65952,26 +67189,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [50017] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(2085), 1, - anon_sym_COMMA, - STATE(1079), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2195), 2, - sym__newline, - sym__semicolon, - [50040] = 2, + [52706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1948), 7, + ACTIONS(1904), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -65979,5225 +67200,5321 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [50053] = 5, + [52719] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, + ACTIONS(2053), 1, anon_sym_and, - ACTIONS(2119), 1, + ACTIONS(2055), 1, anon_sym_or, - ACTIONS(2131), 1, + ACTIONS(2059), 1, anon_sym_if, - ACTIONS(1875), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_COLON, - [50072] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2117), 1, - anon_sym_and, - ACTIONS(2119), 1, - anon_sym_or, - ACTIONS(1877), 5, - anon_sym_RPAREN, + ACTIONS(2073), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [50089] = 7, + STATE(1078), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2241), 2, + sym__newline, + sym__semicolon, + [52742] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, ACTIONS(2053), 1, + anon_sym_and, + ACTIONS(2055), 1, anon_sym_or, - ACTIONS(2065), 1, + ACTIONS(2059), 1, anon_sym_if, - ACTIONS(2085), 1, - anon_sym_COMMA, - STATE(1079), 1, - aux_sym_expression_list_repeat1, - ACTIONS(1865), 2, + ACTIONS(1965), 4, sym__newline, + anon_sym_from, + anon_sym_COMMA, sym__semicolon, - [50112] = 6, - ACTIONS(1914), 1, + [52761] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - anon_sym_LBRACE2, - ACTIONS(2201), 1, - sym__not_escape_sequence, - ACTIONS(2203), 1, - sym__string_end, - STATE(988), 1, - aux_sym_string_content_repeat1, - ACTIONS(2199), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [50133] = 8, + ACTIONS(2209), 1, + anon_sym_except, + ACTIONS(2211), 1, + anon_sym_finally, + STATE(553), 1, + sym_finally_clause, + STATE(259), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(260), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [52782] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1849), 1, + ACTIONS(1887), 1, anon_sym_async, - ACTIONS(1851), 1, + ACTIONS(1889), 1, anon_sym_for, - ACTIONS(2205), 1, + ACTIONS(2243), 1, anon_sym_COMMA, - ACTIONS(2207), 1, + ACTIONS(2245), 1, anon_sym_RBRACE, - STATE(916), 1, + STATE(943), 1, sym_for_in_clause, - STATE(1230), 1, + STATE(1234), 1, aux_sym_dictionary_repeat1, - STATE(1367), 1, + STATE(1392), 1, sym__comprehension_clauses, - [50158] = 7, + [52807] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(2053), 1, anon_sym_and, - ACTIONS(1867), 1, - anon_sym_COMMA, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(2055), 1, anon_sym_or, - ACTIONS(2209), 1, - anon_sym_COLON, - STATE(936), 1, + ACTIONS(2059), 1, + anon_sym_if, + ACTIONS(2073), 1, + anon_sym_COMMA, + STATE(1078), 1, aux_sym_expression_list_repeat1, - [50180] = 6, + ACTIONS(2247), 2, + sym__newline, + sym__semicolon, + [52830] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 1, + anon_sym_except, + ACTIONS(2193), 1, + anon_sym_finally, + STATE(525), 1, + sym_finally_clause, + STATE(256), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(262), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [52851] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, + ACTIONS(2053), 1, anon_sym_and, - ACTIONS(2119), 1, + ACTIONS(2055), 1, anon_sym_or, - ACTIONS(2131), 1, + ACTIONS(2059), 1, anon_sym_if, - ACTIONS(2213), 1, - anon_sym_COLON, - ACTIONS(2211), 2, + ACTIONS(2195), 1, anon_sym_COMMA, - anon_sym_as, - [50200] = 3, - ACTIONS(1914), 1, - sym_comment, - ACTIONS(2215), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2217), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [50214] = 7, + STATE(1106), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2249), 2, + sym__newline, + sym__semicolon, + [52874] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(2053), 1, anon_sym_and, - ACTIONS(1867), 1, - anon_sym_COMMA, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(2055), 1, anon_sym_or, - ACTIONS(2219), 1, - anon_sym_COLON, - STATE(936), 1, + ACTIONS(2059), 1, + anon_sym_if, + ACTIONS(2073), 1, + anon_sym_COMMA, + STATE(1078), 1, aux_sym_expression_list_repeat1, - [50236] = 2, + ACTIONS(1904), 2, + sym__newline, + sym__semicolon, + [52897] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 6, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2053), 1, + anon_sym_and, + ACTIONS(2055), 1, + anon_sym_or, + ACTIONS(2059), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50248] = 5, + ACTIONS(2251), 1, + anon_sym_COMMA, + STATE(1119), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2253), 2, + sym__newline, + sym__semicolon, + [52920] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, ACTIONS(2053), 1, + anon_sym_and, + ACTIONS(2055), 1, anon_sym_or, - ACTIONS(2065), 1, + ACTIONS(2059), 1, anon_sym_if, - ACTIONS(2223), 3, + ACTIONS(2255), 3, sym__newline, anon_sym_COMMA, sym__semicolon, - [50266] = 4, + [52938] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2257), 1, anon_sym_DOT, - STATE(1029), 1, + STATE(1034), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(2227), 4, + ACTIONS(1868), 4, sym__newline, anon_sym_COMMA, anon_sym_as, sym__semicolon, - [50282] = 5, + [52954] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(2229), 3, - sym__newline, + ACTIONS(2260), 6, + anon_sym_RPAREN, anon_sym_COMMA, - sym__semicolon, - [50300] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2233), 1, - anon_sym_AT, - STATE(1019), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(2231), 3, - anon_sym_async, - anon_sym_def, - anon_sym_class, - [50316] = 3, - ACTIONS(1914), 1, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + [52966] = 3, + ACTIONS(1948), 1, sym_comment, - ACTIONS(2236), 2, + ACTIONS(2262), 2, anon_sym_LBRACE2, sym__not_escape_sequence, - ACTIONS(2238), 4, + ACTIONS(2264), 4, sym__string_content, sym__string_end, sym__escape_interpolation, sym_escape_sequence, - [50330] = 5, + [52980] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(2240), 3, - anon_sym_RPAREN, + ACTIONS(1906), 1, anon_sym_COMMA, + ACTIONS(2266), 1, anon_sym_COLON, - [50348] = 7, + STATE(986), 1, + aux_sym_expression_list_repeat1, + [53002] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(2173), 1, + anon_sym_if, + ACTIONS(2175), 1, anon_sym_and, - ACTIONS(1867), 1, + ACTIONS(2177), 1, + anon_sym_or, + ACTIONS(2270), 1, + anon_sym_COLON, + ACTIONS(2268), 2, anon_sym_COMMA, - ACTIONS(1869), 1, + anon_sym_as, + [53022] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(2242), 1, + ACTIONS(2272), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - STATE(936), 1, - aux_sym_expression_list_repeat1, - [50370] = 3, - ACTIONS(1914), 1, + [53040] = 3, + ACTIONS(1948), 1, sym_comment, - ACTIONS(2244), 2, + ACTIONS(2274), 2, anon_sym_LBRACE2, sym__not_escape_sequence, - ACTIONS(2246), 4, + ACTIONS(2276), 4, sym__string_content, sym__string_end, sym__escape_interpolation, sym_escape_sequence, - [50384] = 5, + [53054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2248), 3, + ACTIONS(1940), 6, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_EQ, - [50402] = 5, + anon_sym_RBRACE, + [53066] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(1875), 1, + anon_sym_if, + ACTIONS(1877), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(2179), 3, - sym__newline, - anon_sym_EQ, - sym__semicolon, - [50420] = 7, + ACTIONS(2280), 1, + anon_sym_COLON, + ACTIONS(2278), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [53086] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(1926), 1, - anon_sym_RPAREN, - ACTIONS(1928), 1, + ACTIONS(1906), 1, anon_sym_COMMA, - STATE(1170), 1, - aux_sym_argument_list_repeat1, - [50442] = 2, + ACTIONS(2282), 1, + anon_sym_COLON, + STATE(986), 1, + aux_sym_expression_list_repeat1, + [53108] = 3, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2284), 2, + anon_sym_LBRACE2, + sym__not_escape_sequence, + ACTIONS(2286), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [53122] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 6, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1875), 1, anon_sym_if, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, + anon_sym_or, + ACTIONS(2290), 1, anon_sym_COLON, + ACTIONS(2288), 2, + anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RBRACE, - [50454] = 6, + [53142] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, - anon_sym_and, - ACTIONS(2119), 1, - anon_sym_or, - ACTIONS(2131), 1, - anon_sym_if, - ACTIONS(2252), 1, - anon_sym_COLON, - ACTIONS(2250), 2, + ACTIONS(1908), 1, + anon_sym_DOT, + STATE(1051), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2292), 4, + anon_sym_import, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - [50474] = 4, + [53158] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2254), 1, + ACTIONS(2294), 1, anon_sym_DOT, - STATE(1029), 1, + STATE(1066), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(1834), 4, + ACTIONS(2292), 4, sym__newline, anon_sym_COMMA, anon_sym_as, sym__semicolon, - [50490] = 7, + [53174] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1875), 1, + anon_sym_if, + ACTIONS(1877), 1, anon_sym_and, - ACTIONS(1867), 1, + ACTIONS(1879), 1, + anon_sym_or, + ACTIONS(1906), 1, anon_sym_COMMA, - ACTIONS(1869), 1, + ACTIONS(2296), 1, + anon_sym_COLON, + STATE(986), 1, + aux_sym_expression_list_repeat1, + [53196] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(2257), 1, + ACTIONS(1906), 1, + anon_sym_COMMA, + ACTIONS(2298), 1, anon_sym_COLON, - STATE(936), 1, + STATE(986), 1, aux_sym_expression_list_repeat1, - [50512] = 4, + [53218] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2261), 1, - anon_sym_COMMA, - STATE(1031), 1, - aux_sym_open_sequence_match_pattern_repeat1, - ACTIONS(2259), 4, - anon_sym_RPAREN, + ACTIONS(1875), 1, anon_sym_if, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, + anon_sym_or, + ACTIONS(1906), 1, + anon_sym_COMMA, + ACTIONS(2300), 1, anon_sym_COLON, - anon_sym_RBRACK, - [50528] = 4, + STATE(986), 1, + aux_sym_expression_list_repeat1, + [53240] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1908), 1, anon_sym_DOT, - STATE(1040), 1, + STATE(880), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(2264), 4, + ACTIONS(2302), 4, anon_sym_import, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - [50544] = 6, + [53256] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(2268), 1, - anon_sym_COLON, - ACTIONS(2266), 2, + ACTIONS(2304), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [50564] = 4, + anon_sym_COLON, + [53274] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_DOT, - STATE(1017), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(2264), 4, + ACTIONS(2053), 1, + anon_sym_and, + ACTIONS(2055), 1, + anon_sym_or, + ACTIONS(2059), 1, + anon_sym_if, + ACTIONS(2306), 3, sym__newline, anon_sym_COMMA, - anon_sym_as, sym__semicolon, - [50580] = 5, + [53292] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2173), 1, + anon_sym_if, + ACTIONS(2175), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(2177), 1, anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(2270), 3, - sym__newline, + ACTIONS(2310), 1, + anon_sym_COLON, + ACTIONS(2308), 2, anon_sym_COMMA, - sym__semicolon, - [50598] = 3, - ACTIONS(1914), 1, - sym_comment, - ACTIONS(2272), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2274), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [50612] = 5, + anon_sym_as, + [53312] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(2276), 3, + ACTIONS(1977), 1, anon_sym_RPAREN, + ACTIONS(1979), 1, anon_sym_COMMA, - anon_sym_COLON, - [50630] = 6, + STATE(1280), 1, + aux_sym_argument_list_repeat1, + [53334] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(2053), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(2055), 1, anon_sym_or, - ACTIONS(2280), 1, - anon_sym_COLON, - ACTIONS(2278), 2, + ACTIONS(2059), 1, + anon_sym_if, + ACTIONS(2312), 3, + sym__newline, anon_sym_COMMA, - anon_sym_RBRACK, - [50650] = 7, + sym__semicolon, + [53352] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(2053), 1, anon_sym_and, - ACTIONS(1867), 1, - anon_sym_COMMA, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(2055), 1, anon_sym_or, - ACTIONS(2282), 1, - anon_sym_COLON, - STATE(936), 1, - aux_sym_expression_list_repeat1, - [50672] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1859), 1, - anon_sym_DOT, - STATE(865), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(2227), 4, - anon_sym_import, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [50688] = 3, - ACTIONS(1914), 1, + ACTIONS(2059), 1, + anon_sym_if, + ACTIONS(2199), 3, + sym__newline, + anon_sym_EQ, + sym__semicolon, + [53370] = 3, + ACTIONS(1948), 1, sym_comment, - ACTIONS(2284), 2, + ACTIONS(2314), 2, anon_sym_LBRACE2, sym__not_escape_sequence, - ACTIONS(2286), 4, + ACTIONS(2316), 4, sym__string_content, sym__string_end, sym__escape_interpolation, sym_escape_sequence, - [50702] = 3, - ACTIONS(1914), 1, + [53384] = 3, + ACTIONS(1948), 1, sym_comment, - ACTIONS(2288), 2, + ACTIONS(2318), 2, anon_sym_LBRACE2, sym__not_escape_sequence, - ACTIONS(2290), 4, + ACTIONS(2320), 4, sym__string_content, sym__string_end, sym__escape_interpolation, sym_escape_sequence, - [50716] = 6, + [53398] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1875), 1, + anon_sym_if, + ACTIONS(1877), 1, anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1879), 1, + anon_sym_or, + ACTIONS(2322), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + [53416] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(2294), 1, + ACTIONS(2326), 1, anon_sym_COLON, - ACTIONS(2292), 2, + ACTIONS(2324), 2, anon_sym_COMMA, anon_sym_RBRACK, - [50736] = 6, + [53436] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2298), 1, + ACTIONS(2330), 1, anon_sym_COLON, - ACTIONS(2300), 1, + ACTIONS(2332), 1, anon_sym_EQ, - STATE(1109), 1, + STATE(1154), 1, sym__type_bound, - STATE(1285), 1, + STATE(1347), 1, sym__type_param_default, - ACTIONS(2296), 2, + ACTIONS(2328), 2, anon_sym_COMMA, anon_sym_RBRACK, - [50756] = 7, + [53456] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1867), 1, - anon_sym_COMMA, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2302), 1, - anon_sym_COLON, - STATE(936), 1, - aux_sym_expression_list_repeat1, - [50778] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2117), 1, + ACTIONS(1877), 1, anon_sym_and, - ACTIONS(2119), 1, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(2131), 1, - anon_sym_if, - ACTIONS(2304), 1, - anon_sym_as, - ACTIONS(2306), 1, + ACTIONS(1906), 1, + anon_sym_COMMA, + ACTIONS(2334), 1, anon_sym_COLON, - [50797] = 6, + STATE(986), 1, + aux_sym_expression_list_repeat1, + [53478] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, - anon_sym_and, - ACTIONS(2119), 1, - anon_sym_or, - ACTIONS(2131), 1, - anon_sym_if, - ACTIONS(2308), 1, - anon_sym_as, - ACTIONS(2310), 1, - anon_sym_COLON, - [50816] = 2, + ACTIONS(2338), 1, + anon_sym_AT, + STATE(1064), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(2336), 3, + anon_sym_async, + anon_sym_def, + anon_sym_class, + [53494] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2312), 5, - anon_sym_RPAREN, + ACTIONS(2343), 1, anon_sym_COMMA, + STATE(1065), 1, + aux_sym_open_sequence_match_pattern_repeat1, + ACTIONS(2341), 4, + anon_sym_RPAREN, anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, - [50827] = 5, + [53510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, - sym_identifier, - STATE(1124), 1, - sym_dotted_name, - STATE(1268), 1, - sym_aliased_import, - ACTIONS(2314), 2, + ACTIONS(2294), 1, + anon_sym_DOT, + STATE(1034), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2302), 4, sym__newline, + anon_sym_COMMA, + anon_sym_as, sym__semicolon, - [50844] = 5, + [53526] = 3, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2346), 2, + anon_sym_LBRACE2, + sym__not_escape_sequence, + ACTIONS(2348), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [53540] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, - sym_identifier, - STATE(1124), 1, - sym_dotted_name, - STATE(1268), 1, - sym_aliased_import, - ACTIONS(2316), 2, - sym__newline, - sym__semicolon, - [50861] = 4, + ACTIONS(1875), 1, + anon_sym_if, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, + anon_sym_or, + ACTIONS(2161), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53557] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2320), 1, + ACTIONS(2352), 1, anon_sym_COMMA, - STATE(1051), 1, + STATE(1093), 1, aux_sym__collection_elements_repeat1, - ACTIONS(2318), 3, + ACTIONS(2350), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [50876] = 5, + [53572] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(2323), 2, + ACTIONS(2354), 2, anon_sym_COMMA, anon_sym_RBRACK, - [50893] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2325), 1, - anon_sym_LPAREN, - ACTIONS(2327), 1, - anon_sym_COLON, - ACTIONS(2329), 1, - anon_sym_LBRACK, - STATE(1198), 1, - sym_type_parameters, - STATE(1365), 1, - sym_argument_list, - [50912] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2165), 1, - sym_identifier, - ACTIONS(2331), 1, - anon_sym_LPAREN, - STATE(1055), 1, - sym_dotted_name, - STATE(1117), 1, - sym_aliased_import, - STATE(1294), 1, - sym__import_list, - [50931] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - anon_sym_COMMA, - ACTIONS(2335), 1, - anon_sym_as, - STATE(1107), 1, - aux_sym__import_list_repeat1, - ACTIONS(2337), 2, - sym__newline, - sym__semicolon, - [50948] = 5, + [53589] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(2339), 2, + ACTIONS(2356), 2, anon_sym_COMMA, anon_sym_RBRACK, - [50965] = 5, + [53606] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(2341), 2, + ACTIONS(2358), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [50982] = 6, - ACTIONS(1914), 1, - sym_comment, - ACTIONS(2343), 1, - anon_sym_RBRACE, - ACTIONS(2345), 1, - anon_sym_LBRACE2, - ACTIONS(2347), 1, - aux_sym_format_specifier_token1, - STATE(1069), 1, - aux_sym_format_specifier_repeat1, - STATE(1219), 1, - sym_interpolation, - [51001] = 4, + [53623] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2351), 1, + ACTIONS(1875), 1, + anon_sym_if, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, + anon_sym_or, + ACTIONS(2360), 2, anon_sym_COMMA, - STATE(1051), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(2349), 3, - anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_RBRACE, - [51016] = 6, + [53640] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 1, + ACTIONS(2362), 1, + anon_sym_LPAREN, + ACTIONS(2364), 1, anon_sym_COLON, - ACTIONS(2355), 1, - anon_sym_RBRACE, - ACTIONS(2357), 1, - anon_sym_EQ, - ACTIONS(2359), 1, - sym_type_conversion, - STATE(1383), 1, - sym_format_specifier, - [51035] = 4, + ACTIONS(2366), 1, + anon_sym_LBRACK, + STATE(1212), 1, + sym_type_parameters, + STATE(1430), 1, + sym_argument_list, + [53659] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2361), 1, + ACTIONS(1875), 1, + anon_sym_if, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, + anon_sym_or, + ACTIONS(2368), 2, anon_sym_COMMA, - STATE(1051), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(2349), 3, - anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_RBRACE, - [51050] = 2, + [53676] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1834), 5, - sym__newline, - anon_sym_DOT, + ACTIONS(2370), 1, anon_sym_COMMA, - anon_sym_as, + STATE(1076), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2077), 3, + sym__newline, + anon_sym_from, sym__semicolon, - [51061] = 5, + [53691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2141), 2, + ACTIONS(2373), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [51078] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(2363), 2, + STATE(1076), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2147), 3, sym__newline, + anon_sym_from, sym__semicolon, - [51095] = 4, + [53706] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2365), 1, + ACTIONS(2375), 1, anon_sym_COMMA, - STATE(1075), 1, + STATE(1076), 1, aux_sym_expression_list_repeat1, - ACTIONS(2035), 3, + ACTIONS(2147), 3, sym__newline, anon_sym_from, sym__semicolon, - [51110] = 5, + [53721] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(1875), 1, + anon_sym_if, + ACTIONS(1877), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(2367), 2, - sym__newline, - sym__semicolon, - [51127] = 6, + ACTIONS(2377), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [53738] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 1, + ACTIONS(2379), 1, anon_sym_COLON, - ACTIONS(2369), 1, + ACTIONS(2381), 1, anon_sym_RBRACE, - ACTIONS(2371), 1, + ACTIONS(2383), 1, anon_sym_EQ, - ACTIONS(2373), 1, + ACTIONS(2385), 1, sym_type_conversion, - STATE(1392), 1, + STATE(1495), 1, sym_format_specifier, - [51146] = 5, + [53757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2065), 1, + ACTIONS(2341), 5, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - ACTIONS(2375), 2, + anon_sym_COLON, + anon_sym_RBRACK, + [53768] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2229), 1, + sym_identifier, + STATE(1114), 1, + sym_dotted_name, + STATE(1289), 1, + sym_aliased_import, + ACTIONS(2387), 2, sym__newline, sym__semicolon, - [51163] = 6, - ACTIONS(1914), 1, - sym_comment, - ACTIONS(2345), 1, - anon_sym_LBRACE2, - ACTIONS(2377), 1, - anon_sym_RBRACE, - ACTIONS(2379), 1, - aux_sym_format_specifier_token1, - STATE(1080), 1, - aux_sym_format_specifier_repeat1, - STATE(1219), 1, - sym_interpolation, - [51182] = 5, + [53785] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(2381), 2, + ACTIONS(2389), 2, anon_sym_RPAREN, anon_sym_COMMA, - [51199] = 5, + [53802] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(2053), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(2055), 1, anon_sym_or, - ACTIONS(2383), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [51216] = 5, + ACTIONS(2059), 1, + anon_sym_if, + ACTIONS(2391), 2, + sym__newline, + sym__semicolon, + [53819] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, ACTIONS(2053), 1, + anon_sym_and, + ACTIONS(2055), 1, anon_sym_or, - ACTIONS(2065), 1, + ACTIONS(2059), 1, anon_sym_if, - ACTIONS(1940), 2, + ACTIONS(2393), 2, sym__newline, sym__semicolon, - [51233] = 5, + [53836] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(2173), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(2175), 1, + anon_sym_and, + ACTIONS(2177), 1, anon_sym_or, - ACTIONS(2385), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [51250] = 5, + ACTIONS(2395), 1, + anon_sym_as, + ACTIONS(2397), 1, + anon_sym_COLON, + [53855] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, - sym_identifier, - STATE(1124), 1, - sym_dotted_name, - STATE(1268), 1, - sym_aliased_import, - ACTIONS(2314), 2, - sym__newline, - sym__semicolon, - [51267] = 4, + ACTIONS(1875), 1, + anon_sym_if, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, + anon_sym_or, + ACTIONS(2399), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [53872] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2387), 1, - anon_sym_COMMA, - STATE(1075), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2011), 3, + ACTIONS(2053), 1, + anon_sym_and, + ACTIONS(2055), 1, + anon_sym_or, + ACTIONS(2059), 1, + anon_sym_if, + ACTIONS(1993), 2, sym__newline, - anon_sym_from, sym__semicolon, - [51282] = 5, + [53889] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(2053), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(2055), 1, anon_sym_or, - ACTIONS(2390), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [51299] = 6, + ACTIONS(2059), 1, + anon_sym_if, + ACTIONS(2401), 2, + sym__newline, + sym__semicolon, + [53906] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2229), 1, + sym_identifier, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1095), 1, + sym_dotted_name, + STATE(1146), 1, + sym_aliased_import, + STATE(1336), 1, + sym__import_list, + [53925] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2325), 1, + ACTIONS(2362), 1, anon_sym_LPAREN, - ACTIONS(2329), 1, + ACTIONS(2366), 1, anon_sym_LBRACK, - ACTIONS(2392), 1, + ACTIONS(2405), 1, anon_sym_COLON, - STATE(1260), 1, + STATE(1197), 1, sym_type_parameters, - STATE(1414), 1, + STATE(1438), 1, sym_argument_list, - [51318] = 2, + [53944] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2259), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, + ACTIONS(2379), 1, anon_sym_COLON, - anon_sym_RBRACK, - [51329] = 4, + ACTIONS(2407), 1, + anon_sym_RBRACE, + ACTIONS(2409), 1, + anon_sym_EQ, + ACTIONS(2411), 1, + sym_type_conversion, + STATE(1428), 1, + sym_format_specifier, + [53963] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2394), 1, + ACTIONS(2415), 1, anon_sym_COMMA, - STATE(1075), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2035), 3, - sym__newline, - anon_sym_from, - sym__semicolon, - [51344] = 6, - ACTIONS(1914), 1, + STATE(1093), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(2413), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [53978] = 6, + ACTIONS(1948), 1, sym_comment, - ACTIONS(2396), 1, + ACTIONS(2418), 1, anon_sym_RBRACE, - ACTIONS(2398), 1, + ACTIONS(2420), 1, anon_sym_LBRACE2, - ACTIONS(2401), 1, + ACTIONS(2423), 1, aux_sym_format_specifier_token1, - STATE(1080), 1, + STATE(1094), 1, aux_sym_format_specifier_repeat1, - STATE(1219), 1, + STATE(1283), 1, sym_interpolation, - [51363] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_COMMA, - STATE(1059), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(1853), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51378] = 5, + [53997] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2404), 2, + ACTIONS(2426), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [51395] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(2406), 2, + ACTIONS(2428), 1, + anon_sym_as, + STATE(1164), 1, + aux_sym__import_list_repeat1, + ACTIONS(2430), 2, sym__newline, sym__semicolon, - [51412] = 4, + [54014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_EQ, - STATE(1312), 1, - sym__type_param_default, - ACTIONS(2408), 2, + ACTIONS(2432), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [51426] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2410), 1, anon_sym_COLON, - [51442] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2412), 1, - anon_sym_case, - STATE(558), 1, - sym_cases, - STATE(332), 2, - sym_case_block, - aux_sym_cases_repeat1, - [51456] = 4, + anon_sym_RBRACK, + [54025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2412), 1, - anon_sym_case, - STATE(463), 1, - sym_cases, - STATE(332), 2, - sym_case_block, - aux_sym_cases_repeat1, - [51470] = 5, + ACTIONS(2434), 1, + anon_sym_COMMA, + STATE(1093), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(2350), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [54040] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 1, - anon_sym_COLON, - ACTIONS(2414), 1, + ACTIONS(1881), 1, + anon_sym_COMMA, + STATE(1097), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(1891), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(2416), 1, - sym_type_conversion, - STATE(1424), 1, - sym_format_specifier, - [51486] = 5, + [54055] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(2173), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(2175), 1, + anon_sym_and, + ACTIONS(2177), 1, anon_sym_or, - ACTIONS(2418), 1, + ACTIONS(2436), 1, + anon_sym_as, + ACTIONS(2438), 1, anon_sym_COLON, - [51502] = 5, + [54074] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(2053), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(2055), 1, anon_sym_or, - ACTIONS(2420), 1, - anon_sym_else, - [51518] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2353), 1, - anon_sym_COLON, - ACTIONS(2422), 1, - anon_sym_RBRACE, - ACTIONS(2424), 1, - sym_type_conversion, - STATE(1413), 1, - sym_format_specifier, - [51534] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2426), 1, - anon_sym_COMMA, - STATE(1092), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2223), 2, + ACTIONS(2059), 1, + anon_sym_if, + ACTIONS(2440), 2, sym__newline, sym__semicolon, - [51548] = 2, - ACTIONS(3), 1, + [54091] = 6, + ACTIONS(1948), 1, sym_comment, - ACTIONS(2143), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2442), 1, anon_sym_RBRACE, - [51558] = 5, + ACTIONS(2444), 1, + anon_sym_LBRACE2, + ACTIONS(2446), 1, + aux_sym_format_specifier_token1, + STATE(1104), 1, + aux_sym_format_specifier_repeat1, + STATE(1283), 1, + sym_interpolation, + [54110] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2229), 1, sym_identifier, - STATE(1110), 1, + STATE(1114), 1, sym_dotted_name, - STATE(1163), 1, + STATE(1289), 1, sym_aliased_import, - STATE(1478), 1, - sym__import_list, - [51574] = 4, + ACTIONS(2448), 2, + sym__newline, + sym__semicolon, + [54127] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2431), 1, - anon_sym_COMMA, - STATE(1127), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2433), 2, + ACTIONS(2229), 1, + sym_identifier, + STATE(1114), 1, + sym_dotted_name, + STATE(1289), 1, + sym_aliased_import, + ACTIONS(2448), 2, sym__newline, sym__semicolon, - [51588] = 5, - ACTIONS(3), 1, + [54144] = 6, + ACTIONS(1948), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2435), 1, - anon_sym_COLON, - [51604] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE2, + ACTIONS(2450), 1, + anon_sym_RBRACE, + ACTIONS(2452), 1, + aux_sym_format_specifier_token1, + STATE(1094), 1, + aux_sym_format_specifier_repeat1, + STATE(1283), 1, + sym_interpolation, + [54163] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2437), 1, - anon_sym_COMMA, - STATE(1127), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2439), 2, + ACTIONS(1868), 5, sym__newline, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, sym__semicolon, - [51618] = 4, + [54174] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(2195), 1, anon_sym_COMMA, - STATE(1092), 1, + STATE(1161), 1, aux_sym_assert_statement_repeat1, - ACTIONS(2441), 2, + ACTIONS(2454), 2, sym__newline, sym__semicolon, - [51632] = 4, + [54188] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1875), 1, + anon_sym_if, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, + anon_sym_or, + ACTIONS(2456), 1, + anon_sym_else, + [54204] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2443), 1, + ACTIONS(2460), 1, anon_sym_COMMA, - STATE(1111), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2445), 2, - sym__newline, - sym__semicolon, - [51646] = 5, + STATE(847), 1, + aux_sym__patterns_repeat1, + ACTIONS(2458), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [54218] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2329), 1, - anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_LPAREN, - STATE(1302), 1, - sym_parameters, - STATE(1303), 1, - sym_type_parameters, - [51662] = 4, + ACTIONS(2462), 1, + sym_identifier, + STATE(1130), 1, + sym_dotted_name, + STATE(1271), 1, + sym_aliased_import, + STATE(1401), 1, + sym__import_list, + [54234] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(1934), 1, + anon_sym_COLON, + STATE(570), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + [54248] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2462), 1, + sym_identifier, + STATE(1130), 1, + sym_dotted_name, + STATE(1271), 1, + sym_aliased_import, + STATE(1395), 1, + sym__import_list, + [54264] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(1904), 1, + ACTIONS(1934), 1, anon_sym_COLON, - STATE(566), 2, + STATE(571), 2, sym_string, aux_sym_concatenated_string_repeat1, - [51676] = 4, + [54278] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2451), 1, + ACTIONS(2464), 1, anon_sym_COMMA, - STATE(1102), 1, - aux_sym_with_clause_repeat1, - ACTIONS(2449), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [51690] = 4, + STATE(1113), 1, + aux_sym__import_list_repeat1, + ACTIONS(2467), 2, + sym__newline, + sym__semicolon, + [54292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_EQ, - STATE(1313), 1, - sym__type_param_default, - ACTIONS(2454), 2, + ACTIONS(2428), 1, + anon_sym_as, + ACTIONS(2469), 3, + sym__newline, anon_sym_COMMA, - anon_sym_RBRACK, - [51704] = 5, + sym__semicolon, + [54304] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(2456), 1, - anon_sym_COLON, - [51720] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2458), 1, - anon_sym_case, - STATE(485), 1, - sym_cases, - STATE(315), 2, - sym_case_block, - aux_sym_cases_repeat1, - [51734] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2458), 1, - anon_sym_case, - STATE(530), 1, - sym_cases, - STATE(315), 2, - sym_case_block, - aux_sym_cases_repeat1, - [51748] = 4, + ACTIONS(2471), 1, + anon_sym_else, + [54320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2460), 1, + ACTIONS(2473), 1, anon_sym_COMMA, - STATE(1126), 1, - aux_sym__import_list_repeat1, - ACTIONS(2462), 2, + STATE(1118), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2475), 2, sym__newline, sym__semicolon, - [51762] = 4, + [54334] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2466), 1, - anon_sym_DOT, - STATE(1138), 1, - aux_sym_import_prefix_repeat1, - ACTIONS(2464), 2, - anon_sym_import, - sym_identifier, - [51776] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2300), 1, + ACTIONS(2479), 1, + anon_sym_COLON, + ACTIONS(2481), 1, anon_sym_EQ, - STATE(1345), 1, - sym__type_param_default, - ACTIONS(2468), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [51790] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, + ACTIONS(2477), 2, anon_sym_RPAREN, - ACTIONS(2470), 1, anon_sym_COMMA, - ACTIONS(2472), 1, - anon_sym_as, - STATE(1164), 1, - aux_sym__import_list_repeat1, - [51806] = 4, + [54348] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2443), 1, + ACTIONS(2483), 1, anon_sym_COMMA, - STATE(1144), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2474), 2, + STATE(1156), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2485), 2, sym__newline, sym__semicolon, - [51820] = 4, + [54362] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2443), 1, + ACTIONS(2487), 1, anon_sym_COMMA, - STATE(1144), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2476), 2, + STATE(1156), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2489), 2, sym__newline, sym__semicolon, - [51834] = 2, + [54376] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2478), 4, - anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_AT, - [51844] = 2, + ACTIONS(2379), 1, + anon_sym_COLON, + ACTIONS(2491), 1, + anon_sym_RBRACE, + ACTIONS(2493), 1, + sym_type_conversion, + STATE(1389), 1, + sym_format_specifier, + [54392] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2179), 4, - anon_sym_RPAREN, + ACTIONS(2495), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [51854] = 5, + STATE(1121), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2498), 2, + sym__newline, + sym__semicolon, + [54406] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(2480), 1, + ACTIONS(2500), 1, anon_sym_COLON, - [51870] = 4, + [54422] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(2504), 1, anon_sym_COMMA, - STATE(1092), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2482), 2, - sym__newline, - sym__semicolon, - [51884] = 4, + STATE(1108), 1, + aux_sym__patterns_repeat1, + ACTIONS(2502), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [54436] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - anon_sym_COMMA, - STATE(1133), 1, - aux_sym__import_list_repeat1, - ACTIONS(2337), 2, - sym__newline, - sym__semicolon, - [51898] = 2, + ACTIONS(2366), 1, + anon_sym_LBRACK, + ACTIONS(2506), 1, + anon_sym_LPAREN, + STATE(1307), 1, + sym_type_parameters, + STATE(1376), 1, + sym_parameters, + [54452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2484), 4, + ACTIONS(2508), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RBRACE, - [51908] = 2, + [54462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2486), 4, + ACTIONS(2510), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RBRACE, - [51918] = 4, + [54472] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2490), 1, - anon_sym_COMMA, - STATE(1151), 1, - aux_sym__patterns_repeat1, - ACTIONS(2488), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [51932] = 5, + ACTIONS(2366), 1, + anon_sym_LBRACK, + ACTIONS(2506), 1, + anon_sym_LPAREN, + STATE(1355), 1, + sym_type_parameters, + STATE(1367), 1, + sym_parameters, + [54488] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2065), 1, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(2492), 1, - sym__newline, - [51948] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2443), 1, - anon_sym_COMMA, - STATE(1112), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2494), 2, - sym__newline, - sym__semicolon, - [51962] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, + ACTIONS(1877), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(2496), 1, + ACTIONS(2512), 1, anon_sym_COLON, - [51978] = 3, + [54504] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2335), 1, - anon_sym_as, - ACTIONS(2498), 3, - sym__newline, + ACTIONS(2516), 1, + anon_sym_DOT, + STATE(1148), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(2514), 2, + anon_sym_import, + sym_identifier, + [54518] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2430), 1, + anon_sym_RPAREN, + ACTIONS(2518), 1, anon_sym_COMMA, - sym__semicolon, - [51990] = 5, + ACTIONS(2520), 1, + anon_sym_as, + STATE(1201), 1, + aux_sym__import_list_repeat1, + [54534] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(2500), 1, + ACTIONS(2522), 1, anon_sym_else, - [52006] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2502), 1, - anon_sym_COMMA, - STATE(1126), 1, - aux_sym__import_list_repeat1, - ACTIONS(2505), 2, - sym__newline, - sym__semicolon, - [52020] = 4, + [54550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2507), 1, + ACTIONS(2239), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1127), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2510), 2, - sym__newline, - sym__semicolon, - [52034] = 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [54560] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1948), 4, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - sym__semicolon, - [52044] = 5, + ACTIONS(2524), 1, + anon_sym_case, + STATE(515), 1, + sym_cases, + STATE(390), 2, + sym_case_block, + aux_sym_cases_repeat1, + [54574] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2314), 1, + ACTIONS(2448), 1, anon_sym_RPAREN, - ACTIONS(2429), 1, + ACTIONS(2462), 1, sym_identifier, - STATE(1185), 1, + STATE(1262), 1, sym_dotted_name, - STATE(1322), 1, + STATE(1374), 1, sym_aliased_import, - [52060] = 5, + [54590] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2329), 1, - anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_LPAREN, - STATE(1288), 1, - sym_parameters, - STATE(1289), 1, - sym_type_parameters, - [52076] = 5, + ACTIONS(2524), 1, + anon_sym_case, + STATE(502), 1, + sym_cases, + STATE(390), 2, + sym_case_block, + aux_sym_cases_repeat1, + [54604] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1875), 1, + anon_sym_if, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, + anon_sym_or, + ACTIONS(2526), 1, + anon_sym_COLON, + [54620] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2448), 1, + anon_sym_RPAREN, + ACTIONS(2462), 1, sym_identifier, - STATE(1110), 1, + STATE(1262), 1, sym_dotted_name, - STATE(1163), 1, + STATE(1374), 1, sym_aliased_import, - STATE(1454), 1, - sym__import_list, - [52092] = 5, + [54636] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(2512), 1, - anon_sym_else, - [52108] = 4, + ACTIONS(2528), 1, + anon_sym_COLON, + [54652] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2514), 1, - anon_sym_COMMA, - STATE(1126), 1, - aux_sym__import_list_repeat1, - ACTIONS(2462), 2, - sym__newline, - sym__semicolon, - [52122] = 5, + ACTIONS(2379), 1, + anon_sym_COLON, + ACTIONS(2530), 1, + anon_sym_RBRACE, + ACTIONS(2532), 1, + sym_type_conversion, + STATE(1444), 1, + sym_format_specifier, + [54668] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(2516), 1, + ACTIONS(2534), 1, anon_sym_COLON, - [52138] = 5, + [54684] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(2518), 1, + ACTIONS(2536), 1, anon_sym_COLON, - [52154] = 4, + [54700] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 1, + ACTIONS(1875), 1, + anon_sym_if, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, + anon_sym_or, + ACTIONS(2538), 1, anon_sym_COLON, - ACTIONS(2524), 1, - anon_sym_EQ, - ACTIONS(2520), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [52168] = 5, + [54716] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 4, + anon_sym_async, + anon_sym_def, + anon_sym_class, + anon_sym_AT, + [54726] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2314), 1, + ACTIONS(2387), 1, anon_sym_RPAREN, - ACTIONS(2429), 1, + ACTIONS(2462), 1, sym_identifier, - STATE(1185), 1, + STATE(1262), 1, sym_dotted_name, - STATE(1322), 1, + STATE(1374), 1, sym_aliased_import, - [52184] = 4, + [54742] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2528), 1, + ACTIONS(1875), 1, + anon_sym_if, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, + anon_sym_or, + ACTIONS(2542), 1, + anon_sym_else, + [54758] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2426), 1, + anon_sym_COMMA, + STATE(1165), 1, + aux_sym__import_list_repeat1, + ACTIONS(2430), 2, + sym__newline, + sym__semicolon, + [54772] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1999), 4, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + sym__semicolon, + [54782] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2546), 1, anon_sym_DOT, - STATE(1138), 1, + STATE(1148), 1, aux_sym_import_prefix_repeat1, - ACTIONS(2526), 2, + ACTIONS(2544), 2, anon_sym_import, sym_identifier, - [52198] = 4, + [54796] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2332), 1, + anon_sym_EQ, + STATE(1368), 1, + sym__type_param_default, + ACTIONS(2549), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [54810] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2332), 1, + anon_sym_EQ, + STATE(1339), 1, + sym__type_param_default, + ACTIONS(2551), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [54824] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2555), 1, + anon_sym_EQ, + ACTIONS(2553), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [54836] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2557), 1, + anon_sym_case, + STATE(495), 1, + sym_cases, + STATE(407), 2, + sym_case_block, + aux_sym_cases_repeat1, + [54850] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2559), 1, + anon_sym_COMMA, + STATE(1121), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2561), 2, + sym__newline, + sym__semicolon, + [54864] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2332), 1, + anon_sym_EQ, + STATE(1348), 1, + sym__type_param_default, + ACTIONS(2563), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [54878] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1875), 1, + anon_sym_if, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, + anon_sym_or, + ACTIONS(2565), 1, + anon_sym_COLON, + [54894] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2567), 1, + anon_sym_COMMA, + STATE(1156), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2570), 2, + sym__newline, + sym__semicolon, + [54908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2531), 1, + ACTIONS(2572), 1, anon_sym_COMMA, - STATE(1031), 1, + STATE(1065), 1, aux_sym_open_sequence_match_pattern_repeat1, - ACTIONS(1687), 2, + ACTIONS(1723), 2, anon_sym_if, anon_sym_COLON, - [52212] = 5, + [54922] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(2229), 1, + sym_identifier, + STATE(1095), 1, + sym_dotted_name, + STATE(1146), 1, + sym_aliased_import, + STATE(1358), 1, + sym__import_list, + [54938] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(2533), 1, + ACTIONS(2574), 1, anon_sym_COLON, - [52228] = 3, + [54954] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2537), 1, - anon_sym_EQ, - ACTIONS(2535), 3, + ACTIONS(2195), 1, + anon_sym_COMMA, + STATE(1161), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2576), 2, + sym__newline, + sym__semicolon, + [54968] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2578), 1, + anon_sym_COMMA, + STATE(1161), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2312), 2, + sym__newline, + sym__semicolon, + [54982] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2199), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - [52240] = 5, + anon_sym_EQ, + [54992] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(2539), 1, + ACTIONS(2581), 1, anon_sym_COLON, - [52256] = 5, + [55008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2541), 1, - anon_sym_COLON, - [52272] = 4, + ACTIONS(2583), 1, + anon_sym_COMMA, + STATE(1113), 1, + aux_sym__import_list_repeat1, + ACTIONS(2585), 2, + sym__newline, + sym__semicolon, + [55022] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2543), 1, + ACTIONS(2587), 1, anon_sym_COMMA, - STATE(1144), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2546), 2, + STATE(1113), 1, + aux_sym__import_list_repeat1, + ACTIONS(2585), 2, sym__newline, sym__semicolon, - [52286] = 5, + [55036] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2329), 1, + ACTIONS(2366), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(2506), 1, anon_sym_LPAREN, - STATE(1328), 1, - sym_parameters, - STATE(1346), 1, + STATE(1320), 1, sym_type_parameters, - [52302] = 5, + STATE(1356), 1, + sym_parameters, + [55052] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 1, + anon_sym_COMMA, + STATE(1167), 1, + aux_sym_with_clause_repeat1, + ACTIONS(2589), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [55066] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2329), 1, + ACTIONS(2366), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(2506), 1, anon_sym_LPAREN, - STATE(1329), 1, - sym_parameters, - STATE(1348), 1, + STATE(1319), 1, sym_type_parameters, - [52318] = 5, + STATE(1354), 1, + sym_parameters, + [55082] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1875), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, anon_sym_or, - ACTIONS(2548), 1, - anon_sym_else, - [52334] = 5, + ACTIONS(2594), 1, + anon_sym_COLON, + [55098] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(2053), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(2055), 1, anon_sym_or, - ACTIONS(2550), 1, - anon_sym_COLON, - [52350] = 4, + ACTIONS(2059), 1, + anon_sym_if, + ACTIONS(2596), 1, + sym__newline, + [55114] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2552), 1, + ACTIONS(2559), 1, anon_sym_COMMA, - STATE(1095), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2554), 2, + STATE(1153), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2598), 2, sym__newline, sym__semicolon, - [52364] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2316), 1, - anon_sym_RPAREN, - ACTIONS(2429), 1, - sym_identifier, - STATE(1185), 1, - sym_dotted_name, - STATE(1322), 1, - sym_aliased_import, - [52380] = 4, + [55128] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2559), 1, anon_sym_COMMA, - STATE(832), 1, - aux_sym__patterns_repeat1, - ACTIONS(2556), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [52394] = 5, + STATE(1174), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2600), 2, + sym__newline, + sym__semicolon, + [55142] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, - sym_identifier, - STATE(1055), 1, - sym_dotted_name, - STATE(1117), 1, - sym_aliased_import, - STATE(1350), 1, - sym__import_list, - [52410] = 3, + ACTIONS(2557), 1, + anon_sym_case, + STATE(496), 1, + sym_cases, + STATE(407), 2, + sym_case_block, + aux_sym_cases_repeat1, + [55156] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, - anon_sym_EQ, - ACTIONS(2562), 2, + ACTIONS(2559), 1, + anon_sym_COMMA, + STATE(1121), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2602), 2, sym__newline, sym__semicolon, - [52421] = 2, + [55170] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2564), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1875), 1, + anon_sym_if, + ACTIONS(1877), 1, + anon_sym_and, + ACTIONS(1879), 1, + anon_sym_or, + ACTIONS(2604), 1, anon_sym_COLON, - [52430] = 4, + [55186] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(1862), 1, anon_sym_RPAREN, - ACTIONS(2568), 1, + ACTIONS(2606), 1, anon_sym_COMMA, - STATE(1246), 1, - aux_sym_argument_list_repeat1, - [52443] = 4, + STATE(1275), 1, + aux_sym__parameters_repeat1, + [55199] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_COMMA, - ACTIONS(1942), 1, + ACTIONS(915), 1, anon_sym_RPAREN, - STATE(1274), 1, - aux_sym__collection_elements_repeat1, - [52456] = 4, + ACTIONS(2608), 1, + anon_sym_COMMA, + STATE(1167), 1, + aux_sym_with_clause_repeat1, + [55212] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 1, + ACTIONS(1737), 1, anon_sym_RPAREN, - ACTIONS(2570), 1, - anon_sym_COMMA, - STATE(1194), 1, - aux_sym__import_list_repeat1, - [52469] = 4, - ACTIONS(3), 1, + ACTIONS(2610), 1, + sym_identifier, + STATE(1341), 1, + sym_match_keyword_pattern, + [55225] = 3, + ACTIONS(1948), 1, sym_comment, - ACTIONS(2572), 1, - sym__semicolon, - ACTIONS(2574), 1, - sym__newline, - STATE(1243), 1, - aux_sym__simple_statements_repeat1, - [52482] = 4, + ACTIONS(2262), 1, + anon_sym_RBRACE, + ACTIONS(2264), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [55236] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1944), 1, - anon_sym_RPAREN, - ACTIONS(1946), 1, + ACTIONS(2612), 1, anon_sym_COMMA, - STATE(1245), 1, - aux_sym_argument_list_repeat1, - [52495] = 4, + ACTIONS(2614), 1, + anon_sym_RBRACK, + STATE(1217), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [55249] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2576), 1, + ACTIONS(2616), 1, anon_sym_RPAREN, - ACTIONS(2578), 1, + ACTIONS(2618), 1, anon_sym_COMMA, - STATE(1215), 1, - aux_sym_match_class_pattern_repeat2, - [52508] = 2, + STATE(1181), 1, + aux_sym_argument_list_repeat1, + [55262] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2580), 3, - anon_sym_RPAREN, + ACTIONS(1840), 1, anon_sym_COMMA, - anon_sym_COLON, - [52517] = 4, + ACTIONS(2621), 1, + anon_sym_in, + STATE(862), 1, + aux_sym__patterns_repeat1, + [55275] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2576), 1, - anon_sym_RPAREN, - ACTIONS(2578), 1, + ACTIONS(1840), 1, anon_sym_COMMA, - STATE(1207), 1, - aux_sym_match_class_pattern_repeat2, - [52530] = 4, + ACTIONS(2623), 1, + anon_sym_in, + STATE(862), 1, + aux_sym__patterns_repeat1, + [55288] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_RPAREN, - ACTIONS(2470), 1, - anon_sym_COMMA, - STATE(1157), 1, - aux_sym__import_list_repeat1, - [52543] = 4, - ACTIONS(3), 1, + ACTIONS(2625), 1, + sym__semicolon, + ACTIONS(2627), 1, + sym__newline, + STATE(1302), 1, + aux_sym__simple_statements_repeat1, + [55301] = 3, + ACTIONS(1948), 1, sym_comment, - ACTIONS(2462), 1, - anon_sym_RPAREN, - ACTIONS(2582), 1, - anon_sym_COMMA, - STATE(1194), 1, - aux_sym__import_list_repeat1, - [52556] = 4, + ACTIONS(2274), 1, + anon_sym_RBRACE, + ACTIONS(2276), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [55312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2584), 1, - anon_sym_RPAREN, - ACTIONS(2586), 1, - anon_sym_COMMA, - STATE(1165), 1, - aux_sym__parameters_repeat1, - [52569] = 4, + ACTIONS(2629), 1, + anon_sym_EQ, + ACTIONS(2631), 2, + sym__newline, + sym__semicolon, + [55323] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1705), 1, - anon_sym_RPAREN, - ACTIONS(2589), 1, + ACTIONS(2633), 1, anon_sym_COMMA, - STATE(1160), 1, - aux_sym_match_class_pattern_repeat2, - [52582] = 4, + ACTIONS(2635), 1, + anon_sym_RBRACE, + STATE(1252), 1, + aux_sym_match_mapping_pattern_repeat1, + [55336] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2591), 1, + ACTIONS(1737), 1, anon_sym_RPAREN, - ACTIONS(2593), 1, + ACTIONS(2637), 1, anon_sym_COMMA, - STATE(1246), 1, - aux_sym_argument_list_repeat1, - [52595] = 3, + STATE(1209), 1, + aux_sym_match_class_pattern_repeat2, + [55349] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2524), 1, - anon_sym_EQ, - ACTIONS(2520), 2, - anon_sym_COMMA, - anon_sym_COLON, - [52606] = 4, + ACTIONS(2462), 1, + sym_identifier, + STATE(1262), 1, + sym_dotted_name, + STATE(1374), 1, + sym_aliased_import, + [55362] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, + ACTIONS(1739), 1, anon_sym_RPAREN, - ACTIONS(2597), 1, + ACTIONS(2639), 1, anon_sym_COMMA, - STATE(1246), 1, - aux_sym_argument_list_repeat1, - [52619] = 4, + STATE(1229), 1, + aux_sym_match_class_pattern_repeat2, + [55375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2599), 1, + ACTIONS(2641), 1, anon_sym_RPAREN, - ACTIONS(2601), 1, - anon_sym_COMMA, - STATE(1246), 1, - aux_sym_argument_list_repeat1, - [52632] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2353), 1, - anon_sym_COLON, - ACTIONS(2603), 1, - anon_sym_RBRACE, - STATE(1466), 1, - sym_format_specifier, - [52645] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1798), 1, + ACTIONS(2643), 1, anon_sym_COMMA, - ACTIONS(2605), 1, - anon_sym_in, - STATE(842), 1, - aux_sym__patterns_repeat1, - [52658] = 4, + STATE(1191), 1, + aux_sym_match_class_pattern_repeat1, + [55388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2185), 1, - sym_identifier, - ACTIONS(2607), 1, - anon_sym_import, - STATE(1369), 1, - sym_dotted_name, - [52671] = 4, + ACTIONS(2199), 3, + sym__newline, + anon_sym_EQ, + sym__semicolon, + [55397] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2646), 1, anon_sym_COMMA, - ACTIONS(2612), 1, - anon_sym_RBRACE, - STATE(1174), 1, - aux_sym_match_mapping_pattern_repeat1, - [52684] = 3, - ACTIONS(1914), 1, - sym_comment, - ACTIONS(2244), 1, - anon_sym_RBRACE, - ACTIONS(2246), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [52695] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2429), 1, - sym_identifier, - STATE(1185), 1, - sym_dotted_name, - STATE(1322), 1, - sym_aliased_import, - [52708] = 4, + ACTIONS(2648), 1, + anon_sym_RBRACK, + STATE(1199), 1, + aux_sym_type_parameters_repeat1, + [55410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, - anon_sym_COMMA, - ACTIONS(2614), 1, - anon_sym_in, - STATE(842), 1, - aux_sym__patterns_repeat1, - [52721] = 2, + ACTIONS(2650), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + [55419] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 3, - sym__newline, - anon_sym_COMMA, - sym__semicolon, - [52730] = 4, + ACTIONS(2652), 1, + anon_sym_if, + ACTIONS(2654), 1, + anon_sym_COLON, + STATE(1456), 1, + sym_guard, + [55432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2616), 1, - anon_sym_RPAREN, - ACTIONS(2618), 1, + ACTIONS(2656), 1, anon_sym_COMMA, - STATE(1257), 1, - aux_sym_with_clause_repeat1, - [52743] = 3, - ACTIONS(1914), 1, - sym_comment, - ACTIONS(2272), 1, - anon_sym_RBRACE, - ACTIONS(2274), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [52754] = 4, + ACTIONS(2658), 2, + anon_sym_if, + anon_sym_COLON, + [55443] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2620), 1, - anon_sym_COMMA, - ACTIONS(2622), 1, + ACTIONS(2362), 1, + anon_sym_LPAREN, + ACTIONS(2660), 1, anon_sym_COLON, - STATE(1102), 1, - aux_sym_with_clause_repeat1, - [52767] = 2, + STATE(1445), 1, + sym_argument_list, + [55456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1381), 3, - sym__newline, - anon_sym_in, - sym__semicolon, - [52776] = 4, + ACTIONS(2662), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + [55465] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1701), 1, - anon_sym_RPAREN, - ACTIONS(2624), 1, + ACTIONS(2664), 1, anon_sym_COMMA, - STATE(1186), 1, - aux_sym_match_class_pattern_repeat1, - [52789] = 4, + ACTIONS(2667), 1, + anon_sym_RBRACK, + STATE(1199), 1, + aux_sym_type_parameters_repeat1, + [55478] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1701), 1, + ACTIONS(1739), 1, anon_sym_RPAREN, - ACTIONS(2626), 1, + ACTIONS(2610), 1, sym_identifier, - STATE(1325), 1, + STATE(1341), 1, sym_match_keyword_pattern, - [52802] = 3, + [55491] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2472), 1, - anon_sym_as, - ACTIONS(2498), 2, + ACTIONS(2585), 1, anon_sym_RPAREN, + ACTIONS(2669), 1, anon_sym_COMMA, - [52813] = 4, + STATE(1263), 1, + aux_sym__import_list_repeat1, + [55504] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2628), 1, + ACTIONS(2585), 1, anon_sym_RPAREN, - ACTIONS(2630), 1, + ACTIONS(2671), 1, anon_sym_COMMA, - STATE(1186), 1, - aux_sym_match_class_pattern_repeat1, - [52826] = 4, + STATE(1263), 1, + aux_sym__import_list_repeat1, + [55517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2635), 1, - anon_sym_RBRACK, - STATE(1214), 1, - aux_sym_index_expression_list_repeat1, - [52839] = 4, + ACTIONS(1421), 3, + sym__newline, + anon_sym_in, + sym__semicolon, + [55526] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2637), 1, - anon_sym_COMMA, - ACTIONS(2639), 1, - anon_sym_RBRACE, - STATE(1197), 1, - aux_sym_dictionary_repeat1, - [52852] = 4, + ACTIONS(2673), 1, + sym__semicolon, + ACTIONS(2676), 1, + sym__newline, + STATE(1204), 1, + aux_sym__simple_statements_repeat1, + [55539] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 1, + ACTIONS(2652), 1, + anon_sym_if, + ACTIONS(2678), 1, anon_sym_COLON, - ACTIONS(2414), 1, - anon_sym_RBRACE, - STATE(1424), 1, - sym_format_specifier, - [52865] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2641), 1, - anon_sym_COMMA, - ACTIONS(2643), 1, - anon_sym_RBRACE, - STATE(1197), 1, - aux_sym_dictionary_repeat1, - [52878] = 2, + STATE(1470), 1, + sym_guard, + [55552] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2645), 3, - anon_sym_LPAREN, + ACTIONS(1862), 1, anon_sym_COLON, - anon_sym_EQ, - [52887] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2584), 3, - anon_sym_RPAREN, + ACTIONS(2680), 1, anon_sym_COMMA, - anon_sym_COLON, - [52896] = 2, + STATE(1278), 1, + aux_sym__parameters_repeat1, + [55565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1393), 3, + ACTIONS(1425), 3, sym__newline, anon_sym_in, sym__semicolon, - [52905] = 4, + [55574] = 3, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2284), 1, + anon_sym_RBRACE, + ACTIONS(2286), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [55585] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2505), 1, + ACTIONS(2682), 1, anon_sym_RPAREN, - ACTIONS(2647), 1, + ACTIONS(2684), 1, anon_sym_COMMA, - STATE(1194), 1, - aux_sym__import_list_repeat1, - [52918] = 4, + STATE(1209), 1, + aux_sym_match_class_pattern_repeat2, + [55598] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2650), 1, + ACTIONS(1187), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2652), 1, anon_sym_COLON, - STATE(1231), 1, - aux_sym__parameters_repeat1, - [52931] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2654), 1, - anon_sym_COMMA, - ACTIONS(2656), 1, - anon_sym_RBRACK, - STATE(1237), 1, - aux_sym_type_parameters_repeat1, - [52944] = 4, + [55607] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2658), 1, - anon_sym_COMMA, - ACTIONS(2661), 1, - anon_sym_RBRACE, - STATE(1197), 1, - aux_sym_dictionary_repeat1, - [52957] = 4, + ACTIONS(2687), 1, + sym_identifier, + ACTIONS(2689), 1, + sym_match_wildcard_pattern, + STATE(1096), 1, + sym_match_capture_pattern, + [55620] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2325), 1, + ACTIONS(2362), 1, anon_sym_LPAREN, - ACTIONS(2663), 1, + ACTIONS(2691), 1, anon_sym_COLON, - STATE(1357), 1, + STATE(1453), 1, sym_argument_list, - [52970] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1798), 1, - anon_sym_COMMA, - ACTIONS(2665), 1, - anon_sym_in, - STATE(842), 1, - aux_sym__patterns_repeat1, - [52983] = 2, + [55633] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1154), 3, + ACTIONS(1731), 1, anon_sym_RPAREN, + ACTIONS(2693), 1, anon_sym_COMMA, - anon_sym_COLON, - [52992] = 4, + STATE(1065), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [55646] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2667), 1, - anon_sym_COMMA, - ACTIONS(2669), 1, - anon_sym_RBRACK, - STATE(1211), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [53005] = 4, + ACTIONS(2695), 1, + sym__semicolon, + ACTIONS(2697), 1, + sym__newline, + STATE(1230), 1, + aux_sym__simple_statements_repeat1, + [55659] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2671), 1, - anon_sym_RPAREN, - ACTIONS(2673), 1, - anon_sym_COMMA, - STATE(1273), 1, - aux_sym_argument_list_repeat1, - [53018] = 4, + ACTIONS(2179), 1, + sym_identifier, + ACTIONS(2699), 1, + anon_sym_import, + STATE(1478), 1, + sym_dotted_name, + [55672] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2584), 1, - anon_sym_COLON, - ACTIONS(2675), 1, + ACTIONS(2701), 1, anon_sym_COMMA, - STATE(1203), 1, - aux_sym__parameters_repeat1, - [53031] = 2, + ACTIONS(2704), 1, + anon_sym_RBRACE, + STATE(1216), 1, + aux_sym_match_mapping_pattern_repeat1, + [55685] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2520), 3, - anon_sym_RPAREN, + ACTIONS(1731), 1, + anon_sym_RBRACK, + ACTIONS(2706), 1, anon_sym_COMMA, - anon_sym_COLON, - [53040] = 4, + STATE(1065), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [55698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2626), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_RPAREN, - STATE(1325), 1, - sym_match_keyword_pattern, - [53053] = 4, + ACTIONS(1840), 1, + anon_sym_COMMA, + ACTIONS(2708), 1, + anon_sym_in, + STATE(862), 1, + aux_sym__patterns_repeat1, + [55711] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2620), 1, - anon_sym_COMMA, - ACTIONS(2680), 1, + ACTIONS(1908), 1, + anon_sym_DOT, + ACTIONS(1912), 1, anon_sym_COLON, - STATE(1181), 1, - aux_sym_with_clause_repeat1, - [53066] = 4, + STATE(880), 1, + aux_sym_match_value_pattern_repeat1, + [55724] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2678), 1, - anon_sym_RPAREN, - ACTIONS(2682), 1, + ACTIONS(1881), 1, anon_sym_COMMA, - STATE(1215), 1, - aux_sym_match_class_pattern_repeat2, - [53079] = 4, + ACTIONS(2015), 1, + anon_sym_RPAREN, + STATE(1287), 1, + aux_sym__collection_elements_repeat1, + [55737] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1701), 1, + ACTIONS(2710), 1, anon_sym_RPAREN, - ACTIONS(2684), 1, + ACTIONS(2712), 1, anon_sym_COMMA, - STATE(1215), 1, - aux_sym_match_class_pattern_repeat2, - [53092] = 2, + STATE(1181), 1, + aux_sym_argument_list_repeat1, + [55750] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2535), 3, + ACTIONS(2714), 1, anon_sym_RPAREN, + ACTIONS(2716), 1, anon_sym_COMMA, - anon_sym_COLON, - [53101] = 4, + STATE(1181), 1, + aux_sym_argument_list_repeat1, + [55763] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1697), 1, + ACTIONS(2718), 1, anon_sym_RPAREN, - ACTIONS(2686), 1, + ACTIONS(2720), 1, anon_sym_COMMA, - STATE(1031), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [53114] = 4, + STATE(1181), 1, + aux_sym_argument_list_repeat1, + [55776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1697), 1, - anon_sym_RBRACK, - ACTIONS(2688), 1, + ACTIONS(1881), 1, anon_sym_COMMA, - STATE(1031), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [53127] = 4, + ACTIONS(2007), 1, + anon_sym_RPAREN, + STATE(1287), 1, + aux_sym__collection_elements_repeat1, + [55789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, - anon_sym_DOT, - ACTIONS(1863), 1, - anon_sym_COLON, - STATE(865), 1, - aux_sym_match_value_pattern_repeat1, - [53140] = 4, + ACTIONS(2213), 1, + anon_sym_COMMA, + ACTIONS(2215), 1, + anon_sym_RBRACE, + STATE(1241), 1, + aux_sym_dictionary_repeat1, + [55802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1705), 1, - anon_sym_RPAREN, - ACTIONS(2626), 1, + ACTIONS(2610), 1, sym_identifier, - STATE(1325), 1, + ACTIONS(2722), 1, + anon_sym_RPAREN, + STATE(1341), 1, sym_match_keyword_pattern, - [53153] = 4, + [55815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2690), 1, + ACTIONS(2724), 1, anon_sym_COMMA, - ACTIONS(2692), 1, + ACTIONS(2726), 1, anon_sym_RBRACK, - STATE(1267), 1, + STATE(1261), 1, aux_sym_index_expression_list_repeat1, - [53166] = 4, + [55828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2694), 1, + ACTIONS(2728), 1, anon_sym_RPAREN, - ACTIONS(2696), 1, - anon_sym_COMMA, - STATE(1215), 1, - aux_sym_match_class_pattern_repeat2, - [53179] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1818), 1, - anon_sym_RBRACE, - ACTIONS(2699), 1, + ACTIONS(2730), 1, anon_sym_COMMA, - STATE(1174), 1, - aux_sym_match_mapping_pattern_repeat1, - [53192] = 3, - ACTIONS(1914), 1, - sym_comment, - ACTIONS(2288), 1, - anon_sym_RBRACE, - ACTIONS(2290), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [53203] = 4, + STATE(1176), 1, + aux_sym__parameters_repeat1, + [55841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 1, + ACTIONS(2722), 1, anon_sym_RPAREN, - ACTIONS(2701), 1, + ACTIONS(2732), 1, anon_sym_COMMA, - STATE(1051), 1, - aux_sym__collection_elements_repeat1, - [53216] = 3, - ACTIONS(1914), 1, - sym_comment, - ACTIONS(2703), 1, - anon_sym_RBRACE, - ACTIONS(2705), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [53227] = 4, + STATE(1209), 1, + aux_sym_match_class_pattern_repeat2, + [55854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2707), 1, - sym__semicolon, - ACTIONS(2709), 1, + ACTIONS(558), 1, sym__newline, - STATE(1227), 1, + ACTIONS(2734), 1, + sym__semicolon, + STATE(1204), 1, aux_sym__simple_statements_repeat1, - [53240] = 4, + [55867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_COMMA, - ACTIONS(1895), 1, + ACTIONS(2736), 1, anon_sym_RPAREN, - STATE(1274), 1, - aux_sym__collection_elements_repeat1, - [53253] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, + ACTIONS(2738), 1, anon_sym_COMMA, - ACTIONS(2711), 1, - anon_sym_RPAREN, - STATE(1059), 1, - aux_sym__collection_elements_repeat1, - [53266] = 4, + STATE(1222), 1, + aux_sym_argument_list_repeat1, + [55880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_COMMA, - ACTIONS(2713), 1, + ACTIONS(1973), 1, anon_sym_RPAREN, - STATE(1218), 1, - aux_sym__collection_elements_repeat1, - [53279] = 4, + ACTIONS(1975), 1, + anon_sym_COMMA, + STATE(1223), 1, + aux_sym_argument_list_repeat1, + [55893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2205), 1, + ACTIONS(2229), 1, + sym_identifier, + STATE(1114), 1, + sym_dotted_name, + STATE(1289), 1, + sym_aliased_import, + [55906] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2740), 1, anon_sym_COMMA, - ACTIONS(2207), 1, + ACTIONS(2742), 1, anon_sym_RBRACE, - STATE(1229), 1, + STATE(1292), 1, aux_sym_dictionary_repeat1, - [53292] = 4, + [55919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 1, - anon_sym_COLON, - ACTIONS(2422), 1, + ACTIONS(2744), 1, + anon_sym_COMMA, + ACTIONS(2746), 1, anon_sym_RBRACE, - STATE(1413), 1, - sym_format_specifier, - [53305] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2715), 1, - sym_identifier, - ACTIONS(2717), 1, - sym_match_wildcard_pattern, - STATE(1048), 1, - sym_match_capture_pattern, - [53318] = 4, + STATE(1292), 1, + aux_sym_dictionary_repeat1, + [55932] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(551), 1, + ACTIONS(560), 1, sym__newline, - ACTIONS(2719), 1, + ACTIONS(2748), 1, sym__semicolon, - STATE(1241), 1, + STATE(1204), 1, aux_sym__simple_statements_repeat1, - [53331] = 4, + [55945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2721), 1, - sym__semicolon, - ACTIONS(2723), 1, - sym__newline, - STATE(1251), 1, - aux_sym__simple_statements_repeat1, - [53344] = 4, - ACTIONS(3), 1, + ACTIONS(2379), 1, + anon_sym_COLON, + ACTIONS(2750), 1, + anon_sym_RBRACE, + STATE(1465), 1, + sym_format_specifier, + [55958] = 3, + ACTIONS(1948), 1, sym_comment, - ACTIONS(2725), 1, - anon_sym_COMMA, - ACTIONS(2727), 1, + ACTIONS(2346), 1, anon_sym_RBRACE, - STATE(1197), 1, - aux_sym_dictionary_repeat1, - [53357] = 4, + ACTIONS(2348), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [55969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2243), 1, anon_sym_COMMA, - ACTIONS(2731), 1, + ACTIONS(2245), 1, anon_sym_RBRACE, - STATE(1197), 1, + STATE(1235), 1, aux_sym_dictionary_repeat1, - [53370] = 4, + [55982] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1826), 1, - anon_sym_COLON, - ACTIONS(2733), 1, + ACTIONS(2752), 1, anon_sym_COMMA, - STATE(1203), 1, - aux_sym__parameters_repeat1, - [53383] = 4, + ACTIONS(2754), 1, + anon_sym_RBRACE, + STATE(1292), 1, + aux_sym_dictionary_repeat1, + [55995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2756), 1, anon_sym_COMMA, - ACTIONS(2737), 1, + ACTIONS(2758), 1, anon_sym_RBRACE, - STATE(1216), 1, - aux_sym_match_mapping_pattern_repeat1, - [53396] = 4, + STATE(1292), 1, + aux_sym_dictionary_repeat1, + [56008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1954), 1, + ACTIONS(1737), 1, anon_sym_RPAREN, - ACTIONS(1956), 1, + ACTIONS(2760), 1, anon_sym_COMMA, - STATE(1238), 1, - aux_sym_argument_list_repeat1, - [53409] = 4, + STATE(1191), 1, + aux_sym_match_class_pattern_repeat1, + [56021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2739), 1, - anon_sym_RPAREN, - ACTIONS(2741), 1, + ACTIONS(1881), 1, anon_sym_COMMA, - STATE(1239), 1, - aux_sym_argument_list_repeat1, - [53422] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2743), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_EQ, - [53431] = 4, + ACTIONS(1897), 1, + anon_sym_RPAREN, + STATE(1287), 1, + aux_sym__collection_elements_repeat1, + [56034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2745), 1, - anon_sym_RBRACK, - STATE(1214), 1, - aux_sym_index_expression_list_repeat1, - [53444] = 4, + ACTIONS(2610), 1, + sym_identifier, + ACTIONS(2762), 1, + anon_sym_RPAREN, + STATE(1341), 1, + sym_match_keyword_pattern, + [56047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, + ACTIONS(2764), 1, anon_sym_COMMA, - ACTIONS(2750), 1, - anon_sym_RBRACK, - STATE(1237), 1, - aux_sym_type_parameters_repeat1, - [53457] = 4, + ACTIONS(2766), 1, + anon_sym_RBRACE, + STATE(1292), 1, + aux_sym_dictionary_repeat1, + [56060] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2762), 1, anon_sym_RPAREN, - ACTIONS(2754), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - STATE(1246), 1, - aux_sym_argument_list_repeat1, - [53470] = 4, + STATE(1209), 1, + aux_sym_match_class_pattern_repeat2, + [56073] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2756), 1, - anon_sym_RPAREN, - ACTIONS(2758), 1, + ACTIONS(2770), 1, anon_sym_COMMA, - STATE(1246), 1, - aux_sym_argument_list_repeat1, - [53483] = 4, + ACTIONS(2773), 1, + anon_sym_RBRACK, + STATE(1247), 1, + aux_sym_index_expression_list_repeat1, + [56086] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2760), 1, - anon_sym_RPAREN, - ACTIONS(2762), 1, + ACTIONS(2775), 1, anon_sym_COMMA, - STATE(1246), 1, - aux_sym_argument_list_repeat1, - [53496] = 4, + ACTIONS(2777), 1, + anon_sym_RBRACE, + STATE(1292), 1, + aux_sym_dictionary_repeat1, + [56099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2764), 1, + ACTIONS(2779), 1, sym__semicolon, - ACTIONS(2767), 1, + ACTIONS(2781), 1, sym__newline, - STATE(1241), 1, + STATE(1236), 1, aux_sym__simple_statements_repeat1, - [53509] = 4, + [56112] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_COMMA, - ACTIONS(1924), 1, + ACTIONS(2610), 1, + sym_identifier, + ACTIONS(2783), 1, anon_sym_RPAREN, - STATE(1274), 1, - aux_sym__collection_elements_repeat1, - [53522] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(557), 1, - sym__newline, - ACTIONS(2769), 1, - sym__semicolon, - STATE(1241), 1, - aux_sym__simple_statements_repeat1, - [53535] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 3, - sym__newline, - anon_sym_COMMA, - sym__semicolon, - [53544] = 4, + STATE(1341), 1, + sym_match_keyword_pattern, + [56125] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2773), 1, + ACTIONS(2722), 1, anon_sym_RPAREN, - ACTIONS(2775), 1, + ACTIONS(2732), 1, anon_sym_COMMA, STATE(1246), 1, - aux_sym_argument_list_repeat1, - [53557] = 4, + aux_sym_match_class_pattern_repeat2, + [56138] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 1, - anon_sym_RPAREN, - ACTIONS(2779), 1, + ACTIONS(1784), 1, + anon_sym_RBRACE, + ACTIONS(2785), 1, anon_sym_COMMA, - STATE(1246), 1, - aux_sym_argument_list_repeat1, - [53570] = 4, + STATE(1216), 1, + aux_sym_match_mapping_pattern_repeat1, + [56151] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2161), 1, + ACTIONS(2187), 1, anon_sym_COMMA, - ACTIONS(2163), 1, + ACTIONS(2189), 1, anon_sym_RBRACE, - STATE(1263), 1, + STATE(1248), 1, aux_sym_dictionary_repeat1, - [53583] = 4, + [56164] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2652), 1, + ACTIONS(1977), 1, anon_sym_RPAREN, - ACTIONS(2782), 1, + ACTIONS(1979), 1, anon_sym_COMMA, - STATE(1266), 1, - aux_sym__parameters_repeat1, - [53596] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2353), 1, - anon_sym_COLON, - ACTIONS(2784), 1, - anon_sym_RBRACE, - STATE(1440), 1, - sym_format_specifier, - [53609] = 4, + STATE(1277), 1, + aux_sym_argument_list_repeat1, + [56177] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 1, - anon_sym_if, - ACTIONS(2788), 1, - anon_sym_COLON, - STATE(1441), 1, - sym_guard, - [53622] = 4, + ACTIONS(2787), 1, + anon_sym_RPAREN, + ACTIONS(2789), 1, + anon_sym_COMMA, + STATE(1279), 1, + aux_sym_argument_list_repeat1, + [56190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(549), 1, - sym__newline, - ACTIONS(2790), 1, - sym__semicolon, - STATE(1241), 1, - aux_sym__simple_statements_repeat1, - [53635] = 4, + ACTIONS(1969), 1, + anon_sym_RPAREN, + ACTIONS(1971), 1, + anon_sym_COMMA, + STATE(1272), 1, + aux_sym_argument_list_repeat1, + [56203] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2329), 1, - anon_sym_LBRACK, - ACTIONS(2792), 1, - anon_sym_EQ, - STATE(1452), 1, - sym_type_parameters, - [53648] = 3, + ACTIONS(2724), 1, + anon_sym_COMMA, + ACTIONS(2791), 1, + anon_sym_RBRACK, + STATE(1261), 1, + aux_sym_index_expression_list_repeat1, + [56216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2083), 1, + ACTIONS(2071), 1, anon_sym_from, - ACTIONS(2087), 2, + ACTIONS(2075), 2, sym__newline, sym__semicolon, - [53659] = 3, + [56227] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2794), 1, + ACTIONS(2793), 1, + anon_sym_RPAREN, + ACTIONS(2795), 1, anon_sym_COMMA, - ACTIONS(2796), 2, - anon_sym_if, - anon_sym_COLON, - [53670] = 3, + STATE(1269), 1, + aux_sym_argument_list_repeat1, + [56240] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2798), 1, + ACTIONS(2379), 1, anon_sym_COLON, - ACTIONS(2520), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [53681] = 2, + ACTIONS(2530), 1, + anon_sym_RBRACE, + STATE(1444), 1, + sym_format_specifier, + [56253] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2449), 3, - anon_sym_RPAREN, + ACTIONS(2797), 1, anon_sym_COMMA, - anon_sym_COLON, - [53690] = 4, + ACTIONS(2799), 1, + anon_sym_RBRACK, + STATE(1247), 1, + aux_sym_index_expression_list_repeat1, + [56266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, + ACTIONS(2520), 1, + anon_sym_as, + ACTIONS(2469), 2, anon_sym_RPAREN, - ACTIONS(2800), 1, anon_sym_COMMA, - STATE(1102), 1, - aux_sym_with_clause_repeat1, - [53703] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2179), 3, - sym__newline, - anon_sym_EQ, - sym__semicolon, - [53712] = 3, - ACTIONS(1914), 1, - sym_comment, - ACTIONS(2284), 1, - anon_sym_RBRACE, - ACTIONS(2286), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [53723] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2325), 1, - anon_sym_LPAREN, - ACTIONS(2802), 1, - anon_sym_COLON, - STATE(1421), 1, - sym_argument_list, - [53736] = 4, + [56277] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2181), 1, + ACTIONS(2467), 1, + anon_sym_RPAREN, + ACTIONS(2801), 1, anon_sym_COMMA, - ACTIONS(2183), 1, - anon_sym_RBRACE, - STATE(1188), 1, - aux_sym_dictionary_repeat1, - [53749] = 4, + STATE(1263), 1, + aux_sym__import_list_repeat1, + [56290] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 1, - anon_sym_if, ACTIONS(2804), 1, - anon_sym_COLON, - STATE(1432), 1, - sym_guard, - [53762] = 4, + anon_sym_RPAREN, + ACTIONS(2806), 1, + anon_sym_COMMA, + STATE(1181), 1, + aux_sym_argument_list_repeat1, + [56303] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2806), 1, + ACTIONS(2724), 1, anon_sym_COMMA, ACTIONS(2808), 1, - anon_sym_RBRACE, - STATE(1197), 1, - aux_sym_dictionary_repeat1, - [53775] = 3, + anon_sym_RBRACK, + STATE(1261), 1, + aux_sym_index_expression_list_repeat1, + [56316] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2810), 1, - anon_sym_in, - ACTIONS(2812), 2, - sym__newline, - sym__semicolon, - [53786] = 4, + anon_sym_COMMA, + ACTIONS(2812), 1, + anon_sym_COLON, + STATE(1167), 1, + aux_sym_with_clause_repeat1, + [56329] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2814), 1, + anon_sym_COLON, + ACTIONS(2477), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2816), 1, - anon_sym_RBRACE, - STATE(1197), 1, - aux_sym_dictionary_repeat1, - [53799] = 4, + [56340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1826), 1, + ACTIONS(2816), 1, anon_sym_RPAREN, ACTIONS(2818), 1, anon_sym_COMMA, - STATE(1165), 1, - aux_sym__parameters_repeat1, - [53812] = 4, + STATE(1177), 1, + aux_sym_with_clause_repeat1, + [56353] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2820), 1, + anon_sym_RPAREN, + ACTIONS(2822), 1, anon_sym_COMMA, - ACTIONS(2823), 1, - anon_sym_RBRACK, - STATE(1267), 1, - aux_sym_index_expression_list_repeat1, - [53825] = 2, + STATE(1181), 1, + aux_sym_argument_list_repeat1, + [56366] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2498), 3, - sym__newline, + ACTIONS(1840), 1, anon_sym_COMMA, - sym__semicolon, - [53834] = 4, + ACTIONS(2824), 1, + anon_sym_in, + STATE(862), 1, + aux_sym__patterns_repeat1, + [56379] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2825), 1, + ACTIONS(2430), 1, anon_sym_RPAREN, - ACTIONS(2827), 1, + ACTIONS(2518), 1, anon_sym_COMMA, - STATE(1183), 1, - aux_sym_match_class_pattern_repeat1, - [53847] = 4, + STATE(1202), 1, + aux_sym__import_list_repeat1, + [56392] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2825), 1, + ACTIONS(2826), 1, anon_sym_RPAREN, - ACTIONS(2829), 1, + ACTIONS(2828), 1, anon_sym_COMMA, - STATE(1208), 1, - aux_sym_match_class_pattern_repeat2, - [53860] = 4, + STATE(1181), 1, + aux_sym_argument_list_repeat1, + [56405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, - sym_identifier, - STATE(1124), 1, - sym_dotted_name, - STATE(1268), 1, - sym_aliased_import, - [53873] = 4, + ACTIONS(2553), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [56414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, + ACTIONS(1840), 1, anon_sym_COMMA, - ACTIONS(2831), 1, + ACTIONS(2830), 1, anon_sym_in, - STATE(842), 1, + STATE(862), 1, aux_sym__patterns_repeat1, - [53886] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2833), 1, - anon_sym_RPAREN, - ACTIONS(2835), 1, - anon_sym_COMMA, - STATE(1246), 1, - aux_sym_argument_list_repeat1, - [53899] = 4, + [56427] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 1, + ACTIONS(2832), 1, anon_sym_RPAREN, - ACTIONS(2837), 1, + ACTIONS(2834), 1, anon_sym_COMMA, - STATE(1051), 1, - aux_sym__collection_elements_repeat1, - [53912] = 4, + STATE(1275), 1, + aux_sym__parameters_repeat1, + [56440] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1926), 1, - anon_sym_RPAREN, - ACTIONS(1928), 1, + ACTIONS(2810), 1, anon_sym_COMMA, - STATE(1167), 1, - aux_sym_argument_list_repeat1, - [53925] = 4, + ACTIONS(2837), 1, + anon_sym_COLON, + STATE(1266), 1, + aux_sym_with_clause_repeat1, + [56453] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2839), 1, anon_sym_RPAREN, ACTIONS(2841), 1, anon_sym_COMMA, - STATE(1169), 1, + STATE(1181), 1, aux_sym_argument_list_repeat1, - [53938] = 4, + [56466] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2654), 1, - anon_sym_COMMA, + ACTIONS(2832), 1, + anon_sym_COLON, ACTIONS(2843), 1, - anon_sym_RBRACK, - STATE(1196), 1, - aux_sym_type_parameters_repeat1, - [53951] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1798), 1, anon_sym_COMMA, - ACTIONS(2845), 1, - anon_sym_in, - STATE(842), 1, - aux_sym__patterns_repeat1, - [53964] = 4, + STATE(1278), 1, + aux_sym__parameters_repeat1, + [56479] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, + ACTIONS(2846), 1, + anon_sym_RPAREN, + ACTIONS(2848), 1, anon_sym_COMMA, - ACTIONS(2847), 1, - anon_sym_in, - STATE(842), 1, - aux_sym__patterns_repeat1, - [53977] = 4, + STATE(1181), 1, + aux_sym_argument_list_repeat1, + [56492] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2633), 1, + ACTIONS(2850), 1, + anon_sym_RPAREN, + ACTIONS(2852), 1, anon_sym_COMMA, - ACTIONS(2849), 1, - anon_sym_RBRACK, - STATE(1214), 1, - aux_sym_index_expression_list_repeat1, - [53990] = 4, + STATE(1181), 1, + aux_sym_argument_list_repeat1, + [56505] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2576), 1, - anon_sym_RPAREN, - ACTIONS(2626), 1, - sym_identifier, - STATE(1325), 1, - sym_match_keyword_pattern, - [54003] = 4, + ACTIONS(2379), 1, + anon_sym_COLON, + ACTIONS(2854), 1, + anon_sym_RBRACE, + STATE(1477), 1, + sym_format_specifier, + [56518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2626), 1, - sym_identifier, - ACTIONS(2851), 1, + ACTIONS(2832), 3, anon_sym_RPAREN, - STATE(1325), 1, - sym_match_keyword_pattern, - [54016] = 3, + anon_sym_COMMA, + anon_sym_COLON, + [56527] = 3, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2856), 1, + anon_sym_RBRACE, + ACTIONS(2858), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [56538] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2085), 1, - anon_sym_COMMA, - STATE(1065), 1, - aux_sym_expression_list_repeat1, - [54026] = 3, + ACTIONS(2379), 1, + anon_sym_COLON, + ACTIONS(2491), 1, + anon_sym_RBRACE, + STATE(1389), 1, + sym_format_specifier, + [56551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(2498), 3, + sym__newline, anon_sym_COMMA, - STATE(933), 1, - aux_sym_expression_list_repeat1, - [54036] = 2, + sym__semicolon, + [56560] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2853), 2, + ACTIONS(2646), 1, anon_sym_COMMA, + ACTIONS(2860), 1, anon_sym_RBRACK, - [54044] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 2, - anon_sym_except, - anon_sym_finally, - [54052] = 3, + STATE(1193), 1, + aux_sym_type_parameters_repeat1, + [56573] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1824), 1, - anon_sym_RBRACE, - ACTIONS(2855), 1, + ACTIONS(2350), 1, + anon_sym_RPAREN, + ACTIONS(2862), 1, anon_sym_COMMA, - [54062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2857), 1, - anon_sym_COLON, - ACTIONS(2859), 1, - anon_sym_DASH_GT, - [54072] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2447), 1, - anon_sym_LPAREN, - STATE(1299), 1, - sym_parameters, - [54082] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2861), 1, - sym_integer, - ACTIONS(2863), 1, - sym_float, - [54092] = 2, + STATE(1093), 1, + aux_sym__collection_elements_repeat1, + [56586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 2, + ACTIONS(2864), 1, + anon_sym_in, + ACTIONS(2866), 2, sym__newline, sym__semicolon, - [54100] = 2, + [56597] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2867), 2, + ACTIONS(2469), 3, sym__newline, + anon_sym_COMMA, sym__semicolon, - [54108] = 2, + [56606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 2, + ACTIONS(2868), 3, sym__newline, + anon_sym_COMMA, sym__semicolon, - [54116] = 2, + [56615] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2871), 2, - sym__newline, - sym__semicolon, - [54124] = 2, + ACTIONS(2366), 1, + anon_sym_LBRACK, + ACTIONS(2870), 1, + anon_sym_EQ, + STATE(1408), 1, + sym_type_parameters, + [56628] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2520), 2, + ACTIONS(2872), 1, anon_sym_COMMA, - anon_sym_COLON, - [54132] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2873), 1, - sym_integer, ACTIONS(2875), 1, - sym_float, - [54142] = 2, + anon_sym_RBRACE, + STATE(1292), 1, + aux_sym_dictionary_repeat1, + [56641] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2877), 2, - sym__newline, - sym__semicolon, - [54150] = 2, + ACTIONS(2877), 1, + anon_sym_RPAREN, + ACTIONS(2879), 1, + anon_sym_COMMA, + STATE(1188), 1, + aux_sym_match_class_pattern_repeat2, + [56654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2177), 2, - sym__newline, - sym__semicolon, - [54158] = 3, + ACTIONS(2881), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [56663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2879), 1, + ACTIONS(2481), 1, + anon_sym_EQ, + ACTIONS(2477), 2, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(2881), 1, - anon_sym_DASH_GT, - [54168] = 2, + [56674] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2883), 2, + ACTIONS(2728), 1, + anon_sym_COLON, + ACTIONS(2883), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [54176] = 2, + STATE(1206), 1, + aux_sym__parameters_repeat1, + [56687] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2885), 2, - sym__newline, - sym__semicolon, - [54184] = 3, + ACTIONS(1881), 1, + anon_sym_COMMA, + ACTIONS(2885), 1, + anon_sym_RPAREN, + STATE(1300), 1, + aux_sym__collection_elements_repeat1, + [56700] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(1881), 1, + anon_sym_COMMA, ACTIONS(2887), 1, + anon_sym_RPAREN, + STATE(1097), 1, + aux_sym__collection_elements_repeat1, + [56713] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2477), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(2889), 1, - anon_sym_DASH_GT, - [54194] = 3, + [56722] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, - anon_sym_LPAREN, - STATE(1324), 1, - sym_parameters, - [54204] = 2, + ACTIONS(2350), 1, + anon_sym_RPAREN, + ACTIONS(2889), 1, + anon_sym_COMMA, + STATE(1093), 1, + aux_sym__collection_elements_repeat1, + [56735] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 2, - sym__newline, - sym__semicolon, - [54212] = 2, + ACTIONS(1840), 1, + anon_sym_COMMA, + ACTIONS(2891), 1, + anon_sym_in, + STATE(862), 1, + aux_sym__patterns_repeat1, + [56748] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2893), 2, + ACTIONS(556), 1, sym__newline, + ACTIONS(2893), 1, sym__semicolon, - [54220] = 2, + STATE(1204), 1, + aux_sym__simple_statements_repeat1, + [56761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2628), 2, + ACTIONS(2895), 3, anon_sym_RPAREN, anon_sym_COMMA, - [54228] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2895), 2, anon_sym_COLON, - anon_sym_DASH_GT, - [54236] = 2, + [56770] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 2, + ACTIONS(2877), 1, + anon_sym_RPAREN, + ACTIONS(2897), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [54244] = 3, + STATE(1242), 1, + aux_sym_match_class_pattern_repeat1, + [56783] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2794), 1, - anon_sym_COMMA, - ACTIONS(2899), 1, + ACTIONS(2589), 3, anon_sym_RPAREN, - [54254] = 3, + anon_sym_COMMA, + anon_sym_COLON, + [56792] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(2899), 1, + anon_sym_COLON, ACTIONS(2901), 1, - anon_sym_COMMA, - STATE(1210), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [54264] = 2, + anon_sym_DASH_GT, + [56802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(910), 2, - anon_sym_except, - anon_sym_finally, - [54272] = 2, + ACTIONS(2506), 1, + anon_sym_LPAREN, + STATE(1342), 1, + sym_parameters, + [56812] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2903), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [54280] = 2, + sym__newline, + sym__semicolon, + [56820] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2905), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [54288] = 2, + sym__newline, + sym__semicolon, + [56828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2385), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [54296] = 2, + ACTIONS(2907), 1, + sym_identifier, + STATE(1371), 1, + sym_match_capture_pattern, + [56838] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 2, + ACTIONS(2909), 2, sym__newline, sym__semicolon, - [54304] = 2, + [56846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 2, - sym__newline, - sym__semicolon, - [54312] = 3, + ACTIONS(965), 2, + anon_sym_except, + anon_sym_finally, + [56854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2907), 1, - anon_sym_COMMA, - STATE(1139), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [54322] = 2, + ACTIONS(1908), 1, + anon_sym_DOT, + STATE(1219), 1, + aux_sym_match_value_pattern_repeat1, + [56864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 2, + ACTIONS(2911), 2, anon_sym_RPAREN, anon_sym_COMMA, - [54330] = 3, + [56872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2911), 1, - sym_integer, - ACTIONS(2913), 1, - sym_float, - [54340] = 2, + ACTIONS(2913), 2, + sym__newline, + sym__semicolon, + [56880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2323), 2, + ACTIONS(2915), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [54348] = 2, + [56888] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(914), 2, - anon_sym_except, - anon_sym_finally, - [54356] = 2, + ACTIONS(2917), 2, + sym__newline, + sym__semicolon, + [56896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2498), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [54364] = 3, + ACTIONS(2919), 2, + sym__newline, + sym__semicolon, + [56904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2737), 1, - anon_sym_RBRACE, - ACTIONS(2915), 1, - anon_sym_COMMA, - [54374] = 3, + ACTIONS(2506), 1, + anon_sym_LPAREN, + STATE(1350), 1, + sym_parameters, + [56914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2917), 1, - anon_sym_COLON, - ACTIONS(2919), 1, - anon_sym_DASH_GT, - [54384] = 2, + ACTIONS(2506), 1, + anon_sym_LPAREN, + STATE(1351), 1, + sym_parameters, + [56924] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 2, + anon_sym_except, + anon_sym_finally, + [56932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2694), 2, - anon_sym_RPAREN, + ACTIONS(2635), 1, + anon_sym_RBRACE, + ACTIONS(2921), 1, anon_sym_COMMA, - [54392] = 2, + [56942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2771), 2, - anon_sym_RPAREN, + ACTIONS(2923), 2, anon_sym_COMMA, - [54400] = 2, + anon_sym_RBRACE, + [56950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 2, + ACTIONS(1904), 2, sym__newline, sym__semicolon, - [54408] = 3, + [56958] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(2477), 2, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(2923), 1, - anon_sym_DASH_GT, - [54418] = 3, + [56966] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2358), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [56974] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2925), 1, - anon_sym_COLON, + sym_integer, ACTIONS(2927), 1, - anon_sym_DASH_GT, - [54428] = 3, + sym_float, + [56984] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2929), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(2931), 1, - anon_sym_DASH_GT, - [54438] = 3, + anon_sym_RBRACE, + [56994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 1, - anon_sym_COLON, - ACTIONS(2935), 1, - anon_sym_DASH_GT, - [54448] = 2, + ACTIONS(2073), 1, + anon_sym_COMMA, + STATE(1077), 1, + aux_sym_expression_list_repeat1, + [57004] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2933), 2, + sym__newline, + sym__semicolon, + [57012] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2935), 2, + sym__newline, + sym__semicolon, + [57020] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2937), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [54456] = 2, + sym__newline, + sym__semicolon, + [57028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 2, - anon_sym_except, - anon_sym_finally, - [54464] = 2, + ACTIONS(2185), 2, + sym__newline, + sym__semicolon, + [57036] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2939), 2, anon_sym_COLON, anon_sym_DASH_GT, - [54472] = 2, + [57044] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2941), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [54480] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2612), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [54488] = 2, + [57052] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2943), 2, sym__newline, sym__semicolon, - [54496] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2945), 2, - sym__newline, - sym__semicolon, - [54504] = 2, + [57060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2947), 2, + ACTIONS(2641), 2, anon_sym_RPAREN, anon_sym_COMMA, - [54512] = 2, + [57068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2129), 2, - sym__newline, - sym__semicolon, - [54520] = 2, + ACTIONS(935), 2, + anon_sym_except, + anon_sym_finally, + [57076] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 2, - sym__newline, - sym__semicolon, - [54528] = 2, + ACTIONS(2945), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [57084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 2, + ACTIONS(2947), 2, sym__newline, sym__semicolon, - [54536] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2953), 1, - sym_identifier, - STATE(1300), 1, - sym_match_capture_pattern, - [54546] = 2, + [57092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2955), 2, + ACTIONS(2682), 2, anon_sym_RPAREN, anon_sym_COMMA, - [54554] = 2, + [57100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [54562] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2447), 1, - anon_sym_LPAREN, - STATE(1330), 1, - sym_parameters, - [54572] = 2, + ACTIONS(2949), 1, + anon_sym_COLON, + ACTIONS(2951), 1, + anon_sym_DASH_GT, + [57110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [54580] = 3, + ACTIONS(929), 2, + anon_sym_except, + anon_sym_finally, + [57118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, - anon_sym_LPAREN, - STATE(1331), 1, - sym_parameters, - [54590] = 2, + ACTIONS(2241), 2, + sym__newline, + sym__semicolon, + [57126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 2, - anon_sym_except, - anon_sym_finally, - [54598] = 2, + ACTIONS(2360), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [57134] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2961), 2, + ACTIONS(2953), 2, sym__newline, sym__semicolon, - [54606] = 3, + [57142] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2963), 1, + ACTIONS(2955), 2, anon_sym_COMMA, - ACTIONS(2965), 1, - anon_sym_RBRACE, - [54616] = 3, + anon_sym_RBRACK, + [57150] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, - anon_sym_DOT, - STATE(1212), 1, - aux_sym_match_value_pattern_repeat1, - [54626] = 3, + ACTIONS(2957), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [57158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2626), 1, - sym_identifier, - STATE(1325), 1, - sym_match_keyword_pattern, - [54636] = 2, + ACTIONS(2959), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [57166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(2961), 1, + anon_sym_COLON, + ACTIONS(2963), 1, + anon_sym_DASH_GT, + [57176] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2965), 1, anon_sym_COLON, - [54643] = 2, + ACTIONS(2967), 1, + anon_sym_DASH_GT, + [57186] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2969), 1, - anon_sym_RBRACE, - [54650] = 2, + anon_sym_COMMA, + STATE(1157), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [57196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2971), 1, - anon_sym_COLON, - [54657] = 2, + ACTIONS(2971), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [57204] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2973), 1, anon_sym_COLON, - [54664] = 2, + ACTIONS(2975), 1, + anon_sym_DASH_GT, + [57214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2975), 1, - anon_sym_COLON, - [54671] = 2, + ACTIONS(2506), 1, + anon_sym_LPAREN, + STATE(1306), 1, + sym_parameters, + [57224] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2977), 1, - sym_identifier, - [54678] = 2, + anon_sym_COLON, + ACTIONS(2979), 1, + anon_sym_DASH_GT, + [57234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 1, - anon_sym_RBRACE, - [54685] = 2, + ACTIONS(2676), 2, + sym__newline, + sym__semicolon, + [57242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2981), 1, - anon_sym_in, - [54692] = 2, + ACTIONS(2981), 2, + sym__newline, + sym__semicolon, + [57250] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(2656), 1, + anon_sym_COMMA, ACTIONS(2983), 1, anon_sym_RPAREN, - [54699] = 2, + [57260] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2985), 1, - anon_sym_RBRACK, - [54706] = 2, + anon_sym_COMMA, + STATE(1213), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [57270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 1, - anon_sym_RPAREN, - [54713] = 2, + ACTIONS(2704), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [57278] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(2987), 1, + sym_integer, ACTIONS(2989), 1, - anon_sym_COLON, - [54720] = 2, + sym_float, + [57288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 1, - anon_sym_RBRACE, - [54727] = 2, + ACTIONS(2868), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(1792), 1, anon_sym_RBRACE, - [54734] = 2, + ACTIONS(2991), 1, + anon_sym_COMMA, + [57306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2995), 1, - anon_sym_RBRACE, - [54741] = 2, + ACTIONS(1906), 1, + anon_sym_COMMA, + STATE(989), 1, + aux_sym_expression_list_repeat1, + [57316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2997), 1, - anon_sym_import, - [54748] = 2, + ACTIONS(955), 2, + anon_sym_except, + anon_sym_finally, + [57324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2999), 1, + ACTIONS(2993), 1, anon_sym_COLON, - [54755] = 2, + ACTIONS(2995), 1, + anon_sym_DASH_GT, + [57334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, - anon_sym_RPAREN, - [54762] = 2, + ACTIONS(2997), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [57342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3003), 1, - anon_sym_import, - [54769] = 2, + ACTIONS(2999), 1, + sym_integer, + ACTIONS(3001), 1, + sym_float, + [57352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3005), 1, + ACTIONS(2610), 1, sym_identifier, - [54776] = 2, + STATE(1341), 1, + sym_match_keyword_pattern, + [57362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 1, - anon_sym_RBRACK, - [54783] = 2, + ACTIONS(3003), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [57370] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2849), 1, - anon_sym_RBRACK, - [54790] = 2, + ACTIONS(3005), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [57378] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2745), 1, + ACTIONS(3007), 2, + anon_sym_COMMA, anon_sym_RBRACK, - [54797] = 2, + [57386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, + ACTIONS(2469), 2, anon_sym_RPAREN, - [54804] = 2, + anon_sym_COMMA, + [57394] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 2, + sym__newline, + sym__semicolon, + [57402] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(3009), 1, + anon_sym_COLON, ACTIONS(3011), 1, - anon_sym_RPAREN, - [54811] = 2, + anon_sym_DASH_GT, + [57412] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3013), 1, - sym_identifier, - [54818] = 2, + anon_sym_COLON, + [57419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3015), 1, - sym_identifier, - [54825] = 2, + ACTIONS(2296), 1, + anon_sym_COLON, + [57426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1002), 1, - anon_sym_STAR, - [54832] = 2, + ACTIONS(3015), 1, + anon_sym_RBRACE, + [57433] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3017), 1, - anon_sym_COLON, - [54839] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, anon_sym_RBRACE, - [54846] = 2, + [57440] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3019), 1, - anon_sym_COLON, - [54853] = 2, + anon_sym_RBRACK, + [57447] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3021), 1, - anon_sym_COLON, - [54860] = 2, + anon_sym_RBRACE, + [57454] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3023), 1, - anon_sym_LPAREN, - [54867] = 2, + anon_sym_COLON, + [57461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 1, + ACTIONS(1784), 1, anon_sym_RBRACE, - [54874] = 2, + [57468] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3025), 1, - anon_sym_import, - [54881] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2635), 1, - anon_sym_RBRACK, - [54888] = 2, + sym_identifier, + [57475] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3027), 1, - ts_builtin_sym_end, - [54895] = 2, + anon_sym_in, + [57482] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3029), 1, - anon_sym_COLON, - [54902] = 2, + anon_sym_RPAREN, + [57489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2414), 1, - anon_sym_RBRACE, - [54909] = 2, + ACTIONS(3031), 1, + anon_sym_RBRACK, + [57496] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3031), 1, - anon_sym_COLON, - [54916] = 2, + ACTIONS(2750), 1, + anon_sym_RBRACE, + [57503] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3033), 1, - anon_sym_in, - [54923] = 2, + anon_sym_RPAREN, + [57510] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3035), 1, - anon_sym_RPAREN, - [54930] = 2, + anon_sym_RBRACE, + [57517] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3037), 1, - anon_sym_in, - [54937] = 2, + anon_sym_RBRACE, + [57524] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3039), 1, sym_identifier, - [54944] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2105), 1, - anon_sym_EQ, - [54951] = 2, + [57531] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3041), 1, - anon_sym_RBRACE, - [54958] = 2, + sym_identifier, + [57538] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3043), 1, - sym_identifier, - [54965] = 2, + anon_sym_RPAREN, + [57545] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3045), 1, - anon_sym_RBRACE, - [54972] = 2, + anon_sym_RPAREN, + [57552] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3047), 1, - anon_sym_COLON, - [54979] = 2, + anon_sym_in, + [57559] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3049), 1, - anon_sym_COLON, - [54986] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2257), 1, - anon_sym_COLON, - [54993] = 2, + sym_identifier, + [57566] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3051), 1, sym_identifier, - [55000] = 2, + [57573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2831), 1, - anon_sym_in, - [55007] = 2, + ACTIONS(2726), 1, + anon_sym_RBRACK, + [57580] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3053), 1, anon_sym_RPAREN, - [55014] = 2, + [57587] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3055), 1, anon_sym_COLON, - [55021] = 2, + [57594] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3057), 1, - sym_identifier, - [55028] = 2, + anon_sym_RPAREN, + [57601] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3059), 1, - anon_sym_COLON, - [55035] = 2, + anon_sym_RBRACE, + [57608] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3061), 1, - anon_sym_COLON, - [55042] = 2, + anon_sym_RBRACE, + [57615] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3063), 1, - anon_sym_COLON, - [55049] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2603), 1, anon_sym_RBRACE, - [55056] = 2, + [57622] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3065), 1, - anon_sym_COLON, - [55063] = 2, + anon_sym_RBRACK, + [57629] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3067), 1, - sym_identifier, - [55070] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2209), 1, - anon_sym_COLON, - [55077] = 2, + anon_sym_EQ, + [57636] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3069), 1, - anon_sym_RBRACK, - [55084] = 2, + anon_sym_RPAREN, + [57643] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3071), 1, - sym_identifier, - [55091] = 2, + anon_sym_RPAREN, + [57650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3073), 1, - anon_sym_COLON, - [55098] = 2, + ACTIONS(2708), 1, + anon_sym_in, + [57657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3075), 1, - anon_sym_RPAREN, - [55105] = 2, + ACTIONS(3073), 1, + anon_sym_COLON, + [57664] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3077), 1, + ACTIONS(2266), 1, anon_sym_COLON, - [55112] = 2, + [57671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3079), 1, - anon_sym_COLON, - [55119] = 2, + ACTIONS(3075), 1, + anon_sym_import, + [57678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2302), 1, - anon_sym_COLON, - [55126] = 2, + ACTIONS(3077), 1, + sym_identifier, + [57685] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, - anon_sym_RBRACE, - [55133] = 2, + ACTIONS(3079), 1, + anon_sym_RPAREN, + [57692] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3081), 1, - anon_sym_for, - [55140] = 2, + anon_sym_COLON, + [57699] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3083), 1, - anon_sym_RBRACK, - [55147] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1818), 1, - anon_sym_RBRACE, - [55154] = 2, + anon_sym_in, + [57706] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3085), 1, - anon_sym_COLON, - [55161] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2605), 1, - anon_sym_in, - [55168] = 2, + anon_sym_RPAREN, + [57713] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3087), 1, - anon_sym_COLON, - [55175] = 2, + anon_sym_RBRACE, + [57720] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3089), 1, - anon_sym_COLON, - [55182] = 2, + anon_sym_import, + [57727] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3091), 1, - anon_sym_COLON, - [55189] = 2, + anon_sym_RBRACK, + [57734] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3093), 1, - anon_sym_COLON, - [55196] = 2, + anon_sym_RPAREN, + [57741] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3095), 1, anon_sym_COLON, - [55203] = 2, + [57748] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2791), 1, + anon_sym_RBRACK, + [57755] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3097), 1, anon_sym_COLON, - [55210] = 2, + [57762] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3099), 1, anon_sym_COLON, - [55217] = 2, + [57769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2614), 1, - anon_sym_in, - [55224] = 2, + ACTIONS(2530), 1, + anon_sym_RBRACE, + [57776] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3101), 1, - anon_sym_COLON, - [55231] = 2, + sym_identifier, + [57783] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3103), 1, - anon_sym_RBRACE, - [55238] = 2, + anon_sym_COLON, + [57790] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3105), 1, - anon_sym_RBRACE, - [55245] = 2, + anon_sym_COLON, + [57797] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2808), 1, + anon_sym_RBRACK, + [57804] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3107), 1, anon_sym_COLON, - [55252] = 2, + [57811] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3109), 1, - sym_identifier, - [55259] = 2, + anon_sym_COLON, + [57818] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3111), 1, - anon_sym_RBRACK, - [55266] = 2, + anon_sym_COLON, + [57825] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2830), 1, + anon_sym_in, + [57832] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3113), 1, anon_sym_COLON, - [55273] = 2, + [57839] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3115), 1, - anon_sym_RBRACK, - [55280] = 2, + anon_sym_COLON, + [57846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2665), 1, + ACTIONS(2824), 1, anon_sym_in, - [55287] = 2, + [57853] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3117), 1, - anon_sym_COLON, - [55294] = 2, + anon_sym_RBRACK, + [57860] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3119), 1, - anon_sym_RPAREN, - [55301] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2282), 1, anon_sym_COLON, - [55308] = 2, + [57867] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3121), 1, - sym_identifier, - [55315] = 2, + anon_sym_COLON, + [57874] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3123), 1, - anon_sym_in, - [55322] = 2, + anon_sym_COLON, + [57881] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2854), 1, + anon_sym_RBRACE, + [57888] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3125), 1, - anon_sym_EQ, - [55329] = 2, + anon_sym_COLON, + [57895] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3127), 1, - sym_identifier, - [55336] = 2, + anon_sym_COLON, + [57902] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2298), 1, + anon_sym_COLON, + [57909] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3129), 1, - anon_sym_RPAREN, - [55343] = 2, + anon_sym_LPAREN, + [57916] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3131), 1, - anon_sym_RBRACE, - [55350] = 2, + anon_sym_COLON, + [57923] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3133), 1, - anon_sym_RPAREN, - [55357] = 2, + anon_sym_RBRACE, + [57930] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3135), 1, - anon_sym_RBRACE, - [55364] = 2, + anon_sym_RBRACK, + [57937] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3137), 1, - anon_sym_RBRACE, - [55371] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(864), 1, - anon_sym_def, - [55378] = 2, + anon_sym_COLON, + [57944] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3139), 1, - sym_identifier, - [55385] = 2, + anon_sym_COLON, + [57951] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3141), 1, - sym_identifier, - [55392] = 2, + anon_sym_COLON, + [57958] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3143), 1, anon_sym_RBRACK, - [55399] = 2, + [57965] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3145), 1, + anon_sym_COLON, + [57972] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3147), 1, + anon_sym_COLON, + [57979] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3149), 1, + anon_sym_COLON, + [57986] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3151), 1, + anon_sym_RBRACE, + [57993] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3153), 1, + anon_sym_COLON, + [58000] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3155), 1, + anon_sym_COLON, + [58007] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3157), 1, + anon_sym_RBRACE, + [58014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(956), 1, + ACTIONS(925), 1, anon_sym_STAR, - [55406] = 2, + [58021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3145), 1, + ACTIONS(2101), 1, + anon_sym_EQ, + [58028] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3159), 1, anon_sym_RBRACE, - [55413] = 2, + [58035] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3147), 1, + ACTIONS(3161), 1, sym_identifier, - [55420] = 2, + [58042] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 1, - anon_sym_RBRACE, - [55427] = 2, + ACTIONS(3163), 1, + sym_identifier, + [58049] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3151), 1, + ACTIONS(3165), 1, + sym_identifier, + [58056] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3167), 1, + anon_sym_RPAREN, + [58063] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3169), 1, anon_sym_COLON, - [55434] = 2, + [58070] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3153), 1, + ACTIONS(3171), 1, + anon_sym_COLON, + [58077] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3173), 1, anon_sym_RPAREN, - [55441] = 2, + [58084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 1, + ACTIONS(3175), 1, + anon_sym_for, + [58091] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3177), 1, sym_identifier, - [55448] = 2, + [58098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3157), 1, + ACTIONS(3179), 1, + anon_sym_COLON, + [58105] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3181), 1, + anon_sym_COLON, + [58112] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3183), 1, + anon_sym_RBRACE, + [58119] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3185), 1, + anon_sym_import, + [58126] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2891), 1, + anon_sym_in, + [58133] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3187), 1, + ts_builtin_sym_end, + [58140] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3189), 1, sym_identifier, - [55455] = 2, + [58147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3159), 1, + ACTIONS(2931), 1, + anon_sym_RBRACE, + [58154] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3191), 1, + sym_identifier, + [58161] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3193), 1, + sym_identifier, + [58168] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3195), 1, + sym_identifier, + [58175] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3197), 1, + sym_identifier, + [58182] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(921), 1, + anon_sym_STAR, + [58189] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3199), 1, + anon_sym_COLON, + [58196] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3201), 1, anon_sym_RBRACE, - [55462] = 2, + [58203] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3203), 1, + sym_identifier, + [58210] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2845), 1, + ACTIONS(3205), 1, anon_sym_in, - [55469] = 2, + [58217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(858), 1, + ACTIONS(986), 1, anon_sym_def, - [55476] = 2, + [58224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3161), 1, + ACTIONS(3207), 1, + sym_identifier, + [58231] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3209), 1, sym_identifier, - [55483] = 2, + [58238] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2491), 1, + anon_sym_RBRACE, + [58245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2847), 1, + ACTIONS(2623), 1, anon_sym_in, - [55490] = 2, + [58252] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(941), 1, + anon_sym_def, + [58259] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3211), 1, anon_sym_COLON, - [55497] = 2, + [58266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3165), 1, + ACTIONS(2621), 1, + anon_sym_in, + [58273] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3213), 1, anon_sym_COLON, - [55504] = 2, + [58280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3167), 1, - anon_sym_RPAREN, + ACTIONS(2334), 1, + anon_sym_COLON, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(149)] = 0, - [SMALL_STATE(150)] = 118, - [SMALL_STATE(151)] = 236, - [SMALL_STATE(152)] = 354, - [SMALL_STATE(153)] = 464, - [SMALL_STATE(154)] = 581, - [SMALL_STATE(155)] = 698, - [SMALL_STATE(156)] = 801, - [SMALL_STATE(157)] = 920, - [SMALL_STATE(158)] = 1035, - [SMALL_STATE(159)] = 1150, - [SMALL_STATE(160)] = 1265, - [SMALL_STATE(161)] = 1368, - [SMALL_STATE(162)] = 1472, - [SMALL_STATE(163)] = 1576, - [SMALL_STATE(164)] = 1680, - [SMALL_STATE(165)] = 1794, - [SMALL_STATE(166)] = 1908, - [SMALL_STATE(167)] = 2022, - [SMALL_STATE(168)] = 2129, - [SMALL_STATE(169)] = 2234, - [SMALL_STATE(170)] = 2339, - [SMALL_STATE(171)] = 2444, - [SMALL_STATE(172)] = 2547, - [SMALL_STATE(173)] = 2652, - [SMALL_STATE(174)] = 2757, - [SMALL_STATE(175)] = 2858, - [SMALL_STATE(176)] = 2961, - [SMALL_STATE(177)] = 3062, - [SMALL_STATE(178)] = 3163, - [SMALL_STATE(179)] = 3268, - [SMALL_STATE(180)] = 3366, - [SMALL_STATE(181)] = 3468, - [SMALL_STATE(182)] = 3572, - [SMALL_STATE(183)] = 3674, - [SMALL_STATE(184)] = 3780, - [SMALL_STATE(185)] = 3882, - [SMALL_STATE(186)] = 3984, - [SMALL_STATE(187)] = 4086, - [SMALL_STATE(188)] = 4188, - [SMALL_STATE(189)] = 4290, - [SMALL_STATE(190)] = 4392, - [SMALL_STATE(191)] = 4494, - [SMALL_STATE(192)] = 4596, - [SMALL_STATE(193)] = 4698, - [SMALL_STATE(194)] = 4800, - [SMALL_STATE(195)] = 4902, - [SMALL_STATE(196)] = 5000, - [SMALL_STATE(197)] = 5106, - [SMALL_STATE(198)] = 5210, - [SMALL_STATE(199)] = 5312, - [SMALL_STATE(200)] = 5414, - [SMALL_STATE(201)] = 5512, - [SMALL_STATE(202)] = 5616, - [SMALL_STATE(203)] = 5718, - [SMALL_STATE(204)] = 5820, - [SMALL_STATE(205)] = 5922, - [SMALL_STATE(206)] = 6024, - [SMALL_STATE(207)] = 6126, - [SMALL_STATE(208)] = 6228, - [SMALL_STATE(209)] = 6330, - [SMALL_STATE(210)] = 6432, - [SMALL_STATE(211)] = 6536, - [SMALL_STATE(212)] = 6634, - [SMALL_STATE(213)] = 6733, - [SMALL_STATE(214)] = 6832, - [SMALL_STATE(215)] = 6931, - [SMALL_STATE(216)] = 7030, - [SMALL_STATE(217)] = 7129, - [SMALL_STATE(218)] = 7190, - [SMALL_STATE(219)] = 7289, - [SMALL_STATE(220)] = 7350, - [SMALL_STATE(221)] = 7449, - [SMALL_STATE(222)] = 7536, - [SMALL_STATE(223)] = 7635, - [SMALL_STATE(224)] = 7707, - [SMALL_STATE(225)] = 7805, - [SMALL_STATE(226)] = 7901, - [SMALL_STATE(227)] = 7973, - [SMALL_STATE(228)] = 8045, - [SMALL_STATE(229)] = 8143, - [SMALL_STATE(230)] = 8215, - [SMALL_STATE(231)] = 8313, - [SMALL_STATE(232)] = 8385, - [SMALL_STATE(233)] = 8457, - [SMALL_STATE(234)] = 8529, - [SMALL_STATE(235)] = 8601, - [SMALL_STATE(236)] = 8697, - [SMALL_STATE(237)] = 8795, - [SMALL_STATE(238)] = 8893, - [SMALL_STATE(239)] = 8988, - [SMALL_STATE(240)] = 9061, - [SMALL_STATE(241)] = 9156, - [SMALL_STATE(242)] = 9229, - [SMALL_STATE(243)] = 9324, - [SMALL_STATE(244)] = 9419, - [SMALL_STATE(245)] = 9514, - [SMALL_STATE(246)] = 9609, - [SMALL_STATE(247)] = 9704, - [SMALL_STATE(248)] = 9799, - [SMALL_STATE(249)] = 9894, - [SMALL_STATE(250)] = 9989, - [SMALL_STATE(251)] = 10084, - [SMALL_STATE(252)] = 10152, - [SMALL_STATE(253)] = 10210, - [SMALL_STATE(254)] = 10278, - [SMALL_STATE(255)] = 10346, - [SMALL_STATE(256)] = 10414, - [SMALL_STATE(257)] = 10484, - [SMALL_STATE(258)] = 10578, - [SMALL_STATE(259)] = 10672, - [SMALL_STATE(260)] = 10766, - [SMALL_STATE(261)] = 10824, - [SMALL_STATE(262)] = 10882, - [SMALL_STATE(263)] = 10940, - [SMALL_STATE(264)] = 11002, - [SMALL_STATE(265)] = 11060, - [SMALL_STATE(266)] = 11152, - [SMALL_STATE(267)] = 11220, - [SMALL_STATE(268)] = 11314, - [SMALL_STATE(269)] = 11376, - [SMALL_STATE(270)] = 11444, - [SMALL_STATE(271)] = 11512, - [SMALL_STATE(272)] = 11574, - [SMALL_STATE(273)] = 11636, - [SMALL_STATE(274)] = 11728, - [SMALL_STATE(275)] = 11786, - [SMALL_STATE(276)] = 11844, - [SMALL_STATE(277)] = 11938, - [SMALL_STATE(278)] = 12006, - [SMALL_STATE(279)] = 12098, - [SMALL_STATE(280)] = 12156, - [SMALL_STATE(281)] = 12250, - [SMALL_STATE(282)] = 12308, - [SMALL_STATE(283)] = 12402, - [SMALL_STATE(284)] = 12460, - [SMALL_STATE(285)] = 12554, - [SMALL_STATE(286)] = 12648, - [SMALL_STATE(287)] = 12742, - [SMALL_STATE(288)] = 12836, - [SMALL_STATE(289)] = 12927, - [SMALL_STATE(290)] = 13018, - [SMALL_STATE(291)] = 13107, - [SMALL_STATE(292)] = 13198, - [SMALL_STATE(293)] = 13261, - [SMALL_STATE(294)] = 13350, - [SMALL_STATE(295)] = 13439, - [SMALL_STATE(296)] = 13530, - [SMALL_STATE(297)] = 13619, - [SMALL_STATE(298)] = 13708, - [SMALL_STATE(299)] = 13799, - [SMALL_STATE(300)] = 13888, - [SMALL_STATE(301)] = 13977, - [SMALL_STATE(302)] = 14044, - [SMALL_STATE(303)] = 14135, - [SMALL_STATE(304)] = 14226, - [SMALL_STATE(305)] = 14315, - [SMALL_STATE(306)] = 14406, - [SMALL_STATE(307)] = 14495, - [SMALL_STATE(308)] = 14584, - [SMALL_STATE(309)] = 14647, - [SMALL_STATE(310)] = 14736, - [SMALL_STATE(311)] = 14825, - [SMALL_STATE(312)] = 14914, - [SMALL_STATE(313)] = 15005, - [SMALL_STATE(314)] = 15061, - [SMALL_STATE(315)] = 15117, - [SMALL_STATE(316)] = 15177, - [SMALL_STATE(317)] = 15241, - [SMALL_STATE(318)] = 15305, - [SMALL_STATE(319)] = 15361, - [SMALL_STATE(320)] = 15449, - [SMALL_STATE(321)] = 15509, - [SMALL_STATE(322)] = 15565, - [SMALL_STATE(323)] = 15621, - [SMALL_STATE(324)] = 15677, - [SMALL_STATE(325)] = 15733, - [SMALL_STATE(326)] = 15789, - [SMALL_STATE(327)] = 15845, - [SMALL_STATE(328)] = 15901, - [SMALL_STATE(329)] = 15957, - [SMALL_STATE(330)] = 16013, - [SMALL_STATE(331)] = 16077, - [SMALL_STATE(332)] = 16141, - [SMALL_STATE(333)] = 16201, - [SMALL_STATE(334)] = 16261, - [SMALL_STATE(335)] = 16317, - [SMALL_STATE(336)] = 16373, - [SMALL_STATE(337)] = 16429, - [SMALL_STATE(338)] = 16485, - [SMALL_STATE(339)] = 16541, - [SMALL_STATE(340)] = 16597, - [SMALL_STATE(341)] = 16653, - [SMALL_STATE(342)] = 16709, - [SMALL_STATE(343)] = 16765, - [SMALL_STATE(344)] = 16821, - [SMALL_STATE(345)] = 16909, - [SMALL_STATE(346)] = 16997, - [SMALL_STATE(347)] = 17082, - [SMALL_STATE(348)] = 17141, - [SMALL_STATE(349)] = 17226, - [SMALL_STATE(350)] = 17285, - [SMALL_STATE(351)] = 17344, - [SMALL_STATE(352)] = 17431, - [SMALL_STATE(353)] = 17516, - [SMALL_STATE(354)] = 17601, - [SMALL_STATE(355)] = 17662, - [SMALL_STATE(356)] = 17721, - [SMALL_STATE(357)] = 17806, - [SMALL_STATE(358)] = 17865, - [SMALL_STATE(359)] = 17950, - [SMALL_STATE(360)] = 18035, - [SMALL_STATE(361)] = 18094, - [SMALL_STATE(362)] = 18153, - [SMALL_STATE(363)] = 18238, - [SMALL_STATE(364)] = 18323, - [SMALL_STATE(365)] = 18408, - [SMALL_STATE(366)] = 18463, - [SMALL_STATE(367)] = 18522, - [SMALL_STATE(368)] = 18607, - [SMALL_STATE(369)] = 18692, - [SMALL_STATE(370)] = 18777, - [SMALL_STATE(371)] = 18862, - [SMALL_STATE(372)] = 18917, - [SMALL_STATE(373)] = 19002, - [SMALL_STATE(374)] = 19087, - [SMALL_STATE(375)] = 19172, - [SMALL_STATE(376)] = 19257, - [SMALL_STATE(377)] = 19342, - [SMALL_STATE(378)] = 19403, - [SMALL_STATE(379)] = 19488, - [SMALL_STATE(380)] = 19573, - [SMALL_STATE(381)] = 19658, - [SMALL_STATE(382)] = 19743, - [SMALL_STATE(383)] = 19828, - [SMALL_STATE(384)] = 19913, - [SMALL_STATE(385)] = 19998, - [SMALL_STATE(386)] = 20083, - [SMALL_STATE(387)] = 20142, - [SMALL_STATE(388)] = 20227, - [SMALL_STATE(389)] = 20312, - [SMALL_STATE(390)] = 20397, - [SMALL_STATE(391)] = 20452, - [SMALL_STATE(392)] = 20511, - [SMALL_STATE(393)] = 20570, - [SMALL_STATE(394)] = 20629, - [SMALL_STATE(395)] = 20714, - [SMALL_STATE(396)] = 20773, - [SMALL_STATE(397)] = 20832, - [SMALL_STATE(398)] = 20891, - [SMALL_STATE(399)] = 20976, - [SMALL_STATE(400)] = 21061, - [SMALL_STATE(401)] = 21116, - [SMALL_STATE(402)] = 21175, - [SMALL_STATE(403)] = 21260, - [SMALL_STATE(404)] = 21321, - [SMALL_STATE(405)] = 21376, - [SMALL_STATE(406)] = 21461, - [SMALL_STATE(407)] = 21546, - [SMALL_STATE(408)] = 21601, - [SMALL_STATE(409)] = 21686, - [SMALL_STATE(410)] = 21771, - [SMALL_STATE(411)] = 21856, - [SMALL_STATE(412)] = 21941, - [SMALL_STATE(413)] = 22026, - [SMALL_STATE(414)] = 22111, - [SMALL_STATE(415)] = 22196, - [SMALL_STATE(416)] = 22281, - [SMALL_STATE(417)] = 22366, - [SMALL_STATE(418)] = 22451, - [SMALL_STATE(419)] = 22536, - [SMALL_STATE(420)] = 22621, - [SMALL_STATE(421)] = 22706, - [SMALL_STATE(422)] = 22791, - [SMALL_STATE(423)] = 22876, - [SMALL_STATE(424)] = 22961, - [SMALL_STATE(425)] = 23046, - [SMALL_STATE(426)] = 23131, - [SMALL_STATE(427)] = 23216, - [SMALL_STATE(428)] = 23301, - [SMALL_STATE(429)] = 23386, - [SMALL_STATE(430)] = 23471, - [SMALL_STATE(431)] = 23556, - [SMALL_STATE(432)] = 23617, - [SMALL_STATE(433)] = 23702, - [SMALL_STATE(434)] = 23787, - [SMALL_STATE(435)] = 23872, - [SMALL_STATE(436)] = 23957, - [SMALL_STATE(437)] = 24042, - [SMALL_STATE(438)] = 24127, - [SMALL_STATE(439)] = 24212, - [SMALL_STATE(440)] = 24297, - [SMALL_STATE(441)] = 24382, - [SMALL_STATE(442)] = 24467, - [SMALL_STATE(443)] = 24552, - [SMALL_STATE(444)] = 24637, - [SMALL_STATE(445)] = 24722, - [SMALL_STATE(446)] = 24807, - [SMALL_STATE(447)] = 24861, - [SMALL_STATE(448)] = 24915, - [SMALL_STATE(449)] = 24969, - [SMALL_STATE(450)] = 25023, - [SMALL_STATE(451)] = 25077, - [SMALL_STATE(452)] = 25131, - [SMALL_STATE(453)] = 25185, - [SMALL_STATE(454)] = 25239, - [SMALL_STATE(455)] = 25293, - [SMALL_STATE(456)] = 25347, - [SMALL_STATE(457)] = 25401, - [SMALL_STATE(458)] = 25455, - [SMALL_STATE(459)] = 25508, - [SMALL_STATE(460)] = 25561, - [SMALL_STATE(461)] = 25614, - [SMALL_STATE(462)] = 25667, - [SMALL_STATE(463)] = 25720, - [SMALL_STATE(464)] = 25773, - [SMALL_STATE(465)] = 25826, - [SMALL_STATE(466)] = 25879, - [SMALL_STATE(467)] = 25932, - [SMALL_STATE(468)] = 25985, - [SMALL_STATE(469)] = 26038, - [SMALL_STATE(470)] = 26091, - [SMALL_STATE(471)] = 26144, - [SMALL_STATE(472)] = 26197, - [SMALL_STATE(473)] = 26250, - [SMALL_STATE(474)] = 26335, - [SMALL_STATE(475)] = 26388, - [SMALL_STATE(476)] = 26441, - [SMALL_STATE(477)] = 26494, - [SMALL_STATE(478)] = 26547, - [SMALL_STATE(479)] = 26600, - [SMALL_STATE(480)] = 26653, - [SMALL_STATE(481)] = 26706, - [SMALL_STATE(482)] = 26759, - [SMALL_STATE(483)] = 26812, - [SMALL_STATE(484)] = 26865, - [SMALL_STATE(485)] = 26918, - [SMALL_STATE(486)] = 26971, - [SMALL_STATE(487)] = 27024, - [SMALL_STATE(488)] = 27077, - [SMALL_STATE(489)] = 27130, - [SMALL_STATE(490)] = 27183, - [SMALL_STATE(491)] = 27236, - [SMALL_STATE(492)] = 27289, - [SMALL_STATE(493)] = 27342, - [SMALL_STATE(494)] = 27395, - [SMALL_STATE(495)] = 27448, - [SMALL_STATE(496)] = 27501, - [SMALL_STATE(497)] = 27554, - [SMALL_STATE(498)] = 27607, - [SMALL_STATE(499)] = 27660, - [SMALL_STATE(500)] = 27713, - [SMALL_STATE(501)] = 27766, - [SMALL_STATE(502)] = 27819, - [SMALL_STATE(503)] = 27872, - [SMALL_STATE(504)] = 27925, - [SMALL_STATE(505)] = 27978, - [SMALL_STATE(506)] = 28031, - [SMALL_STATE(507)] = 28084, - [SMALL_STATE(508)] = 28137, - [SMALL_STATE(509)] = 28190, - [SMALL_STATE(510)] = 28243, - [SMALL_STATE(511)] = 28296, - [SMALL_STATE(512)] = 28349, - [SMALL_STATE(513)] = 28402, - [SMALL_STATE(514)] = 28455, - [SMALL_STATE(515)] = 28508, - [SMALL_STATE(516)] = 28561, - [SMALL_STATE(517)] = 28614, - [SMALL_STATE(518)] = 28667, - [SMALL_STATE(519)] = 28720, - [SMALL_STATE(520)] = 28773, - [SMALL_STATE(521)] = 28826, - [SMALL_STATE(522)] = 28879, - [SMALL_STATE(523)] = 28932, - [SMALL_STATE(524)] = 28985, - [SMALL_STATE(525)] = 29038, - [SMALL_STATE(526)] = 29091, - [SMALL_STATE(527)] = 29144, - [SMALL_STATE(528)] = 29197, - [SMALL_STATE(529)] = 29250, - [SMALL_STATE(530)] = 29303, - [SMALL_STATE(531)] = 29356, - [SMALL_STATE(532)] = 29409, - [SMALL_STATE(533)] = 29462, - [SMALL_STATE(534)] = 29515, - [SMALL_STATE(535)] = 29568, - [SMALL_STATE(536)] = 29621, - [SMALL_STATE(537)] = 29674, - [SMALL_STATE(538)] = 29727, - [SMALL_STATE(539)] = 29780, - [SMALL_STATE(540)] = 29833, - [SMALL_STATE(541)] = 29886, - [SMALL_STATE(542)] = 29939, - [SMALL_STATE(543)] = 29992, - [SMALL_STATE(544)] = 30077, - [SMALL_STATE(545)] = 30130, - [SMALL_STATE(546)] = 30183, - [SMALL_STATE(547)] = 30236, - [SMALL_STATE(548)] = 30289, - [SMALL_STATE(549)] = 30342, - [SMALL_STATE(550)] = 30395, - [SMALL_STATE(551)] = 30448, - [SMALL_STATE(552)] = 30501, - [SMALL_STATE(553)] = 30554, - [SMALL_STATE(554)] = 30607, - [SMALL_STATE(555)] = 30660, - [SMALL_STATE(556)] = 30713, - [SMALL_STATE(557)] = 30766, - [SMALL_STATE(558)] = 30853, - [SMALL_STATE(559)] = 30906, - [SMALL_STATE(560)] = 30990, - [SMALL_STATE(561)] = 31074, - [SMALL_STATE(562)] = 31158, - [SMALL_STATE(563)] = 31242, - [SMALL_STATE(564)] = 31326, - [SMALL_STATE(565)] = 31410, - [SMALL_STATE(566)] = 31465, - [SMALL_STATE(567)] = 31520, - [SMALL_STATE(568)] = 31601, - [SMALL_STATE(569)] = 31682, - [SMALL_STATE(570)] = 31737, - [SMALL_STATE(571)] = 31786, - [SMALL_STATE(572)] = 31861, - [SMALL_STATE(573)] = 31910, - [SMALL_STATE(574)] = 31958, - [SMALL_STATE(575)] = 32006, - [SMALL_STATE(576)] = 32054, - [SMALL_STATE(577)] = 32102, - [SMALL_STATE(578)] = 32150, - [SMALL_STATE(579)] = 32198, - [SMALL_STATE(580)] = 32246, - [SMALL_STATE(581)] = 32294, - [SMALL_STATE(582)] = 32342, - [SMALL_STATE(583)] = 32390, - [SMALL_STATE(584)] = 32438, - [SMALL_STATE(585)] = 32486, - [SMALL_STATE(586)] = 32534, - [SMALL_STATE(587)] = 32582, - [SMALL_STATE(588)] = 32630, - [SMALL_STATE(589)] = 32678, - [SMALL_STATE(590)] = 32726, - [SMALL_STATE(591)] = 32808, - [SMALL_STATE(592)] = 32856, - [SMALL_STATE(593)] = 32904, - [SMALL_STATE(594)] = 32952, - [SMALL_STATE(595)] = 33000, - [SMALL_STATE(596)] = 33082, - [SMALL_STATE(597)] = 33130, - [SMALL_STATE(598)] = 33178, - [SMALL_STATE(599)] = 33226, - [SMALL_STATE(600)] = 33274, - [SMALL_STATE(601)] = 33322, - [SMALL_STATE(602)] = 33370, - [SMALL_STATE(603)] = 33418, - [SMALL_STATE(604)] = 33466, - [SMALL_STATE(605)] = 33514, - [SMALL_STATE(606)] = 33562, - [SMALL_STATE(607)] = 33625, - [SMALL_STATE(608)] = 33694, - [SMALL_STATE(609)] = 33751, - [SMALL_STATE(610)] = 33814, - [SMALL_STATE(611)] = 33883, - [SMALL_STATE(612)] = 33954, - [SMALL_STATE(613)] = 34023, - [SMALL_STATE(614)] = 34084, - [SMALL_STATE(615)] = 34141, - [SMALL_STATE(616)] = 34208, - [SMALL_STATE(617)] = 34273, - [SMALL_STATE(618)] = 34342, - [SMALL_STATE(619)] = 34399, - [SMALL_STATE(620)] = 34468, - [SMALL_STATE(621)] = 34525, - [SMALL_STATE(622)] = 34596, - [SMALL_STATE(623)] = 34665, - [SMALL_STATE(624)] = 34726, - [SMALL_STATE(625)] = 34783, - [SMALL_STATE(626)] = 34850, - [SMALL_STATE(627)] = 34915, - [SMALL_STATE(628)] = 34986, - [SMALL_STATE(629)] = 35057, - [SMALL_STATE(630)] = 35114, - [SMALL_STATE(631)] = 35171, - [SMALL_STATE(632)] = 35228, - [SMALL_STATE(633)] = 35299, - [SMALL_STATE(634)] = 35370, - [SMALL_STATE(635)] = 35416, - [SMALL_STATE(636)] = 35482, - [SMALL_STATE(637)] = 35548, - [SMALL_STATE(638)] = 35614, - [SMALL_STATE(639)] = 35680, - [SMALL_STATE(640)] = 35746, - [SMALL_STATE(641)] = 35812, - [SMALL_STATE(642)] = 35878, - [SMALL_STATE(643)] = 35944, - [SMALL_STATE(644)] = 35994, - [SMALL_STATE(645)] = 36060, - [SMALL_STATE(646)] = 36126, - [SMALL_STATE(647)] = 36192, - [SMALL_STATE(648)] = 36242, - [SMALL_STATE(649)] = 36312, - [SMALL_STATE(650)] = 36382, - [SMALL_STATE(651)] = 36448, - [SMALL_STATE(652)] = 36514, - [SMALL_STATE(653)] = 36580, - [SMALL_STATE(654)] = 36646, - [SMALL_STATE(655)] = 36712, - [SMALL_STATE(656)] = 36778, - [SMALL_STATE(657)] = 36824, - [SMALL_STATE(658)] = 36872, - [SMALL_STATE(659)] = 36920, - [SMALL_STATE(660)] = 36986, - [SMALL_STATE(661)] = 37052, - [SMALL_STATE(662)] = 37118, - [SMALL_STATE(663)] = 37184, - [SMALL_STATE(664)] = 37250, - [SMALL_STATE(665)] = 37316, - [SMALL_STATE(666)] = 37382, - [SMALL_STATE(667)] = 37448, - [SMALL_STATE(668)] = 37514, - [SMALL_STATE(669)] = 37580, - [SMALL_STATE(670)] = 37646, - [SMALL_STATE(671)] = 37712, - [SMALL_STATE(672)] = 37760, - [SMALL_STATE(673)] = 37826, - [SMALL_STATE(674)] = 37892, - [SMALL_STATE(675)] = 37940, - [SMALL_STATE(676)] = 38006, - [SMALL_STATE(677)] = 38072, - [SMALL_STATE(678)] = 38138, - [SMALL_STATE(679)] = 38204, - [SMALL_STATE(680)] = 38270, - [SMALL_STATE(681)] = 38336, - [SMALL_STATE(682)] = 38402, - [SMALL_STATE(683)] = 38468, - [SMALL_STATE(684)] = 38534, - [SMALL_STATE(685)] = 38600, - [SMALL_STATE(686)] = 38666, - [SMALL_STATE(687)] = 38732, - [SMALL_STATE(688)] = 38798, - [SMALL_STATE(689)] = 38847, - [SMALL_STATE(690)] = 38926, - [SMALL_STATE(691)] = 38971, - [SMALL_STATE(692)] = 39016, - [SMALL_STATE(693)] = 39065, - [SMALL_STATE(694)] = 39114, - [SMALL_STATE(695)] = 39180, - [SMALL_STATE(696)] = 39224, - [SMALL_STATE(697)] = 39284, - [SMALL_STATE(698)] = 39352, - [SMALL_STATE(699)] = 39428, - [SMALL_STATE(700)] = 39476, - [SMALL_STATE(701)] = 39520, - [SMALL_STATE(702)] = 39588, - [SMALL_STATE(703)] = 39642, - [SMALL_STATE(704)] = 39710, - [SMALL_STATE(705)] = 39764, - [SMALL_STATE(706)] = 39828, - [SMALL_STATE(707)] = 39886, - [SMALL_STATE(708)] = 39948, - [SMALL_STATE(709)] = 40002, - [SMALL_STATE(710)] = 40056, - [SMALL_STATE(711)] = 40103, - [SMALL_STATE(712)] = 40156, - [SMALL_STATE(713)] = 40203, - [SMALL_STATE(714)] = 40262, - [SMALL_STATE(715)] = 40309, - [SMALL_STATE(716)] = 40354, - [SMALL_STATE(717)] = 40399, - [SMALL_STATE(718)] = 40442, - [SMALL_STATE(719)] = 40505, - [SMALL_STATE(720)] = 40572, - [SMALL_STATE(721)] = 40625, - [SMALL_STATE(722)] = 40692, - [SMALL_STATE(723)] = 40737, - [SMALL_STATE(724)] = 40782, - [SMALL_STATE(725)] = 40825, - [SMALL_STATE(726)] = 40872, - [SMALL_STATE(727)] = 40917, - [SMALL_STATE(728)] = 40970, - [SMALL_STATE(729)] = 41015, - [SMALL_STATE(730)] = 41082, - [SMALL_STATE(731)] = 41143, - [SMALL_STATE(732)] = 41208, - [SMALL_STATE(733)] = 41253, - [SMALL_STATE(734)] = 41310, - [SMALL_STATE(735)] = 41363, - [SMALL_STATE(736)] = 41408, - [SMALL_STATE(737)] = 41450, - [SMALL_STATE(738)] = 41492, - [SMALL_STATE(739)] = 41534, - [SMALL_STATE(740)] = 41576, - [SMALL_STATE(741)] = 41618, - [SMALL_STATE(742)] = 41662, - [SMALL_STATE(743)] = 41706, - [SMALL_STATE(744)] = 41750, - [SMALL_STATE(745)] = 41792, - [SMALL_STATE(746)] = 41834, - [SMALL_STATE(747)] = 41876, - [SMALL_STATE(748)] = 41918, - [SMALL_STATE(749)] = 41960, - [SMALL_STATE(750)] = 42002, - [SMALL_STATE(751)] = 42044, - [SMALL_STATE(752)] = 42086, - [SMALL_STATE(753)] = 42128, - [SMALL_STATE(754)] = 42170, - [SMALL_STATE(755)] = 42212, - [SMALL_STATE(756)] = 42254, - [SMALL_STATE(757)] = 42296, - [SMALL_STATE(758)] = 42338, - [SMALL_STATE(759)] = 42380, - [SMALL_STATE(760)] = 42422, - [SMALL_STATE(761)] = 42464, - [SMALL_STATE(762)] = 42506, - [SMALL_STATE(763)] = 42548, - [SMALL_STATE(764)] = 42590, - [SMALL_STATE(765)] = 42632, - [SMALL_STATE(766)] = 42674, - [SMALL_STATE(767)] = 42716, - [SMALL_STATE(768)] = 42758, - [SMALL_STATE(769)] = 42800, - [SMALL_STATE(770)] = 42844, - [SMALL_STATE(771)] = 42888, - [SMALL_STATE(772)] = 42930, - [SMALL_STATE(773)] = 42972, - [SMALL_STATE(774)] = 43014, - [SMALL_STATE(775)] = 43055, - [SMALL_STATE(776)] = 43096, - [SMALL_STATE(777)] = 43137, - [SMALL_STATE(778)] = 43178, - [SMALL_STATE(779)] = 43219, - [SMALL_STATE(780)] = 43260, - [SMALL_STATE(781)] = 43301, - [SMALL_STATE(782)] = 43342, - [SMALL_STATE(783)] = 43383, - [SMALL_STATE(784)] = 43424, - [SMALL_STATE(785)] = 43465, - [SMALL_STATE(786)] = 43506, - [SMALL_STATE(787)] = 43547, - [SMALL_STATE(788)] = 43588, - [SMALL_STATE(789)] = 43629, - [SMALL_STATE(790)] = 43670, - [SMALL_STATE(791)] = 43711, - [SMALL_STATE(792)] = 43752, - [SMALL_STATE(793)] = 43793, - [SMALL_STATE(794)] = 43834, - [SMALL_STATE(795)] = 43879, - [SMALL_STATE(796)] = 43924, - [SMALL_STATE(797)] = 43965, - [SMALL_STATE(798)] = 44006, - [SMALL_STATE(799)] = 44047, - [SMALL_STATE(800)] = 44088, - [SMALL_STATE(801)] = 44129, - [SMALL_STATE(802)] = 44170, - [SMALL_STATE(803)] = 44211, - [SMALL_STATE(804)] = 44252, - [SMALL_STATE(805)] = 44293, - [SMALL_STATE(806)] = 44334, - [SMALL_STATE(807)] = 44375, - [SMALL_STATE(808)] = 44416, - [SMALL_STATE(809)] = 44457, - [SMALL_STATE(810)] = 44531, - [SMALL_STATE(811)] = 44605, - [SMALL_STATE(812)] = 44679, - [SMALL_STATE(813)] = 44753, - [SMALL_STATE(814)] = 44826, - [SMALL_STATE(815)] = 44897, - [SMALL_STATE(816)] = 44968, - [SMALL_STATE(817)] = 45039, - [SMALL_STATE(818)] = 45110, - [SMALL_STATE(819)] = 45181, - [SMALL_STATE(820)] = 45253, - [SMALL_STATE(821)] = 45325, - [SMALL_STATE(822)] = 45393, - [SMALL_STATE(823)] = 45465, - [SMALL_STATE(824)] = 45531, - [SMALL_STATE(825)] = 45594, - [SMALL_STATE(826)] = 45657, - [SMALL_STATE(827)] = 45712, - [SMALL_STATE(828)] = 45767, - [SMALL_STATE(829)] = 45807, - [SMALL_STATE(830)] = 45847, - [SMALL_STATE(831)] = 45887, - [SMALL_STATE(832)] = 45927, - [SMALL_STATE(833)] = 45957, - [SMALL_STATE(834)] = 45982, - [SMALL_STATE(835)] = 46007, - [SMALL_STATE(836)] = 46044, - [SMALL_STATE(837)] = 46069, - [SMALL_STATE(838)] = 46106, - [SMALL_STATE(839)] = 46135, - [SMALL_STATE(840)] = 46164, - [SMALL_STATE(841)] = 46189, - [SMALL_STATE(842)] = 46223, - [SMALL_STATE(843)] = 46251, - [SMALL_STATE(844)] = 46285, - [SMALL_STATE(845)] = 46331, - [SMALL_STATE(846)] = 46374, - [SMALL_STATE(847)] = 46417, - [SMALL_STATE(848)] = 46448, - [SMALL_STATE(849)] = 46491, - [SMALL_STATE(850)] = 46534, - [SMALL_STATE(851)] = 46577, - [SMALL_STATE(852)] = 46617, - [SMALL_STATE(853)] = 46663, - [SMALL_STATE(854)] = 46709, - [SMALL_STATE(855)] = 46755, - [SMALL_STATE(856)] = 46780, - [SMALL_STATE(857)] = 46817, - [SMALL_STATE(858)] = 46854, - [SMALL_STATE(859)] = 46891, - [SMALL_STATE(860)] = 46928, - [SMALL_STATE(861)] = 46950, - [SMALL_STATE(862)] = 46984, - [SMALL_STATE(863)] = 47018, - [SMALL_STATE(864)] = 47040, - [SMALL_STATE(865)] = 47077, - [SMALL_STATE(866)] = 47099, - [SMALL_STATE(867)] = 47118, - [SMALL_STATE(868)] = 47155, - [SMALL_STATE(869)] = 47192, - [SMALL_STATE(870)] = 47215, - [SMALL_STATE(871)] = 47242, - [SMALL_STATE(872)] = 47263, - [SMALL_STATE(873)] = 47286, - [SMALL_STATE(874)] = 47307, - [SMALL_STATE(875)] = 47328, - [SMALL_STATE(876)] = 47351, - [SMALL_STATE(877)] = 47374, - [SMALL_STATE(878)] = 47399, - [SMALL_STATE(879)] = 47422, - [SMALL_STATE(880)] = 47445, - [SMALL_STATE(881)] = 47466, - [SMALL_STATE(882)] = 47489, - [SMALL_STATE(883)] = 47506, - [SMALL_STATE(884)] = 47529, - [SMALL_STATE(885)] = 47566, - [SMALL_STATE(886)] = 47591, - [SMALL_STATE(887)] = 47612, - [SMALL_STATE(888)] = 47637, - [SMALL_STATE(889)] = 47674, - [SMALL_STATE(890)] = 47704, - [SMALL_STATE(891)] = 47734, - [SMALL_STATE(892)] = 47764, - [SMALL_STATE(893)] = 47794, - [SMALL_STATE(894)] = 47828, - [SMALL_STATE(895)] = 47862, - [SMALL_STATE(896)] = 47896, - [SMALL_STATE(897)] = 47914, - [SMALL_STATE(898)] = 47932, - [SMALL_STATE(899)] = 47954, - [SMALL_STATE(900)] = 47976, - [SMALL_STATE(901)] = 48010, - [SMALL_STATE(902)] = 48044, - [SMALL_STATE(903)] = 48066, - [SMALL_STATE(904)] = 48096, - [SMALL_STATE(905)] = 48126, - [SMALL_STATE(906)] = 48160, - [SMALL_STATE(907)] = 48194, - [SMALL_STATE(908)] = 48224, - [SMALL_STATE(909)] = 48246, - [SMALL_STATE(910)] = 48276, - [SMALL_STATE(911)] = 48310, - [SMALL_STATE(912)] = 48344, - [SMALL_STATE(913)] = 48374, - [SMALL_STATE(914)] = 48393, - [SMALL_STATE(915)] = 48412, - [SMALL_STATE(916)] = 48431, - [SMALL_STATE(917)] = 48454, - [SMALL_STATE(918)] = 48473, - [SMALL_STATE(919)] = 48498, - [SMALL_STATE(920)] = 48521, - [SMALL_STATE(921)] = 48540, - [SMALL_STATE(922)] = 48559, - [SMALL_STATE(923)] = 48582, - [SMALL_STATE(924)] = 48596, - [SMALL_STATE(925)] = 48610, - [SMALL_STATE(926)] = 48628, - [SMALL_STATE(927)] = 48642, - [SMALL_STATE(928)] = 48656, - [SMALL_STATE(929)] = 48674, - [SMALL_STATE(930)] = 48688, - [SMALL_STATE(931)] = 48702, - [SMALL_STATE(932)] = 48720, - [SMALL_STATE(933)] = 48744, - [SMALL_STATE(934)] = 48762, - [SMALL_STATE(935)] = 48776, - [SMALL_STATE(936)] = 48790, - [SMALL_STATE(937)] = 48808, - [SMALL_STATE(938)] = 48822, - [SMALL_STATE(939)] = 48840, - [SMALL_STATE(940)] = 48858, - [SMALL_STATE(941)] = 48872, - [SMALL_STATE(942)] = 48890, - [SMALL_STATE(943)] = 48904, - [SMALL_STATE(944)] = 48918, - [SMALL_STATE(945)] = 48932, - [SMALL_STATE(946)] = 48950, - [SMALL_STATE(947)] = 48970, - [SMALL_STATE(948)] = 48984, - [SMALL_STATE(949)] = 48998, - [SMALL_STATE(950)] = 49012, - [SMALL_STATE(951)] = 49026, - [SMALL_STATE(952)] = 49040, - [SMALL_STATE(953)] = 49060, - [SMALL_STATE(954)] = 49074, - [SMALL_STATE(955)] = 49088, - [SMALL_STATE(956)] = 49102, - [SMALL_STATE(957)] = 49128, - [SMALL_STATE(958)] = 49152, - [SMALL_STATE(959)] = 49170, - [SMALL_STATE(960)] = 49190, - [SMALL_STATE(961)] = 49210, - [SMALL_STATE(962)] = 49224, - [SMALL_STATE(963)] = 49238, - [SMALL_STATE(964)] = 49256, - [SMALL_STATE(965)] = 49270, - [SMALL_STATE(966)] = 49292, - [SMALL_STATE(967)] = 49308, - [SMALL_STATE(968)] = 49326, - [SMALL_STATE(969)] = 49342, - [SMALL_STATE(970)] = 49361, - [SMALL_STATE(971)] = 49376, - [SMALL_STATE(972)] = 49393, - [SMALL_STATE(973)] = 49408, - [SMALL_STATE(974)] = 49429, - [SMALL_STATE(975)] = 49452, - [SMALL_STATE(976)] = 49473, - [SMALL_STATE(977)] = 49492, - [SMALL_STATE(978)] = 49515, - [SMALL_STATE(979)] = 49534, - [SMALL_STATE(980)] = 49547, - [SMALL_STATE(981)] = 49570, - [SMALL_STATE(982)] = 49589, - [SMALL_STATE(983)] = 49602, - [SMALL_STATE(984)] = 49621, - [SMALL_STATE(985)] = 49640, - [SMALL_STATE(986)] = 49659, - [SMALL_STATE(987)] = 49672, - [SMALL_STATE(988)] = 49693, - [SMALL_STATE(989)] = 49714, - [SMALL_STATE(990)] = 49727, - [SMALL_STATE(991)] = 49752, - [SMALL_STATE(992)] = 49777, - [SMALL_STATE(993)] = 49798, - [SMALL_STATE(994)] = 49821, - [SMALL_STATE(995)] = 49844, - [SMALL_STATE(996)] = 49863, - [SMALL_STATE(997)] = 49888, - [SMALL_STATE(998)] = 49911, - [SMALL_STATE(999)] = 49930, - [SMALL_STATE(1000)] = 49953, - [SMALL_STATE(1001)] = 49966, - [SMALL_STATE(1002)] = 49983, - [SMALL_STATE(1003)] = 50004, - [SMALL_STATE(1004)] = 50017, - [SMALL_STATE(1005)] = 50040, - [SMALL_STATE(1006)] = 50053, - [SMALL_STATE(1007)] = 50072, - [SMALL_STATE(1008)] = 50089, - [SMALL_STATE(1009)] = 50112, - [SMALL_STATE(1010)] = 50133, - [SMALL_STATE(1011)] = 50158, - [SMALL_STATE(1012)] = 50180, - [SMALL_STATE(1013)] = 50200, - [SMALL_STATE(1014)] = 50214, - [SMALL_STATE(1015)] = 50236, - [SMALL_STATE(1016)] = 50248, - [SMALL_STATE(1017)] = 50266, - [SMALL_STATE(1018)] = 50282, - [SMALL_STATE(1019)] = 50300, - [SMALL_STATE(1020)] = 50316, - [SMALL_STATE(1021)] = 50330, - [SMALL_STATE(1022)] = 50348, - [SMALL_STATE(1023)] = 50370, - [SMALL_STATE(1024)] = 50384, - [SMALL_STATE(1025)] = 50402, - [SMALL_STATE(1026)] = 50420, - [SMALL_STATE(1027)] = 50442, - [SMALL_STATE(1028)] = 50454, - [SMALL_STATE(1029)] = 50474, - [SMALL_STATE(1030)] = 50490, - [SMALL_STATE(1031)] = 50512, - [SMALL_STATE(1032)] = 50528, - [SMALL_STATE(1033)] = 50544, - [SMALL_STATE(1034)] = 50564, - [SMALL_STATE(1035)] = 50580, - [SMALL_STATE(1036)] = 50598, - [SMALL_STATE(1037)] = 50612, - [SMALL_STATE(1038)] = 50630, - [SMALL_STATE(1039)] = 50650, - [SMALL_STATE(1040)] = 50672, - [SMALL_STATE(1041)] = 50688, - [SMALL_STATE(1042)] = 50702, - [SMALL_STATE(1043)] = 50716, - [SMALL_STATE(1044)] = 50736, - [SMALL_STATE(1045)] = 50756, - [SMALL_STATE(1046)] = 50778, - [SMALL_STATE(1047)] = 50797, - [SMALL_STATE(1048)] = 50816, - [SMALL_STATE(1049)] = 50827, - [SMALL_STATE(1050)] = 50844, - [SMALL_STATE(1051)] = 50861, - [SMALL_STATE(1052)] = 50876, - [SMALL_STATE(1053)] = 50893, - [SMALL_STATE(1054)] = 50912, - [SMALL_STATE(1055)] = 50931, - [SMALL_STATE(1056)] = 50948, - [SMALL_STATE(1057)] = 50965, - [SMALL_STATE(1058)] = 50982, - [SMALL_STATE(1059)] = 51001, - [SMALL_STATE(1060)] = 51016, - [SMALL_STATE(1061)] = 51035, - [SMALL_STATE(1062)] = 51050, - [SMALL_STATE(1063)] = 51061, - [SMALL_STATE(1064)] = 51078, - [SMALL_STATE(1065)] = 51095, - [SMALL_STATE(1066)] = 51110, - [SMALL_STATE(1067)] = 51127, - [SMALL_STATE(1068)] = 51146, - [SMALL_STATE(1069)] = 51163, - [SMALL_STATE(1070)] = 51182, - [SMALL_STATE(1071)] = 51199, - [SMALL_STATE(1072)] = 51216, - [SMALL_STATE(1073)] = 51233, - [SMALL_STATE(1074)] = 51250, - [SMALL_STATE(1075)] = 51267, - [SMALL_STATE(1076)] = 51282, - [SMALL_STATE(1077)] = 51299, - [SMALL_STATE(1078)] = 51318, - [SMALL_STATE(1079)] = 51329, - [SMALL_STATE(1080)] = 51344, - [SMALL_STATE(1081)] = 51363, - [SMALL_STATE(1082)] = 51378, - [SMALL_STATE(1083)] = 51395, - [SMALL_STATE(1084)] = 51412, - [SMALL_STATE(1085)] = 51426, - [SMALL_STATE(1086)] = 51442, - [SMALL_STATE(1087)] = 51456, - [SMALL_STATE(1088)] = 51470, - [SMALL_STATE(1089)] = 51486, - [SMALL_STATE(1090)] = 51502, - [SMALL_STATE(1091)] = 51518, - [SMALL_STATE(1092)] = 51534, - [SMALL_STATE(1093)] = 51548, - [SMALL_STATE(1094)] = 51558, - [SMALL_STATE(1095)] = 51574, - [SMALL_STATE(1096)] = 51588, - [SMALL_STATE(1097)] = 51604, - [SMALL_STATE(1098)] = 51618, - [SMALL_STATE(1099)] = 51632, - [SMALL_STATE(1100)] = 51646, - [SMALL_STATE(1101)] = 51662, - [SMALL_STATE(1102)] = 51676, - [SMALL_STATE(1103)] = 51690, - [SMALL_STATE(1104)] = 51704, - [SMALL_STATE(1105)] = 51720, - [SMALL_STATE(1106)] = 51734, - [SMALL_STATE(1107)] = 51748, - [SMALL_STATE(1108)] = 51762, - [SMALL_STATE(1109)] = 51776, - [SMALL_STATE(1110)] = 51790, - [SMALL_STATE(1111)] = 51806, - [SMALL_STATE(1112)] = 51820, - [SMALL_STATE(1113)] = 51834, - [SMALL_STATE(1114)] = 51844, - [SMALL_STATE(1115)] = 51854, - [SMALL_STATE(1116)] = 51870, - [SMALL_STATE(1117)] = 51884, - [SMALL_STATE(1118)] = 51898, - [SMALL_STATE(1119)] = 51908, - [SMALL_STATE(1120)] = 51918, - [SMALL_STATE(1121)] = 51932, - [SMALL_STATE(1122)] = 51948, - [SMALL_STATE(1123)] = 51962, - [SMALL_STATE(1124)] = 51978, - [SMALL_STATE(1125)] = 51990, - [SMALL_STATE(1126)] = 52006, - [SMALL_STATE(1127)] = 52020, - [SMALL_STATE(1128)] = 52034, - [SMALL_STATE(1129)] = 52044, - [SMALL_STATE(1130)] = 52060, - [SMALL_STATE(1131)] = 52076, - [SMALL_STATE(1132)] = 52092, - [SMALL_STATE(1133)] = 52108, - [SMALL_STATE(1134)] = 52122, - [SMALL_STATE(1135)] = 52138, - [SMALL_STATE(1136)] = 52154, - [SMALL_STATE(1137)] = 52168, - [SMALL_STATE(1138)] = 52184, - [SMALL_STATE(1139)] = 52198, - [SMALL_STATE(1140)] = 52212, - [SMALL_STATE(1141)] = 52228, - [SMALL_STATE(1142)] = 52240, - [SMALL_STATE(1143)] = 52256, - [SMALL_STATE(1144)] = 52272, - [SMALL_STATE(1145)] = 52286, - [SMALL_STATE(1146)] = 52302, - [SMALL_STATE(1147)] = 52318, - [SMALL_STATE(1148)] = 52334, - [SMALL_STATE(1149)] = 52350, - [SMALL_STATE(1150)] = 52364, - [SMALL_STATE(1151)] = 52380, - [SMALL_STATE(1152)] = 52394, - [SMALL_STATE(1153)] = 52410, - [SMALL_STATE(1154)] = 52421, - [SMALL_STATE(1155)] = 52430, - [SMALL_STATE(1156)] = 52443, - [SMALL_STATE(1157)] = 52456, - [SMALL_STATE(1158)] = 52469, - [SMALL_STATE(1159)] = 52482, - [SMALL_STATE(1160)] = 52495, - [SMALL_STATE(1161)] = 52508, - [SMALL_STATE(1162)] = 52517, - [SMALL_STATE(1163)] = 52530, - [SMALL_STATE(1164)] = 52543, - [SMALL_STATE(1165)] = 52556, - [SMALL_STATE(1166)] = 52569, - [SMALL_STATE(1167)] = 52582, - [SMALL_STATE(1168)] = 52595, - [SMALL_STATE(1169)] = 52606, - [SMALL_STATE(1170)] = 52619, - [SMALL_STATE(1171)] = 52632, - [SMALL_STATE(1172)] = 52645, - [SMALL_STATE(1173)] = 52658, - [SMALL_STATE(1174)] = 52671, - [SMALL_STATE(1175)] = 52684, - [SMALL_STATE(1176)] = 52695, - [SMALL_STATE(1177)] = 52708, - [SMALL_STATE(1178)] = 52721, - [SMALL_STATE(1179)] = 52730, - [SMALL_STATE(1180)] = 52743, - [SMALL_STATE(1181)] = 52754, - [SMALL_STATE(1182)] = 52767, - [SMALL_STATE(1183)] = 52776, - [SMALL_STATE(1184)] = 52789, - [SMALL_STATE(1185)] = 52802, - [SMALL_STATE(1186)] = 52813, - [SMALL_STATE(1187)] = 52826, - [SMALL_STATE(1188)] = 52839, - [SMALL_STATE(1189)] = 52852, - [SMALL_STATE(1190)] = 52865, - [SMALL_STATE(1191)] = 52878, - [SMALL_STATE(1192)] = 52887, - [SMALL_STATE(1193)] = 52896, - [SMALL_STATE(1194)] = 52905, - [SMALL_STATE(1195)] = 52918, - [SMALL_STATE(1196)] = 52931, - [SMALL_STATE(1197)] = 52944, - [SMALL_STATE(1198)] = 52957, - [SMALL_STATE(1199)] = 52970, - [SMALL_STATE(1200)] = 52983, - [SMALL_STATE(1201)] = 52992, - [SMALL_STATE(1202)] = 53005, - [SMALL_STATE(1203)] = 53018, - [SMALL_STATE(1204)] = 53031, - [SMALL_STATE(1205)] = 53040, - [SMALL_STATE(1206)] = 53053, - [SMALL_STATE(1207)] = 53066, - [SMALL_STATE(1208)] = 53079, - [SMALL_STATE(1209)] = 53092, - [SMALL_STATE(1210)] = 53101, - [SMALL_STATE(1211)] = 53114, - [SMALL_STATE(1212)] = 53127, - [SMALL_STATE(1213)] = 53140, - [SMALL_STATE(1214)] = 53153, - [SMALL_STATE(1215)] = 53166, - [SMALL_STATE(1216)] = 53179, - [SMALL_STATE(1217)] = 53192, - [SMALL_STATE(1218)] = 53203, - [SMALL_STATE(1219)] = 53216, - [SMALL_STATE(1220)] = 53227, - [SMALL_STATE(1221)] = 53240, - [SMALL_STATE(1222)] = 53253, - [SMALL_STATE(1223)] = 53266, - [SMALL_STATE(1224)] = 53279, - [SMALL_STATE(1225)] = 53292, - [SMALL_STATE(1226)] = 53305, - [SMALL_STATE(1227)] = 53318, - [SMALL_STATE(1228)] = 53331, - [SMALL_STATE(1229)] = 53344, - [SMALL_STATE(1230)] = 53357, - [SMALL_STATE(1231)] = 53370, - [SMALL_STATE(1232)] = 53383, - [SMALL_STATE(1233)] = 53396, - [SMALL_STATE(1234)] = 53409, - [SMALL_STATE(1235)] = 53422, - [SMALL_STATE(1236)] = 53431, - [SMALL_STATE(1237)] = 53444, - [SMALL_STATE(1238)] = 53457, - [SMALL_STATE(1239)] = 53470, - [SMALL_STATE(1240)] = 53483, - [SMALL_STATE(1241)] = 53496, - [SMALL_STATE(1242)] = 53509, - [SMALL_STATE(1243)] = 53522, - [SMALL_STATE(1244)] = 53535, - [SMALL_STATE(1245)] = 53544, - [SMALL_STATE(1246)] = 53557, - [SMALL_STATE(1247)] = 53570, - [SMALL_STATE(1248)] = 53583, - [SMALL_STATE(1249)] = 53596, - [SMALL_STATE(1250)] = 53609, - [SMALL_STATE(1251)] = 53622, - [SMALL_STATE(1252)] = 53635, - [SMALL_STATE(1253)] = 53648, - [SMALL_STATE(1254)] = 53659, - [SMALL_STATE(1255)] = 53670, - [SMALL_STATE(1256)] = 53681, - [SMALL_STATE(1257)] = 53690, - [SMALL_STATE(1258)] = 53703, - [SMALL_STATE(1259)] = 53712, - [SMALL_STATE(1260)] = 53723, - [SMALL_STATE(1261)] = 53736, - [SMALL_STATE(1262)] = 53749, - [SMALL_STATE(1263)] = 53762, - [SMALL_STATE(1264)] = 53775, - [SMALL_STATE(1265)] = 53786, - [SMALL_STATE(1266)] = 53799, - [SMALL_STATE(1267)] = 53812, - [SMALL_STATE(1268)] = 53825, - [SMALL_STATE(1269)] = 53834, - [SMALL_STATE(1270)] = 53847, - [SMALL_STATE(1271)] = 53860, - [SMALL_STATE(1272)] = 53873, - [SMALL_STATE(1273)] = 53886, - [SMALL_STATE(1274)] = 53899, - [SMALL_STATE(1275)] = 53912, - [SMALL_STATE(1276)] = 53925, - [SMALL_STATE(1277)] = 53938, - [SMALL_STATE(1278)] = 53951, - [SMALL_STATE(1279)] = 53964, - [SMALL_STATE(1280)] = 53977, - [SMALL_STATE(1281)] = 53990, - [SMALL_STATE(1282)] = 54003, - [SMALL_STATE(1283)] = 54016, - [SMALL_STATE(1284)] = 54026, - [SMALL_STATE(1285)] = 54036, - [SMALL_STATE(1286)] = 54044, - [SMALL_STATE(1287)] = 54052, - [SMALL_STATE(1288)] = 54062, - [SMALL_STATE(1289)] = 54072, - [SMALL_STATE(1290)] = 54082, - [SMALL_STATE(1291)] = 54092, - [SMALL_STATE(1292)] = 54100, - [SMALL_STATE(1293)] = 54108, - [SMALL_STATE(1294)] = 54116, - [SMALL_STATE(1295)] = 54124, - [SMALL_STATE(1296)] = 54132, - [SMALL_STATE(1297)] = 54142, - [SMALL_STATE(1298)] = 54150, - [SMALL_STATE(1299)] = 54158, - [SMALL_STATE(1300)] = 54168, - [SMALL_STATE(1301)] = 54176, - [SMALL_STATE(1302)] = 54184, - [SMALL_STATE(1303)] = 54194, - [SMALL_STATE(1304)] = 54204, - [SMALL_STATE(1305)] = 54212, - [SMALL_STATE(1306)] = 54220, - [SMALL_STATE(1307)] = 54228, - [SMALL_STATE(1308)] = 54236, - [SMALL_STATE(1309)] = 54244, - [SMALL_STATE(1310)] = 54254, - [SMALL_STATE(1311)] = 54264, - [SMALL_STATE(1312)] = 54272, - [SMALL_STATE(1313)] = 54280, - [SMALL_STATE(1314)] = 54288, - [SMALL_STATE(1315)] = 54296, - [SMALL_STATE(1316)] = 54304, - [SMALL_STATE(1317)] = 54312, - [SMALL_STATE(1318)] = 54322, - [SMALL_STATE(1319)] = 54330, - [SMALL_STATE(1320)] = 54340, - [SMALL_STATE(1321)] = 54348, - [SMALL_STATE(1322)] = 54356, - [SMALL_STATE(1323)] = 54364, - [SMALL_STATE(1324)] = 54374, - [SMALL_STATE(1325)] = 54384, - [SMALL_STATE(1326)] = 54392, - [SMALL_STATE(1327)] = 54400, - [SMALL_STATE(1328)] = 54408, - [SMALL_STATE(1329)] = 54418, - [SMALL_STATE(1330)] = 54428, - [SMALL_STATE(1331)] = 54438, - [SMALL_STATE(1332)] = 54448, - [SMALL_STATE(1333)] = 54456, - [SMALL_STATE(1334)] = 54464, - [SMALL_STATE(1335)] = 54472, - [SMALL_STATE(1336)] = 54480, - [SMALL_STATE(1337)] = 54488, - [SMALL_STATE(1338)] = 54496, - [SMALL_STATE(1339)] = 54504, - [SMALL_STATE(1340)] = 54512, - [SMALL_STATE(1341)] = 54520, - [SMALL_STATE(1342)] = 54528, - [SMALL_STATE(1343)] = 54536, - [SMALL_STATE(1344)] = 54546, - [SMALL_STATE(1345)] = 54554, - [SMALL_STATE(1346)] = 54562, - [SMALL_STATE(1347)] = 54572, - [SMALL_STATE(1348)] = 54580, - [SMALL_STATE(1349)] = 54590, - [SMALL_STATE(1350)] = 54598, - [SMALL_STATE(1351)] = 54606, - [SMALL_STATE(1352)] = 54616, - [SMALL_STATE(1353)] = 54626, - [SMALL_STATE(1354)] = 54636, - [SMALL_STATE(1355)] = 54643, - [SMALL_STATE(1356)] = 54650, - [SMALL_STATE(1357)] = 54657, - [SMALL_STATE(1358)] = 54664, - [SMALL_STATE(1359)] = 54671, - [SMALL_STATE(1360)] = 54678, - [SMALL_STATE(1361)] = 54685, - [SMALL_STATE(1362)] = 54692, - [SMALL_STATE(1363)] = 54699, - [SMALL_STATE(1364)] = 54706, - [SMALL_STATE(1365)] = 54713, - [SMALL_STATE(1366)] = 54720, - [SMALL_STATE(1367)] = 54727, - [SMALL_STATE(1368)] = 54734, - [SMALL_STATE(1369)] = 54741, - [SMALL_STATE(1370)] = 54748, - [SMALL_STATE(1371)] = 54755, - [SMALL_STATE(1372)] = 54762, - [SMALL_STATE(1373)] = 54769, - [SMALL_STATE(1374)] = 54776, - [SMALL_STATE(1375)] = 54783, - [SMALL_STATE(1376)] = 54790, - [SMALL_STATE(1377)] = 54797, - [SMALL_STATE(1378)] = 54804, - [SMALL_STATE(1379)] = 54811, - [SMALL_STATE(1380)] = 54818, - [SMALL_STATE(1381)] = 54825, - [SMALL_STATE(1382)] = 54832, - [SMALL_STATE(1383)] = 54839, - [SMALL_STATE(1384)] = 54846, - [SMALL_STATE(1385)] = 54853, - [SMALL_STATE(1386)] = 54860, - [SMALL_STATE(1387)] = 54867, - [SMALL_STATE(1388)] = 54874, - [SMALL_STATE(1389)] = 54881, - [SMALL_STATE(1390)] = 54888, - [SMALL_STATE(1391)] = 54895, - [SMALL_STATE(1392)] = 54902, - [SMALL_STATE(1393)] = 54909, - [SMALL_STATE(1394)] = 54916, - [SMALL_STATE(1395)] = 54923, - [SMALL_STATE(1396)] = 54930, - [SMALL_STATE(1397)] = 54937, - [SMALL_STATE(1398)] = 54944, - [SMALL_STATE(1399)] = 54951, - [SMALL_STATE(1400)] = 54958, - [SMALL_STATE(1401)] = 54965, - [SMALL_STATE(1402)] = 54972, - [SMALL_STATE(1403)] = 54979, - [SMALL_STATE(1404)] = 54986, - [SMALL_STATE(1405)] = 54993, - [SMALL_STATE(1406)] = 55000, - [SMALL_STATE(1407)] = 55007, - [SMALL_STATE(1408)] = 55014, - [SMALL_STATE(1409)] = 55021, - [SMALL_STATE(1410)] = 55028, - [SMALL_STATE(1411)] = 55035, - [SMALL_STATE(1412)] = 55042, - [SMALL_STATE(1413)] = 55049, - [SMALL_STATE(1414)] = 55056, - [SMALL_STATE(1415)] = 55063, - [SMALL_STATE(1416)] = 55070, - [SMALL_STATE(1417)] = 55077, - [SMALL_STATE(1418)] = 55084, - [SMALL_STATE(1419)] = 55091, - [SMALL_STATE(1420)] = 55098, - [SMALL_STATE(1421)] = 55105, - [SMALL_STATE(1422)] = 55112, - [SMALL_STATE(1423)] = 55119, - [SMALL_STATE(1424)] = 55126, - [SMALL_STATE(1425)] = 55133, - [SMALL_STATE(1426)] = 55140, - [SMALL_STATE(1427)] = 55147, - [SMALL_STATE(1428)] = 55154, - [SMALL_STATE(1429)] = 55161, - [SMALL_STATE(1430)] = 55168, - [SMALL_STATE(1431)] = 55175, - [SMALL_STATE(1432)] = 55182, - [SMALL_STATE(1433)] = 55189, - [SMALL_STATE(1434)] = 55196, - [SMALL_STATE(1435)] = 55203, - [SMALL_STATE(1436)] = 55210, - [SMALL_STATE(1437)] = 55217, - [SMALL_STATE(1438)] = 55224, - [SMALL_STATE(1439)] = 55231, - [SMALL_STATE(1440)] = 55238, - [SMALL_STATE(1441)] = 55245, - [SMALL_STATE(1442)] = 55252, - [SMALL_STATE(1443)] = 55259, - [SMALL_STATE(1444)] = 55266, - [SMALL_STATE(1445)] = 55273, - [SMALL_STATE(1446)] = 55280, - [SMALL_STATE(1447)] = 55287, - [SMALL_STATE(1448)] = 55294, - [SMALL_STATE(1449)] = 55301, - [SMALL_STATE(1450)] = 55308, - [SMALL_STATE(1451)] = 55315, - [SMALL_STATE(1452)] = 55322, - [SMALL_STATE(1453)] = 55329, - [SMALL_STATE(1454)] = 55336, - [SMALL_STATE(1455)] = 55343, - [SMALL_STATE(1456)] = 55350, - [SMALL_STATE(1457)] = 55357, - [SMALL_STATE(1458)] = 55364, - [SMALL_STATE(1459)] = 55371, - [SMALL_STATE(1460)] = 55378, - [SMALL_STATE(1461)] = 55385, - [SMALL_STATE(1462)] = 55392, - [SMALL_STATE(1463)] = 55399, - [SMALL_STATE(1464)] = 55406, - [SMALL_STATE(1465)] = 55413, - [SMALL_STATE(1466)] = 55420, - [SMALL_STATE(1467)] = 55427, - [SMALL_STATE(1468)] = 55434, - [SMALL_STATE(1469)] = 55441, - [SMALL_STATE(1470)] = 55448, - [SMALL_STATE(1471)] = 55455, - [SMALL_STATE(1472)] = 55462, - [SMALL_STATE(1473)] = 55469, - [SMALL_STATE(1474)] = 55476, - [SMALL_STATE(1475)] = 55483, - [SMALL_STATE(1476)] = 55490, - [SMALL_STATE(1477)] = 55497, - [SMALL_STATE(1478)] = 55504, + [SMALL_STATE(152)] = 0, + [SMALL_STATE(153)] = 117, + [SMALL_STATE(154)] = 241, + [SMALL_STATE(155)] = 351, + [SMALL_STATE(156)] = 475, + [SMALL_STATE(157)] = 597, + [SMALL_STATE(158)] = 723, + [SMALL_STATE(159)] = 833, + [SMALL_STATE(160)] = 955, + [SMALL_STATE(161)] = 1077, + [SMALL_STATE(162)] = 1188, + [SMALL_STATE(163)] = 1309, + [SMALL_STATE(164)] = 1420, + [SMALL_STATE(165)] = 1541, + [SMALL_STATE(166)] = 1652, + [SMALL_STATE(167)] = 1773, + [SMALL_STATE(168)] = 1881, + [SMALL_STATE(169)] = 1993, + [SMALL_STATE(170)] = 2105, + [SMALL_STATE(171)] = 2213, + [SMALL_STATE(172)] = 2327, + [SMALL_STATE(173)] = 2439, + [SMALL_STATE(174)] = 2551, + [SMALL_STATE(175)] = 2659, + [SMALL_STATE(176)] = 2769, + [SMALL_STATE(177)] = 2879, + [SMALL_STATE(178)] = 2991, + [SMALL_STATE(179)] = 3103, + [SMALL_STATE(180)] = 3212, + [SMALL_STATE(181)] = 3321, + [SMALL_STATE(182)] = 3430, + [SMALL_STATE(183)] = 3541, + [SMALL_STATE(184)] = 3650, + [SMALL_STATE(185)] = 3759, + [SMALL_STATE(186)] = 3868, + [SMALL_STATE(187)] = 3977, + [SMALL_STATE(188)] = 4086, + [SMALL_STATE(189)] = 4191, + [SMALL_STATE(190)] = 4300, + [SMALL_STATE(191)] = 4409, + [SMALL_STATE(192)] = 4520, + [SMALL_STATE(193)] = 4629, + [SMALL_STATE(194)] = 4742, + [SMALL_STATE(195)] = 4847, + [SMALL_STATE(196)] = 4956, + [SMALL_STATE(197)] = 5067, + [SMALL_STATE(198)] = 5176, + [SMALL_STATE(199)] = 5285, + [SMALL_STATE(200)] = 5394, + [SMALL_STATE(201)] = 5499, + [SMALL_STATE(202)] = 5608, + [SMALL_STATE(203)] = 5717, + [SMALL_STATE(204)] = 5826, + [SMALL_STATE(205)] = 5935, + [SMALL_STATE(206)] = 6044, + [SMALL_STATE(207)] = 6155, + [SMALL_STATE(208)] = 6268, + [SMALL_STATE(209)] = 6373, + [SMALL_STATE(210)] = 6482, + [SMALL_STATE(211)] = 6591, + [SMALL_STATE(212)] = 6700, + [SMALL_STATE(213)] = 6806, + [SMALL_STATE(214)] = 6912, + [SMALL_STATE(215)] = 7018, + [SMALL_STATE(216)] = 7124, + [SMALL_STATE(217)] = 7230, + [SMALL_STATE(218)] = 7336, + [SMALL_STATE(219)] = 7430, + [SMALL_STATE(220)] = 7536, + [SMALL_STATE(221)] = 7642, + [SMALL_STATE(222)] = 7747, + [SMALL_STATE(223)] = 7850, + [SMALL_STATE(224)] = 7955, + [SMALL_STATE(225)] = 8060, + [SMALL_STATE(226)] = 8165, + [SMALL_STATE(227)] = 8270, + [SMALL_STATE(228)] = 8373, + [SMALL_STATE(229)] = 8475, + [SMALL_STATE(230)] = 8577, + [SMALL_STATE(231)] = 8679, + [SMALL_STATE(232)] = 8781, + [SMALL_STATE(233)] = 8883, + [SMALL_STATE(234)] = 8985, + [SMALL_STATE(235)] = 9087, + [SMALL_STATE(236)] = 9189, + [SMALL_STATE(237)] = 9291, + [SMALL_STATE(238)] = 9393, + [SMALL_STATE(239)] = 9495, + [SMALL_STATE(240)] = 9596, + [SMALL_STATE(241)] = 9669, + [SMALL_STATE(242)] = 9770, + [SMALL_STATE(243)] = 9843, + [SMALL_STATE(244)] = 9904, + [SMALL_STATE(245)] = 9977, + [SMALL_STATE(246)] = 10078, + [SMALL_STATE(247)] = 10139, + [SMALL_STATE(248)] = 10240, + [SMALL_STATE(249)] = 10313, + [SMALL_STATE(250)] = 10412, + [SMALL_STATE(251)] = 10513, + [SMALL_STATE(252)] = 10614, + [SMALL_STATE(253)] = 10715, + [SMALL_STATE(254)] = 10816, + [SMALL_STATE(255)] = 10915, + [SMALL_STATE(256)] = 11016, + [SMALL_STATE(257)] = 11089, + [SMALL_STATE(258)] = 11190, + [SMALL_STATE(259)] = 11289, + [SMALL_STATE(260)] = 11362, + [SMALL_STATE(261)] = 11435, + [SMALL_STATE(262)] = 11536, + [SMALL_STATE(263)] = 11609, + [SMALL_STATE(264)] = 11705, + [SMALL_STATE(265)] = 11801, + [SMALL_STATE(266)] = 11897, + [SMALL_STATE(267)] = 11995, + [SMALL_STATE(268)] = 12091, + [SMALL_STATE(269)] = 12189, + [SMALL_STATE(270)] = 12285, + [SMALL_STATE(271)] = 12381, + [SMALL_STATE(272)] = 12477, + [SMALL_STATE(273)] = 12573, + [SMALL_STATE(274)] = 12671, + [SMALL_STATE(275)] = 12769, + [SMALL_STATE(276)] = 12867, + [SMALL_STATE(277)] = 12963, + [SMALL_STATE(278)] = 13061, + [SMALL_STATE(279)] = 13157, + [SMALL_STATE(280)] = 13253, + [SMALL_STATE(281)] = 13351, + [SMALL_STATE(282)] = 13447, + [SMALL_STATE(283)] = 13545, + [SMALL_STATE(284)] = 13643, + [SMALL_STATE(285)] = 13739, + [SMALL_STATE(286)] = 13798, + [SMALL_STATE(287)] = 13857, + [SMALL_STATE(288)] = 13930, + [SMALL_STATE(289)] = 13999, + [SMALL_STATE(290)] = 14094, + [SMALL_STATE(291)] = 14153, + [SMALL_STATE(292)] = 14212, + [SMALL_STATE(293)] = 14281, + [SMALL_STATE(294)] = 14350, + [SMALL_STATE(295)] = 14409, + [SMALL_STATE(296)] = 14468, + [SMALL_STATE(297)] = 14537, + [SMALL_STATE(298)] = 14606, + [SMALL_STATE(299)] = 14669, + [SMALL_STATE(300)] = 14728, + [SMALL_STATE(301)] = 14801, + [SMALL_STATE(302)] = 14864, + [SMALL_STATE(303)] = 14923, + [SMALL_STATE(304)] = 14986, + [SMALL_STATE(305)] = 15081, + [SMALL_STATE(306)] = 15144, + [SMALL_STATE(307)] = 15203, + [SMALL_STATE(308)] = 15272, + [SMALL_STATE(309)] = 15341, + [SMALL_STATE(310)] = 15410, + [SMALL_STATE(311)] = 15469, + [SMALL_STATE(312)] = 15564, + [SMALL_STATE(313)] = 15656, + [SMALL_STATE(314)] = 15748, + [SMALL_STATE(315)] = 15840, + [SMALL_STATE(316)] = 15932, + [SMALL_STATE(317)] = 16024, + [SMALL_STATE(318)] = 16116, + [SMALL_STATE(319)] = 16208, + [SMALL_STATE(320)] = 16300, + [SMALL_STATE(321)] = 16392, + [SMALL_STATE(322)] = 16484, + [SMALL_STATE(323)] = 16576, + [SMALL_STATE(324)] = 16668, + [SMALL_STATE(325)] = 16760, + [SMALL_STATE(326)] = 16852, + [SMALL_STATE(327)] = 16944, + [SMALL_STATE(328)] = 17036, + [SMALL_STATE(329)] = 17128, + [SMALL_STATE(330)] = 17220, + [SMALL_STATE(331)] = 17312, + [SMALL_STATE(332)] = 17376, + [SMALL_STATE(333)] = 17468, + [SMALL_STATE(334)] = 17560, + [SMALL_STATE(335)] = 17652, + [SMALL_STATE(336)] = 17744, + [SMALL_STATE(337)] = 17836, + [SMALL_STATE(338)] = 17928, + [SMALL_STATE(339)] = 18020, + [SMALL_STATE(340)] = 18112, + [SMALL_STATE(341)] = 18204, + [SMALL_STATE(342)] = 18296, + [SMALL_STATE(343)] = 18388, + [SMALL_STATE(344)] = 18480, + [SMALL_STATE(345)] = 18572, + [SMALL_STATE(346)] = 18664, + [SMALL_STATE(347)] = 18758, + [SMALL_STATE(348)] = 18850, + [SMALL_STATE(349)] = 18942, + [SMALL_STATE(350)] = 19034, + [SMALL_STATE(351)] = 19126, + [SMALL_STATE(352)] = 19218, + [SMALL_STATE(353)] = 19310, + [SMALL_STATE(354)] = 19380, + [SMALL_STATE(355)] = 19472, + [SMALL_STATE(356)] = 19564, + [SMALL_STATE(357)] = 19656, + [SMALL_STATE(358)] = 19748, + [SMALL_STATE(359)] = 19840, + [SMALL_STATE(360)] = 19932, + [SMALL_STATE(361)] = 20024, + [SMALL_STATE(362)] = 20116, + [SMALL_STATE(363)] = 20208, + [SMALL_STATE(364)] = 20300, + [SMALL_STATE(365)] = 20392, + [SMALL_STATE(366)] = 20484, + [SMALL_STATE(367)] = 20576, + [SMALL_STATE(368)] = 20668, + [SMALL_STATE(369)] = 20760, + [SMALL_STATE(370)] = 20852, + [SMALL_STATE(371)] = 20944, + [SMALL_STATE(372)] = 21036, + [SMALL_STATE(373)] = 21128, + [SMALL_STATE(374)] = 21220, + [SMALL_STATE(375)] = 21312, + [SMALL_STATE(376)] = 21404, + [SMALL_STATE(377)] = 21496, + [SMALL_STATE(378)] = 21588, + [SMALL_STATE(379)] = 21680, + [SMALL_STATE(380)] = 21772, + [SMALL_STATE(381)] = 21864, + [SMALL_STATE(382)] = 21956, + [SMALL_STATE(383)] = 22048, + [SMALL_STATE(384)] = 22140, + [SMALL_STATE(385)] = 22204, + [SMALL_STATE(386)] = 22296, + [SMALL_STATE(387)] = 22388, + [SMALL_STATE(388)] = 22480, + [SMALL_STATE(389)] = 22572, + [SMALL_STATE(390)] = 22629, + [SMALL_STATE(391)] = 22690, + [SMALL_STATE(392)] = 22747, + [SMALL_STATE(393)] = 22804, + [SMALL_STATE(394)] = 22861, + [SMALL_STATE(395)] = 22918, + [SMALL_STATE(396)] = 22975, + [SMALL_STATE(397)] = 23032, + [SMALL_STATE(398)] = 23093, + [SMALL_STATE(399)] = 23154, + [SMALL_STATE(400)] = 23211, + [SMALL_STATE(401)] = 23268, + [SMALL_STATE(402)] = 23325, + [SMALL_STATE(403)] = 23382, + [SMALL_STATE(404)] = 23439, + [SMALL_STATE(405)] = 23496, + [SMALL_STATE(406)] = 23553, + [SMALL_STATE(407)] = 23610, + [SMALL_STATE(408)] = 23671, + [SMALL_STATE(409)] = 23728, + [SMALL_STATE(410)] = 23795, + [SMALL_STATE(411)] = 23852, + [SMALL_STATE(412)] = 23909, + [SMALL_STATE(413)] = 23966, + [SMALL_STATE(414)] = 24023, + [SMALL_STATE(415)] = 24087, + [SMALL_STATE(416)] = 24147, + [SMALL_STATE(417)] = 24203, + [SMALL_STATE(418)] = 24259, + [SMALL_STATE(419)] = 24319, + [SMALL_STATE(420)] = 24379, + [SMALL_STATE(421)] = 24439, + [SMALL_STATE(422)] = 24533, + [SMALL_STATE(423)] = 24593, + [SMALL_STATE(424)] = 24653, + [SMALL_STATE(425)] = 24713, + [SMALL_STATE(426)] = 24773, + [SMALL_STATE(427)] = 24829, + [SMALL_STATE(428)] = 24889, + [SMALL_STATE(429)] = 24949, + [SMALL_STATE(430)] = 25005, + [SMALL_STATE(431)] = 25065, + [SMALL_STATE(432)] = 25121, + [SMALL_STATE(433)] = 25181, + [SMALL_STATE(434)] = 25237, + [SMALL_STATE(435)] = 25297, + [SMALL_STATE(436)] = 25361, + [SMALL_STATE(437)] = 25417, + [SMALL_STATE(438)] = 25481, + [SMALL_STATE(439)] = 25545, + [SMALL_STATE(440)] = 25637, + [SMALL_STATE(441)] = 25697, + [SMALL_STATE(442)] = 25753, + [SMALL_STATE(443)] = 25813, + [SMALL_STATE(444)] = 25905, + [SMALL_STATE(445)] = 25965, + [SMALL_STATE(446)] = 26056, + [SMALL_STATE(447)] = 26111, + [SMALL_STATE(448)] = 26202, + [SMALL_STATE(449)] = 26293, + [SMALL_STATE(450)] = 26348, + [SMALL_STATE(451)] = 26403, + [SMALL_STATE(452)] = 26458, + [SMALL_STATE(453)] = 26513, + [SMALL_STATE(454)] = 26604, + [SMALL_STATE(455)] = 26665, + [SMALL_STATE(456)] = 26726, + [SMALL_STATE(457)] = 26787, + [SMALL_STATE(458)] = 26842, + [SMALL_STATE(459)] = 26933, + [SMALL_STATE(460)] = 26988, + [SMALL_STATE(461)] = 27043, + [SMALL_STATE(462)] = 27098, + [SMALL_STATE(463)] = 27153, + [SMALL_STATE(464)] = 27214, + [SMALL_STATE(465)] = 27305, + [SMALL_STATE(466)] = 27360, + [SMALL_STATE(467)] = 27415, + [SMALL_STATE(468)] = 27469, + [SMALL_STATE(469)] = 27523, + [SMALL_STATE(470)] = 27577, + [SMALL_STATE(471)] = 27631, + [SMALL_STATE(472)] = 27685, + [SMALL_STATE(473)] = 27739, + [SMALL_STATE(474)] = 27793, + [SMALL_STATE(475)] = 27847, + [SMALL_STATE(476)] = 27901, + [SMALL_STATE(477)] = 27955, + [SMALL_STATE(478)] = 28009, + [SMALL_STATE(479)] = 28063, + [SMALL_STATE(480)] = 28117, + [SMALL_STATE(481)] = 28171, + [SMALL_STATE(482)] = 28225, + [SMALL_STATE(483)] = 28279, + [SMALL_STATE(484)] = 28333, + [SMALL_STATE(485)] = 28387, + [SMALL_STATE(486)] = 28441, + [SMALL_STATE(487)] = 28495, + [SMALL_STATE(488)] = 28549, + [SMALL_STATE(489)] = 28603, + [SMALL_STATE(490)] = 28657, + [SMALL_STATE(491)] = 28711, + [SMALL_STATE(492)] = 28765, + [SMALL_STATE(493)] = 28819, + [SMALL_STATE(494)] = 28873, + [SMALL_STATE(495)] = 28927, + [SMALL_STATE(496)] = 28981, + [SMALL_STATE(497)] = 29035, + [SMALL_STATE(498)] = 29089, + [SMALL_STATE(499)] = 29143, + [SMALL_STATE(500)] = 29197, + [SMALL_STATE(501)] = 29285, + [SMALL_STATE(502)] = 29339, + [SMALL_STATE(503)] = 29393, + [SMALL_STATE(504)] = 29447, + [SMALL_STATE(505)] = 29501, + [SMALL_STATE(506)] = 29555, + [SMALL_STATE(507)] = 29609, + [SMALL_STATE(508)] = 29663, + [SMALL_STATE(509)] = 29717, + [SMALL_STATE(510)] = 29771, + [SMALL_STATE(511)] = 29825, + [SMALL_STATE(512)] = 29879, + [SMALL_STATE(513)] = 29933, + [SMALL_STATE(514)] = 29987, + [SMALL_STATE(515)] = 30041, + [SMALL_STATE(516)] = 30095, + [SMALL_STATE(517)] = 30149, + [SMALL_STATE(518)] = 30203, + [SMALL_STATE(519)] = 30257, + [SMALL_STATE(520)] = 30311, + [SMALL_STATE(521)] = 30365, + [SMALL_STATE(522)] = 30419, + [SMALL_STATE(523)] = 30473, + [SMALL_STATE(524)] = 30527, + [SMALL_STATE(525)] = 30581, + [SMALL_STATE(526)] = 30635, + [SMALL_STATE(527)] = 30689, + [SMALL_STATE(528)] = 30743, + [SMALL_STATE(529)] = 30797, + [SMALL_STATE(530)] = 30851, + [SMALL_STATE(531)] = 30905, + [SMALL_STATE(532)] = 30959, + [SMALL_STATE(533)] = 31013, + [SMALL_STATE(534)] = 31067, + [SMALL_STATE(535)] = 31121, + [SMALL_STATE(536)] = 31175, + [SMALL_STATE(537)] = 31229, + [SMALL_STATE(538)] = 31283, + [SMALL_STATE(539)] = 31337, + [SMALL_STATE(540)] = 31391, + [SMALL_STATE(541)] = 31445, + [SMALL_STATE(542)] = 31499, + [SMALL_STATE(543)] = 31553, + [SMALL_STATE(544)] = 31607, + [SMALL_STATE(545)] = 31661, + [SMALL_STATE(546)] = 31715, + [SMALL_STATE(547)] = 31769, + [SMALL_STATE(548)] = 31823, + [SMALL_STATE(549)] = 31911, + [SMALL_STATE(550)] = 31965, + [SMALL_STATE(551)] = 32019, + [SMALL_STATE(552)] = 32073, + [SMALL_STATE(553)] = 32127, + [SMALL_STATE(554)] = 32181, + [SMALL_STATE(555)] = 32235, + [SMALL_STATE(556)] = 32289, + [SMALL_STATE(557)] = 32343, + [SMALL_STATE(558)] = 32397, + [SMALL_STATE(559)] = 32451, + [SMALL_STATE(560)] = 32505, + [SMALL_STATE(561)] = 32559, + [SMALL_STATE(562)] = 32613, + [SMALL_STATE(563)] = 32667, + [SMALL_STATE(564)] = 32721, + [SMALL_STATE(565)] = 32775, + [SMALL_STATE(566)] = 32829, + [SMALL_STATE(567)] = 32883, + [SMALL_STATE(568)] = 32965, + [SMALL_STATE(569)] = 33020, + [SMALL_STATE(570)] = 33075, + [SMALL_STATE(571)] = 33130, + [SMALL_STATE(572)] = 33185, + [SMALL_STATE(573)] = 33240, + [SMALL_STATE(574)] = 33295, + [SMALL_STATE(575)] = 33371, + [SMALL_STATE(576)] = 33447, + [SMALL_STATE(577)] = 33523, + [SMALL_STATE(578)] = 33599, + [SMALL_STATE(579)] = 33672, + [SMALL_STATE(580)] = 33745, + [SMALL_STATE(581)] = 33818, + [SMALL_STATE(582)] = 33867, + [SMALL_STATE(583)] = 33916, + [SMALL_STATE(584)] = 33989, + [SMALL_STATE(585)] = 34062, + [SMALL_STATE(586)] = 34135, + [SMALL_STATE(587)] = 34208, + [SMALL_STATE(588)] = 34257, + [SMALL_STATE(589)] = 34334, + [SMALL_STATE(590)] = 34407, + [SMALL_STATE(591)] = 34480, + [SMALL_STATE(592)] = 34553, + [SMALL_STATE(593)] = 34626, + [SMALL_STATE(594)] = 34699, + [SMALL_STATE(595)] = 34772, + [SMALL_STATE(596)] = 34845, + [SMALL_STATE(597)] = 34918, + [SMALL_STATE(598)] = 34991, + [SMALL_STATE(599)] = 35064, + [SMALL_STATE(600)] = 35137, + [SMALL_STATE(601)] = 35210, + [SMALL_STATE(602)] = 35283, + [SMALL_STATE(603)] = 35332, + [SMALL_STATE(604)] = 35405, + [SMALL_STATE(605)] = 35478, + [SMALL_STATE(606)] = 35551, + [SMALL_STATE(607)] = 35624, + [SMALL_STATE(608)] = 35697, + [SMALL_STATE(609)] = 35770, + [SMALL_STATE(610)] = 35843, + [SMALL_STATE(611)] = 35916, + [SMALL_STATE(612)] = 35989, + [SMALL_STATE(613)] = 36062, + [SMALL_STATE(614)] = 36135, + [SMALL_STATE(615)] = 36208, + [SMALL_STATE(616)] = 36281, + [SMALL_STATE(617)] = 36354, + [SMALL_STATE(618)] = 36427, + [SMALL_STATE(619)] = 36500, + [SMALL_STATE(620)] = 36573, + [SMALL_STATE(621)] = 36646, + [SMALL_STATE(622)] = 36723, + [SMALL_STATE(623)] = 36796, + [SMALL_STATE(624)] = 36869, + [SMALL_STATE(625)] = 36942, + [SMALL_STATE(626)] = 37015, + [SMALL_STATE(627)] = 37088, + [SMALL_STATE(628)] = 37161, + [SMALL_STATE(629)] = 37209, + [SMALL_STATE(630)] = 37257, + [SMALL_STATE(631)] = 37305, + [SMALL_STATE(632)] = 37353, + [SMALL_STATE(633)] = 37401, + [SMALL_STATE(634)] = 37449, + [SMALL_STATE(635)] = 37531, + [SMALL_STATE(636)] = 37579, + [SMALL_STATE(637)] = 37627, + [SMALL_STATE(638)] = 37675, + [SMALL_STATE(639)] = 37723, + [SMALL_STATE(640)] = 37771, + [SMALL_STATE(641)] = 37819, + [SMALL_STATE(642)] = 37867, + [SMALL_STATE(643)] = 37915, + [SMALL_STATE(644)] = 37963, + [SMALL_STATE(645)] = 38011, + [SMALL_STATE(646)] = 38059, + [SMALL_STATE(647)] = 38107, + [SMALL_STATE(648)] = 38155, + [SMALL_STATE(649)] = 38237, + [SMALL_STATE(650)] = 38285, + [SMALL_STATE(651)] = 38333, + [SMALL_STATE(652)] = 38381, + [SMALL_STATE(653)] = 38429, + [SMALL_STATE(654)] = 38477, + [SMALL_STATE(655)] = 38525, + [SMALL_STATE(656)] = 38573, + [SMALL_STATE(657)] = 38621, + [SMALL_STATE(658)] = 38669, + [SMALL_STATE(659)] = 38717, + [SMALL_STATE(660)] = 38765, + [SMALL_STATE(661)] = 38813, + [SMALL_STATE(662)] = 38870, + [SMALL_STATE(663)] = 38937, + [SMALL_STATE(664)] = 39004, + [SMALL_STATE(665)] = 39061, + [SMALL_STATE(666)] = 39126, + [SMALL_STATE(667)] = 39183, + [SMALL_STATE(668)] = 39246, + [SMALL_STATE(669)] = 39303, + [SMALL_STATE(670)] = 39364, + [SMALL_STATE(671)] = 39421, + [SMALL_STATE(672)] = 39478, + [SMALL_STATE(673)] = 39549, + [SMALL_STATE(674)] = 39618, + [SMALL_STATE(675)] = 39675, + [SMALL_STATE(676)] = 39746, + [SMALL_STATE(677)] = 39817, + [SMALL_STATE(678)] = 39880, + [SMALL_STATE(679)] = 39951, + [SMALL_STATE(680)] = 40022, + [SMALL_STATE(681)] = 40087, + [SMALL_STATE(682)] = 40156, + [SMALL_STATE(683)] = 40217, + [SMALL_STATE(684)] = 40288, + [SMALL_STATE(685)] = 40345, + [SMALL_STATE(686)] = 40393, + [SMALL_STATE(687)] = 40443, + [SMALL_STATE(688)] = 40489, + [SMALL_STATE(689)] = 40537, + [SMALL_STATE(690)] = 40587, + [SMALL_STATE(691)] = 40635, + [SMALL_STATE(692)] = 40685, + [SMALL_STATE(693)] = 40731, + [SMALL_STATE(694)] = 40781, + [SMALL_STATE(695)] = 40829, + [SMALL_STATE(696)] = 40878, + [SMALL_STATE(697)] = 40927, + [SMALL_STATE(698)] = 41006, + [SMALL_STATE(699)] = 41055, + [SMALL_STATE(700)] = 41104, + [SMALL_STATE(701)] = 41149, + [SMALL_STATE(702)] = 41198, + [SMALL_STATE(703)] = 41247, + [SMALL_STATE(704)] = 41292, + [SMALL_STATE(705)] = 41340, + [SMALL_STATE(706)] = 41394, + [SMALL_STATE(707)] = 41442, + [SMALL_STATE(708)] = 41486, + [SMALL_STATE(709)] = 41550, + [SMALL_STATE(710)] = 41608, + [SMALL_STATE(711)] = 41670, + [SMALL_STATE(712)] = 41736, + [SMALL_STATE(713)] = 41804, + [SMALL_STATE(714)] = 41864, + [SMALL_STATE(715)] = 41918, + [SMALL_STATE(716)] = 41972, + [SMALL_STATE(717)] = 42016, + [SMALL_STATE(718)] = 42084, + [SMALL_STATE(719)] = 42128, + [SMALL_STATE(720)] = 42172, + [SMALL_STATE(721)] = 42240, + [SMALL_STATE(722)] = 42294, + [SMALL_STATE(723)] = 42370, + [SMALL_STATE(724)] = 42423, + [SMALL_STATE(725)] = 42490, + [SMALL_STATE(726)] = 42571, + [SMALL_STATE(727)] = 42614, + [SMALL_STATE(728)] = 42661, + [SMALL_STATE(729)] = 42714, + [SMALL_STATE(730)] = 42773, + [SMALL_STATE(731)] = 42816, + [SMALL_STATE(732)] = 42897, + [SMALL_STATE(733)] = 42964, + [SMALL_STATE(734)] = 43011, + [SMALL_STATE(735)] = 43054, + [SMALL_STATE(736)] = 43097, + [SMALL_STATE(737)] = 43144, + [SMALL_STATE(738)] = 43191, + [SMALL_STATE(739)] = 43256, + [SMALL_STATE(740)] = 43313, + [SMALL_STATE(741)] = 43358, + [SMALL_STATE(742)] = 43403, + [SMALL_STATE(743)] = 43448, + [SMALL_STATE(744)] = 43493, + [SMALL_STATE(745)] = 43546, + [SMALL_STATE(746)] = 43591, + [SMALL_STATE(747)] = 43672, + [SMALL_STATE(748)] = 43735, + [SMALL_STATE(749)] = 43796, + [SMALL_STATE(750)] = 43841, + [SMALL_STATE(751)] = 43886, + [SMALL_STATE(752)] = 43931, + [SMALL_STATE(753)] = 43984, + [SMALL_STATE(754)] = 44065, + [SMALL_STATE(755)] = 44132, + [SMALL_STATE(756)] = 44174, + [SMALL_STATE(757)] = 44216, + [SMALL_STATE(758)] = 44258, + [SMALL_STATE(759)] = 44300, + [SMALL_STATE(760)] = 44342, + [SMALL_STATE(761)] = 44384, + [SMALL_STATE(762)] = 44426, + [SMALL_STATE(763)] = 44468, + [SMALL_STATE(764)] = 44510, + [SMALL_STATE(765)] = 44554, + [SMALL_STATE(766)] = 44596, + [SMALL_STATE(767)] = 44638, + [SMALL_STATE(768)] = 44680, + [SMALL_STATE(769)] = 44758, + [SMALL_STATE(770)] = 44802, + [SMALL_STATE(771)] = 44880, + [SMALL_STATE(772)] = 44922, + [SMALL_STATE(773)] = 44964, + [SMALL_STATE(774)] = 45006, + [SMALL_STATE(775)] = 45048, + [SMALL_STATE(776)] = 45090, + [SMALL_STATE(777)] = 45132, + [SMALL_STATE(778)] = 45176, + [SMALL_STATE(779)] = 45218, + [SMALL_STATE(780)] = 45260, + [SMALL_STATE(781)] = 45304, + [SMALL_STATE(782)] = 45346, + [SMALL_STATE(783)] = 45388, + [SMALL_STATE(784)] = 45468, + [SMALL_STATE(785)] = 45510, + [SMALL_STATE(786)] = 45552, + [SMALL_STATE(787)] = 45594, + [SMALL_STATE(788)] = 45636, + [SMALL_STATE(789)] = 45714, + [SMALL_STATE(790)] = 45792, + [SMALL_STATE(791)] = 45834, + [SMALL_STATE(792)] = 45878, + [SMALL_STATE(793)] = 45920, + [SMALL_STATE(794)] = 45962, + [SMALL_STATE(795)] = 46004, + [SMALL_STATE(796)] = 46046, + [SMALL_STATE(797)] = 46088, + [SMALL_STATE(798)] = 46130, + [SMALL_STATE(799)] = 46208, + [SMALL_STATE(800)] = 46249, + [SMALL_STATE(801)] = 46328, + [SMALL_STATE(802)] = 46373, + [SMALL_STATE(803)] = 46452, + [SMALL_STATE(804)] = 46497, + [SMALL_STATE(805)] = 46538, + [SMALL_STATE(806)] = 46579, + [SMALL_STATE(807)] = 46620, + [SMALL_STATE(808)] = 46661, + [SMALL_STATE(809)] = 46702, + [SMALL_STATE(810)] = 46743, + [SMALL_STATE(811)] = 46784, + [SMALL_STATE(812)] = 46825, + [SMALL_STATE(813)] = 46866, + [SMALL_STATE(814)] = 46907, + [SMALL_STATE(815)] = 46948, + [SMALL_STATE(816)] = 46989, + [SMALL_STATE(817)] = 47030, + [SMALL_STATE(818)] = 47109, + [SMALL_STATE(819)] = 47150, + [SMALL_STATE(820)] = 47191, + [SMALL_STATE(821)] = 47232, + [SMALL_STATE(822)] = 47273, + [SMALL_STATE(823)] = 47314, + [SMALL_STATE(824)] = 47355, + [SMALL_STATE(825)] = 47396, + [SMALL_STATE(826)] = 47471, + [SMALL_STATE(827)] = 47512, + [SMALL_STATE(828)] = 47553, + [SMALL_STATE(829)] = 47594, + [SMALL_STATE(830)] = 47635, + [SMALL_STATE(831)] = 47676, + [SMALL_STATE(832)] = 47717, + [SMALL_STATE(833)] = 47758, + [SMALL_STATE(834)] = 47799, + [SMALL_STATE(835)] = 47840, + [SMALL_STATE(836)] = 47881, + [SMALL_STATE(837)] = 47922, + [SMALL_STATE(838)] = 47963, + [SMALL_STATE(839)] = 48036, + [SMALL_STATE(840)] = 48106, + [SMALL_STATE(841)] = 48176, + [SMALL_STATE(842)] = 48238, + [SMALL_STATE(843)] = 48300, + [SMALL_STATE(844)] = 48340, + [SMALL_STATE(845)] = 48380, + [SMALL_STATE(846)] = 48420, + [SMALL_STATE(847)] = 48460, + [SMALL_STATE(848)] = 48490, + [SMALL_STATE(849)] = 48543, + [SMALL_STATE(850)] = 48568, + [SMALL_STATE(851)] = 48621, + [SMALL_STATE(852)] = 48674, + [SMALL_STATE(853)] = 48711, + [SMALL_STATE(854)] = 48736, + [SMALL_STATE(855)] = 48761, + [SMALL_STATE(856)] = 48786, + [SMALL_STATE(857)] = 48815, + [SMALL_STATE(858)] = 48852, + [SMALL_STATE(859)] = 48881, + [SMALL_STATE(860)] = 48915, + [SMALL_STATE(861)] = 48949, + [SMALL_STATE(862)] = 48995, + [SMALL_STATE(863)] = 49023, + [SMALL_STATE(864)] = 49066, + [SMALL_STATE(865)] = 49097, + [SMALL_STATE(866)] = 49140, + [SMALL_STATE(867)] = 49183, + [SMALL_STATE(868)] = 49226, + [SMALL_STATE(869)] = 49269, + [SMALL_STATE(870)] = 49313, + [SMALL_STATE(871)] = 49353, + [SMALL_STATE(872)] = 49390, + [SMALL_STATE(873)] = 49427, + [SMALL_STATE(874)] = 49464, + [SMALL_STATE(875)] = 49489, + [SMALL_STATE(876)] = 49526, + [SMALL_STATE(877)] = 49548, + [SMALL_STATE(878)] = 49582, + [SMALL_STATE(879)] = 49604, + [SMALL_STATE(880)] = 49638, + [SMALL_STATE(881)] = 49660, + [SMALL_STATE(882)] = 49683, + [SMALL_STATE(883)] = 49720, + [SMALL_STATE(884)] = 49757, + [SMALL_STATE(885)] = 49774, + [SMALL_STATE(886)] = 49801, + [SMALL_STATE(887)] = 49824, + [SMALL_STATE(888)] = 49847, + [SMALL_STATE(889)] = 49868, + [SMALL_STATE(890)] = 49891, + [SMALL_STATE(891)] = 49916, + [SMALL_STATE(892)] = 49937, + [SMALL_STATE(893)] = 49956, + [SMALL_STATE(894)] = 49977, + [SMALL_STATE(895)] = 50002, + [SMALL_STATE(896)] = 50025, + [SMALL_STATE(897)] = 50048, + [SMALL_STATE(898)] = 50069, + [SMALL_STATE(899)] = 50090, + [SMALL_STATE(900)] = 50127, + [SMALL_STATE(901)] = 50152, + [SMALL_STATE(902)] = 50189, + [SMALL_STATE(903)] = 50212, + [SMALL_STATE(904)] = 50235, + [SMALL_STATE(905)] = 50256, + [SMALL_STATE(906)] = 50286, + [SMALL_STATE(907)] = 50316, + [SMALL_STATE(908)] = 50346, + [SMALL_STATE(909)] = 50368, + [SMALL_STATE(910)] = 50398, + [SMALL_STATE(911)] = 50432, + [SMALL_STATE(912)] = 50466, + [SMALL_STATE(913)] = 50500, + [SMALL_STATE(914)] = 50534, + [SMALL_STATE(915)] = 50552, + [SMALL_STATE(916)] = 50586, + [SMALL_STATE(917)] = 50620, + [SMALL_STATE(918)] = 50650, + [SMALL_STATE(919)] = 50672, + [SMALL_STATE(920)] = 50702, + [SMALL_STATE(921)] = 50732, + [SMALL_STATE(922)] = 50754, + [SMALL_STATE(923)] = 50784, + [SMALL_STATE(924)] = 50814, + [SMALL_STATE(925)] = 50848, + [SMALL_STATE(926)] = 50870, + [SMALL_STATE(927)] = 50888, + [SMALL_STATE(928)] = 50918, + [SMALL_STATE(929)] = 50952, + [SMALL_STATE(930)] = 50982, + [SMALL_STATE(931)] = 51012, + [SMALL_STATE(932)] = 51042, + [SMALL_STATE(933)] = 51076, + [SMALL_STATE(934)] = 51106, + [SMALL_STATE(935)] = 51136, + [SMALL_STATE(936)] = 51155, + [SMALL_STATE(937)] = 51178, + [SMALL_STATE(938)] = 51201, + [SMALL_STATE(939)] = 51220, + [SMALL_STATE(940)] = 51239, + [SMALL_STATE(941)] = 51258, + [SMALL_STATE(942)] = 51277, + [SMALL_STATE(943)] = 51302, + [SMALL_STATE(944)] = 51325, + [SMALL_STATE(945)] = 51344, + [SMALL_STATE(946)] = 51362, + [SMALL_STATE(947)] = 51376, + [SMALL_STATE(948)] = 51392, + [SMALL_STATE(949)] = 51410, + [SMALL_STATE(950)] = 51430, + [SMALL_STATE(951)] = 51444, + [SMALL_STATE(952)] = 51458, + [SMALL_STATE(953)] = 51472, + [SMALL_STATE(954)] = 51490, + [SMALL_STATE(955)] = 51504, + [SMALL_STATE(956)] = 51518, + [SMALL_STATE(957)] = 51544, + [SMALL_STATE(958)] = 51562, + [SMALL_STATE(959)] = 51576, + [SMALL_STATE(960)] = 51590, + [SMALL_STATE(961)] = 51608, + [SMALL_STATE(962)] = 51622, + [SMALL_STATE(963)] = 51636, + [SMALL_STATE(964)] = 51650, + [SMALL_STATE(965)] = 51668, + [SMALL_STATE(966)] = 51688, + [SMALL_STATE(967)] = 51702, + [SMALL_STATE(968)] = 51724, + [SMALL_STATE(969)] = 51742, + [SMALL_STATE(970)] = 51760, + [SMALL_STATE(971)] = 51784, + [SMALL_STATE(972)] = 51798, + [SMALL_STATE(973)] = 51816, + [SMALL_STATE(974)] = 51830, + [SMALL_STATE(975)] = 51844, + [SMALL_STATE(976)] = 51858, + [SMALL_STATE(977)] = 51872, + [SMALL_STATE(978)] = 51886, + [SMALL_STATE(979)] = 51906, + [SMALL_STATE(980)] = 51920, + [SMALL_STATE(981)] = 51938, + [SMALL_STATE(982)] = 51954, + [SMALL_STATE(983)] = 51968, + [SMALL_STATE(984)] = 51988, + [SMALL_STATE(985)] = 52002, + [SMALL_STATE(986)] = 52026, + [SMALL_STATE(987)] = 52044, + [SMALL_STATE(988)] = 52058, + [SMALL_STATE(989)] = 52072, + [SMALL_STATE(990)] = 52090, + [SMALL_STATE(991)] = 52104, + [SMALL_STATE(992)] = 52127, + [SMALL_STATE(993)] = 52140, + [SMALL_STATE(994)] = 52159, + [SMALL_STATE(995)] = 52180, + [SMALL_STATE(996)] = 52199, + [SMALL_STATE(997)] = 52222, + [SMALL_STATE(998)] = 52241, + [SMALL_STATE(999)] = 52254, + [SMALL_STATE(1000)] = 52273, + [SMALL_STATE(1001)] = 52296, + [SMALL_STATE(1002)] = 52321, + [SMALL_STATE(1003)] = 52334, + [SMALL_STATE(1004)] = 52351, + [SMALL_STATE(1005)] = 52372, + [SMALL_STATE(1006)] = 52387, + [SMALL_STATE(1007)] = 52410, + [SMALL_STATE(1008)] = 52429, + [SMALL_STATE(1009)] = 52446, + [SMALL_STATE(1010)] = 52465, + [SMALL_STATE(1011)] = 52482, + [SMALL_STATE(1012)] = 52501, + [SMALL_STATE(1013)] = 52514, + [SMALL_STATE(1014)] = 52527, + [SMALL_STATE(1015)] = 52548, + [SMALL_STATE(1016)] = 52573, + [SMALL_STATE(1017)] = 52594, + [SMALL_STATE(1018)] = 52615, + [SMALL_STATE(1019)] = 52640, + [SMALL_STATE(1020)] = 52655, + [SMALL_STATE(1021)] = 52674, + [SMALL_STATE(1022)] = 52693, + [SMALL_STATE(1023)] = 52706, + [SMALL_STATE(1024)] = 52719, + [SMALL_STATE(1025)] = 52742, + [SMALL_STATE(1026)] = 52761, + [SMALL_STATE(1027)] = 52782, + [SMALL_STATE(1028)] = 52807, + [SMALL_STATE(1029)] = 52830, + [SMALL_STATE(1030)] = 52851, + [SMALL_STATE(1031)] = 52874, + [SMALL_STATE(1032)] = 52897, + [SMALL_STATE(1033)] = 52920, + [SMALL_STATE(1034)] = 52938, + [SMALL_STATE(1035)] = 52954, + [SMALL_STATE(1036)] = 52966, + [SMALL_STATE(1037)] = 52980, + [SMALL_STATE(1038)] = 53002, + [SMALL_STATE(1039)] = 53022, + [SMALL_STATE(1040)] = 53040, + [SMALL_STATE(1041)] = 53054, + [SMALL_STATE(1042)] = 53066, + [SMALL_STATE(1043)] = 53086, + [SMALL_STATE(1044)] = 53108, + [SMALL_STATE(1045)] = 53122, + [SMALL_STATE(1046)] = 53142, + [SMALL_STATE(1047)] = 53158, + [SMALL_STATE(1048)] = 53174, + [SMALL_STATE(1049)] = 53196, + [SMALL_STATE(1050)] = 53218, + [SMALL_STATE(1051)] = 53240, + [SMALL_STATE(1052)] = 53256, + [SMALL_STATE(1053)] = 53274, + [SMALL_STATE(1054)] = 53292, + [SMALL_STATE(1055)] = 53312, + [SMALL_STATE(1056)] = 53334, + [SMALL_STATE(1057)] = 53352, + [SMALL_STATE(1058)] = 53370, + [SMALL_STATE(1059)] = 53384, + [SMALL_STATE(1060)] = 53398, + [SMALL_STATE(1061)] = 53416, + [SMALL_STATE(1062)] = 53436, + [SMALL_STATE(1063)] = 53456, + [SMALL_STATE(1064)] = 53478, + [SMALL_STATE(1065)] = 53494, + [SMALL_STATE(1066)] = 53510, + [SMALL_STATE(1067)] = 53526, + [SMALL_STATE(1068)] = 53540, + [SMALL_STATE(1069)] = 53557, + [SMALL_STATE(1070)] = 53572, + [SMALL_STATE(1071)] = 53589, + [SMALL_STATE(1072)] = 53606, + [SMALL_STATE(1073)] = 53623, + [SMALL_STATE(1074)] = 53640, + [SMALL_STATE(1075)] = 53659, + [SMALL_STATE(1076)] = 53676, + [SMALL_STATE(1077)] = 53691, + [SMALL_STATE(1078)] = 53706, + [SMALL_STATE(1079)] = 53721, + [SMALL_STATE(1080)] = 53738, + [SMALL_STATE(1081)] = 53757, + [SMALL_STATE(1082)] = 53768, + [SMALL_STATE(1083)] = 53785, + [SMALL_STATE(1084)] = 53802, + [SMALL_STATE(1085)] = 53819, + [SMALL_STATE(1086)] = 53836, + [SMALL_STATE(1087)] = 53855, + [SMALL_STATE(1088)] = 53872, + [SMALL_STATE(1089)] = 53889, + [SMALL_STATE(1090)] = 53906, + [SMALL_STATE(1091)] = 53925, + [SMALL_STATE(1092)] = 53944, + [SMALL_STATE(1093)] = 53963, + [SMALL_STATE(1094)] = 53978, + [SMALL_STATE(1095)] = 53997, + [SMALL_STATE(1096)] = 54014, + [SMALL_STATE(1097)] = 54025, + [SMALL_STATE(1098)] = 54040, + [SMALL_STATE(1099)] = 54055, + [SMALL_STATE(1100)] = 54074, + [SMALL_STATE(1101)] = 54091, + [SMALL_STATE(1102)] = 54110, + [SMALL_STATE(1103)] = 54127, + [SMALL_STATE(1104)] = 54144, + [SMALL_STATE(1105)] = 54163, + [SMALL_STATE(1106)] = 54174, + [SMALL_STATE(1107)] = 54188, + [SMALL_STATE(1108)] = 54204, + [SMALL_STATE(1109)] = 54218, + [SMALL_STATE(1110)] = 54234, + [SMALL_STATE(1111)] = 54248, + [SMALL_STATE(1112)] = 54264, + [SMALL_STATE(1113)] = 54278, + [SMALL_STATE(1114)] = 54292, + [SMALL_STATE(1115)] = 54304, + [SMALL_STATE(1116)] = 54320, + [SMALL_STATE(1117)] = 54334, + [SMALL_STATE(1118)] = 54348, + [SMALL_STATE(1119)] = 54362, + [SMALL_STATE(1120)] = 54376, + [SMALL_STATE(1121)] = 54392, + [SMALL_STATE(1122)] = 54406, + [SMALL_STATE(1123)] = 54422, + [SMALL_STATE(1124)] = 54436, + [SMALL_STATE(1125)] = 54452, + [SMALL_STATE(1126)] = 54462, + [SMALL_STATE(1127)] = 54472, + [SMALL_STATE(1128)] = 54488, + [SMALL_STATE(1129)] = 54504, + [SMALL_STATE(1130)] = 54518, + [SMALL_STATE(1131)] = 54534, + [SMALL_STATE(1132)] = 54550, + [SMALL_STATE(1133)] = 54560, + [SMALL_STATE(1134)] = 54574, + [SMALL_STATE(1135)] = 54590, + [SMALL_STATE(1136)] = 54604, + [SMALL_STATE(1137)] = 54620, + [SMALL_STATE(1138)] = 54636, + [SMALL_STATE(1139)] = 54652, + [SMALL_STATE(1140)] = 54668, + [SMALL_STATE(1141)] = 54684, + [SMALL_STATE(1142)] = 54700, + [SMALL_STATE(1143)] = 54716, + [SMALL_STATE(1144)] = 54726, + [SMALL_STATE(1145)] = 54742, + [SMALL_STATE(1146)] = 54758, + [SMALL_STATE(1147)] = 54772, + [SMALL_STATE(1148)] = 54782, + [SMALL_STATE(1149)] = 54796, + [SMALL_STATE(1150)] = 54810, + [SMALL_STATE(1151)] = 54824, + [SMALL_STATE(1152)] = 54836, + [SMALL_STATE(1153)] = 54850, + [SMALL_STATE(1154)] = 54864, + [SMALL_STATE(1155)] = 54878, + [SMALL_STATE(1156)] = 54894, + [SMALL_STATE(1157)] = 54908, + [SMALL_STATE(1158)] = 54922, + [SMALL_STATE(1159)] = 54938, + [SMALL_STATE(1160)] = 54954, + [SMALL_STATE(1161)] = 54968, + [SMALL_STATE(1162)] = 54982, + [SMALL_STATE(1163)] = 54992, + [SMALL_STATE(1164)] = 55008, + [SMALL_STATE(1165)] = 55022, + [SMALL_STATE(1166)] = 55036, + [SMALL_STATE(1167)] = 55052, + [SMALL_STATE(1168)] = 55066, + [SMALL_STATE(1169)] = 55082, + [SMALL_STATE(1170)] = 55098, + [SMALL_STATE(1171)] = 55114, + [SMALL_STATE(1172)] = 55128, + [SMALL_STATE(1173)] = 55142, + [SMALL_STATE(1174)] = 55156, + [SMALL_STATE(1175)] = 55170, + [SMALL_STATE(1176)] = 55186, + [SMALL_STATE(1177)] = 55199, + [SMALL_STATE(1178)] = 55212, + [SMALL_STATE(1179)] = 55225, + [SMALL_STATE(1180)] = 55236, + [SMALL_STATE(1181)] = 55249, + [SMALL_STATE(1182)] = 55262, + [SMALL_STATE(1183)] = 55275, + [SMALL_STATE(1184)] = 55288, + [SMALL_STATE(1185)] = 55301, + [SMALL_STATE(1186)] = 55312, + [SMALL_STATE(1187)] = 55323, + [SMALL_STATE(1188)] = 55336, + [SMALL_STATE(1189)] = 55349, + [SMALL_STATE(1190)] = 55362, + [SMALL_STATE(1191)] = 55375, + [SMALL_STATE(1192)] = 55388, + [SMALL_STATE(1193)] = 55397, + [SMALL_STATE(1194)] = 55410, + [SMALL_STATE(1195)] = 55419, + [SMALL_STATE(1196)] = 55432, + [SMALL_STATE(1197)] = 55443, + [SMALL_STATE(1198)] = 55456, + [SMALL_STATE(1199)] = 55465, + [SMALL_STATE(1200)] = 55478, + [SMALL_STATE(1201)] = 55491, + [SMALL_STATE(1202)] = 55504, + [SMALL_STATE(1203)] = 55517, + [SMALL_STATE(1204)] = 55526, + [SMALL_STATE(1205)] = 55539, + [SMALL_STATE(1206)] = 55552, + [SMALL_STATE(1207)] = 55565, + [SMALL_STATE(1208)] = 55574, + [SMALL_STATE(1209)] = 55585, + [SMALL_STATE(1210)] = 55598, + [SMALL_STATE(1211)] = 55607, + [SMALL_STATE(1212)] = 55620, + [SMALL_STATE(1213)] = 55633, + [SMALL_STATE(1214)] = 55646, + [SMALL_STATE(1215)] = 55659, + [SMALL_STATE(1216)] = 55672, + [SMALL_STATE(1217)] = 55685, + [SMALL_STATE(1218)] = 55698, + [SMALL_STATE(1219)] = 55711, + [SMALL_STATE(1220)] = 55724, + [SMALL_STATE(1221)] = 55737, + [SMALL_STATE(1222)] = 55750, + [SMALL_STATE(1223)] = 55763, + [SMALL_STATE(1224)] = 55776, + [SMALL_STATE(1225)] = 55789, + [SMALL_STATE(1226)] = 55802, + [SMALL_STATE(1227)] = 55815, + [SMALL_STATE(1228)] = 55828, + [SMALL_STATE(1229)] = 55841, + [SMALL_STATE(1230)] = 55854, + [SMALL_STATE(1231)] = 55867, + [SMALL_STATE(1232)] = 55880, + [SMALL_STATE(1233)] = 55893, + [SMALL_STATE(1234)] = 55906, + [SMALL_STATE(1235)] = 55919, + [SMALL_STATE(1236)] = 55932, + [SMALL_STATE(1237)] = 55945, + [SMALL_STATE(1238)] = 55958, + [SMALL_STATE(1239)] = 55969, + [SMALL_STATE(1240)] = 55982, + [SMALL_STATE(1241)] = 55995, + [SMALL_STATE(1242)] = 56008, + [SMALL_STATE(1243)] = 56021, + [SMALL_STATE(1244)] = 56034, + [SMALL_STATE(1245)] = 56047, + [SMALL_STATE(1246)] = 56060, + [SMALL_STATE(1247)] = 56073, + [SMALL_STATE(1248)] = 56086, + [SMALL_STATE(1249)] = 56099, + [SMALL_STATE(1250)] = 56112, + [SMALL_STATE(1251)] = 56125, + [SMALL_STATE(1252)] = 56138, + [SMALL_STATE(1253)] = 56151, + [SMALL_STATE(1254)] = 56164, + [SMALL_STATE(1255)] = 56177, + [SMALL_STATE(1256)] = 56190, + [SMALL_STATE(1257)] = 56203, + [SMALL_STATE(1258)] = 56216, + [SMALL_STATE(1259)] = 56227, + [SMALL_STATE(1260)] = 56240, + [SMALL_STATE(1261)] = 56253, + [SMALL_STATE(1262)] = 56266, + [SMALL_STATE(1263)] = 56277, + [SMALL_STATE(1264)] = 56290, + [SMALL_STATE(1265)] = 56303, + [SMALL_STATE(1266)] = 56316, + [SMALL_STATE(1267)] = 56329, + [SMALL_STATE(1268)] = 56340, + [SMALL_STATE(1269)] = 56353, + [SMALL_STATE(1270)] = 56366, + [SMALL_STATE(1271)] = 56379, + [SMALL_STATE(1272)] = 56392, + [SMALL_STATE(1273)] = 56405, + [SMALL_STATE(1274)] = 56414, + [SMALL_STATE(1275)] = 56427, + [SMALL_STATE(1276)] = 56440, + [SMALL_STATE(1277)] = 56453, + [SMALL_STATE(1278)] = 56466, + [SMALL_STATE(1279)] = 56479, + [SMALL_STATE(1280)] = 56492, + [SMALL_STATE(1281)] = 56505, + [SMALL_STATE(1282)] = 56518, + [SMALL_STATE(1283)] = 56527, + [SMALL_STATE(1284)] = 56538, + [SMALL_STATE(1285)] = 56551, + [SMALL_STATE(1286)] = 56560, + [SMALL_STATE(1287)] = 56573, + [SMALL_STATE(1288)] = 56586, + [SMALL_STATE(1289)] = 56597, + [SMALL_STATE(1290)] = 56606, + [SMALL_STATE(1291)] = 56615, + [SMALL_STATE(1292)] = 56628, + [SMALL_STATE(1293)] = 56641, + [SMALL_STATE(1294)] = 56654, + [SMALL_STATE(1295)] = 56663, + [SMALL_STATE(1296)] = 56674, + [SMALL_STATE(1297)] = 56687, + [SMALL_STATE(1298)] = 56700, + [SMALL_STATE(1299)] = 56713, + [SMALL_STATE(1300)] = 56722, + [SMALL_STATE(1301)] = 56735, + [SMALL_STATE(1302)] = 56748, + [SMALL_STATE(1303)] = 56761, + [SMALL_STATE(1304)] = 56770, + [SMALL_STATE(1305)] = 56783, + [SMALL_STATE(1306)] = 56792, + [SMALL_STATE(1307)] = 56802, + [SMALL_STATE(1308)] = 56812, + [SMALL_STATE(1309)] = 56820, + [SMALL_STATE(1310)] = 56828, + [SMALL_STATE(1311)] = 56838, + [SMALL_STATE(1312)] = 56846, + [SMALL_STATE(1313)] = 56854, + [SMALL_STATE(1314)] = 56864, + [SMALL_STATE(1315)] = 56872, + [SMALL_STATE(1316)] = 56880, + [SMALL_STATE(1317)] = 56888, + [SMALL_STATE(1318)] = 56896, + [SMALL_STATE(1319)] = 56904, + [SMALL_STATE(1320)] = 56914, + [SMALL_STATE(1321)] = 56924, + [SMALL_STATE(1322)] = 56932, + [SMALL_STATE(1323)] = 56942, + [SMALL_STATE(1324)] = 56950, + [SMALL_STATE(1325)] = 56958, + [SMALL_STATE(1326)] = 56966, + [SMALL_STATE(1327)] = 56974, + [SMALL_STATE(1328)] = 56984, + [SMALL_STATE(1329)] = 56994, + [SMALL_STATE(1330)] = 57004, + [SMALL_STATE(1331)] = 57012, + [SMALL_STATE(1332)] = 57020, + [SMALL_STATE(1333)] = 57028, + [SMALL_STATE(1334)] = 57036, + [SMALL_STATE(1335)] = 57044, + [SMALL_STATE(1336)] = 57052, + [SMALL_STATE(1337)] = 57060, + [SMALL_STATE(1338)] = 57068, + [SMALL_STATE(1339)] = 57076, + [SMALL_STATE(1340)] = 57084, + [SMALL_STATE(1341)] = 57092, + [SMALL_STATE(1342)] = 57100, + [SMALL_STATE(1343)] = 57110, + [SMALL_STATE(1344)] = 57118, + [SMALL_STATE(1345)] = 57126, + [SMALL_STATE(1346)] = 57134, + [SMALL_STATE(1347)] = 57142, + [SMALL_STATE(1348)] = 57150, + [SMALL_STATE(1349)] = 57158, + [SMALL_STATE(1350)] = 57166, + [SMALL_STATE(1351)] = 57176, + [SMALL_STATE(1352)] = 57186, + [SMALL_STATE(1353)] = 57196, + [SMALL_STATE(1354)] = 57204, + [SMALL_STATE(1355)] = 57214, + [SMALL_STATE(1356)] = 57224, + [SMALL_STATE(1357)] = 57234, + [SMALL_STATE(1358)] = 57242, + [SMALL_STATE(1359)] = 57250, + [SMALL_STATE(1360)] = 57260, + [SMALL_STATE(1361)] = 57270, + [SMALL_STATE(1362)] = 57278, + [SMALL_STATE(1363)] = 57288, + [SMALL_STATE(1364)] = 57296, + [SMALL_STATE(1365)] = 57306, + [SMALL_STATE(1366)] = 57316, + [SMALL_STATE(1367)] = 57324, + [SMALL_STATE(1368)] = 57334, + [SMALL_STATE(1369)] = 57342, + [SMALL_STATE(1370)] = 57352, + [SMALL_STATE(1371)] = 57362, + [SMALL_STATE(1372)] = 57370, + [SMALL_STATE(1373)] = 57378, + [SMALL_STATE(1374)] = 57386, + [SMALL_STATE(1375)] = 57394, + [SMALL_STATE(1376)] = 57402, + [SMALL_STATE(1377)] = 57412, + [SMALL_STATE(1378)] = 57419, + [SMALL_STATE(1379)] = 57426, + [SMALL_STATE(1380)] = 57433, + [SMALL_STATE(1381)] = 57440, + [SMALL_STATE(1382)] = 57447, + [SMALL_STATE(1383)] = 57454, + [SMALL_STATE(1384)] = 57461, + [SMALL_STATE(1385)] = 57468, + [SMALL_STATE(1386)] = 57475, + [SMALL_STATE(1387)] = 57482, + [SMALL_STATE(1388)] = 57489, + [SMALL_STATE(1389)] = 57496, + [SMALL_STATE(1390)] = 57503, + [SMALL_STATE(1391)] = 57510, + [SMALL_STATE(1392)] = 57517, + [SMALL_STATE(1393)] = 57524, + [SMALL_STATE(1394)] = 57531, + [SMALL_STATE(1395)] = 57538, + [SMALL_STATE(1396)] = 57545, + [SMALL_STATE(1397)] = 57552, + [SMALL_STATE(1398)] = 57559, + [SMALL_STATE(1399)] = 57566, + [SMALL_STATE(1400)] = 57573, + [SMALL_STATE(1401)] = 57580, + [SMALL_STATE(1402)] = 57587, + [SMALL_STATE(1403)] = 57594, + [SMALL_STATE(1404)] = 57601, + [SMALL_STATE(1405)] = 57608, + [SMALL_STATE(1406)] = 57615, + [SMALL_STATE(1407)] = 57622, + [SMALL_STATE(1408)] = 57629, + [SMALL_STATE(1409)] = 57636, + [SMALL_STATE(1410)] = 57643, + [SMALL_STATE(1411)] = 57650, + [SMALL_STATE(1412)] = 57657, + [SMALL_STATE(1413)] = 57664, + [SMALL_STATE(1414)] = 57671, + [SMALL_STATE(1415)] = 57678, + [SMALL_STATE(1416)] = 57685, + [SMALL_STATE(1417)] = 57692, + [SMALL_STATE(1418)] = 57699, + [SMALL_STATE(1419)] = 57706, + [SMALL_STATE(1420)] = 57713, + [SMALL_STATE(1421)] = 57720, + [SMALL_STATE(1422)] = 57727, + [SMALL_STATE(1423)] = 57734, + [SMALL_STATE(1424)] = 57741, + [SMALL_STATE(1425)] = 57748, + [SMALL_STATE(1426)] = 57755, + [SMALL_STATE(1427)] = 57762, + [SMALL_STATE(1428)] = 57769, + [SMALL_STATE(1429)] = 57776, + [SMALL_STATE(1430)] = 57783, + [SMALL_STATE(1431)] = 57790, + [SMALL_STATE(1432)] = 57797, + [SMALL_STATE(1433)] = 57804, + [SMALL_STATE(1434)] = 57811, + [SMALL_STATE(1435)] = 57818, + [SMALL_STATE(1436)] = 57825, + [SMALL_STATE(1437)] = 57832, + [SMALL_STATE(1438)] = 57839, + [SMALL_STATE(1439)] = 57846, + [SMALL_STATE(1440)] = 57853, + [SMALL_STATE(1441)] = 57860, + [SMALL_STATE(1442)] = 57867, + [SMALL_STATE(1443)] = 57874, + [SMALL_STATE(1444)] = 57881, + [SMALL_STATE(1445)] = 57888, + [SMALL_STATE(1446)] = 57895, + [SMALL_STATE(1447)] = 57902, + [SMALL_STATE(1448)] = 57909, + [SMALL_STATE(1449)] = 57916, + [SMALL_STATE(1450)] = 57923, + [SMALL_STATE(1451)] = 57930, + [SMALL_STATE(1452)] = 57937, + [SMALL_STATE(1453)] = 57944, + [SMALL_STATE(1454)] = 57951, + [SMALL_STATE(1455)] = 57958, + [SMALL_STATE(1456)] = 57965, + [SMALL_STATE(1457)] = 57972, + [SMALL_STATE(1458)] = 57979, + [SMALL_STATE(1459)] = 57986, + [SMALL_STATE(1460)] = 57993, + [SMALL_STATE(1461)] = 58000, + [SMALL_STATE(1462)] = 58007, + [SMALL_STATE(1463)] = 58014, + [SMALL_STATE(1464)] = 58021, + [SMALL_STATE(1465)] = 58028, + [SMALL_STATE(1466)] = 58035, + [SMALL_STATE(1467)] = 58042, + [SMALL_STATE(1468)] = 58049, + [SMALL_STATE(1469)] = 58056, + [SMALL_STATE(1470)] = 58063, + [SMALL_STATE(1471)] = 58070, + [SMALL_STATE(1472)] = 58077, + [SMALL_STATE(1473)] = 58084, + [SMALL_STATE(1474)] = 58091, + [SMALL_STATE(1475)] = 58098, + [SMALL_STATE(1476)] = 58105, + [SMALL_STATE(1477)] = 58112, + [SMALL_STATE(1478)] = 58119, + [SMALL_STATE(1479)] = 58126, + [SMALL_STATE(1480)] = 58133, + [SMALL_STATE(1481)] = 58140, + [SMALL_STATE(1482)] = 58147, + [SMALL_STATE(1483)] = 58154, + [SMALL_STATE(1484)] = 58161, + [SMALL_STATE(1485)] = 58168, + [SMALL_STATE(1486)] = 58175, + [SMALL_STATE(1487)] = 58182, + [SMALL_STATE(1488)] = 58189, + [SMALL_STATE(1489)] = 58196, + [SMALL_STATE(1490)] = 58203, + [SMALL_STATE(1491)] = 58210, + [SMALL_STATE(1492)] = 58217, + [SMALL_STATE(1493)] = 58224, + [SMALL_STATE(1494)] = 58231, + [SMALL_STATE(1495)] = 58238, + [SMALL_STATE(1496)] = 58245, + [SMALL_STATE(1497)] = 58252, + [SMALL_STATE(1498)] = 58259, + [SMALL_STATE(1499)] = 58266, + [SMALL_STATE(1500)] = 58273, + [SMALL_STATE(1501)] = 58280, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -71205,1525 +72522,1546 @@ 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_module, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), [109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(331), - [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1152), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(997), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(153), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(351), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(72), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(374), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(194), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(224), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(168), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1301), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1305), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1292), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(389), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(241), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(561), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(375), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1408), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(291), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(66), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(644), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(157), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(164), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(353), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1379), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1397), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1461), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(256), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(301), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1474), - [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(367), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(368), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(850), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(178), - [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(773), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(773), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(134), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(891), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(439), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(239), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(564), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(440), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1447), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(303), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(67), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1469), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1450), - [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(197), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), REDUCE(sym_primary_expression, 1, .production_id = 1), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(402), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .production_id = 1), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(675), - [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(204), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(353), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(432), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 8), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 8), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 8), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, .production_id = 16), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, .production_id = 16), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, .production_id = 7), - [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, .production_id = 7), - [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, .production_id = 16), - [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, .production_id = 7), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, .production_id = 24), - [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, .production_id = 50), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 123), - [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 123), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, .production_id = 16), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 122), - [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 122), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, .production_id = 141), - [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, .production_id = 141), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, .production_id = 7), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 98), - [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, .production_id = 98), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 3, .production_id = 16), - [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 2, .production_id = 7), - [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 70), - [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 70), - [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 40), - [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 40), - [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 33), - [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 81), - [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 81), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 56), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 56), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 54), - [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 54), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3), - [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3), - [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 76), - [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 76), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 77), - [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 77), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), - [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), - [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4), - [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4), - [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), - [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(344), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, .production_id = 69), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 102), - [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 102), - [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), - [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), - [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(1463), - [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(1381), - [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(319), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), - [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), - [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), SHIFT_REPEAT(406), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 10), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 68), - [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 69), - [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 95), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 28), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 29), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), SHIFT_REPEAT(441), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 8, .production_id = 165), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 8, .production_id = 165), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cases, 1), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cases, 1), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 9), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 9), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 9), - [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cases_repeat1, 2), - [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), SHIFT_REPEAT(809), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, .production_id = 56), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, .production_id = 56), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 81), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 81), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 130), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 130), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, .production_id = 147), - [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, .production_id = 147), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, .production_id = 148), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, .production_id = 148), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, .production_id = 157), - [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, .production_id = 157), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, .production_id = 158), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, .production_id = 158), - [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, .production_id = 163), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, .production_id = 163), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, .production_id = 164), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, .production_id = 164), - [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), - [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), SHIFT_REPEAT(810), - [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 80), - [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 80), - [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, .production_id = 55), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, .production_id = 55), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 56), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 56), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2), REDUCE(sym_list, 2), - [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), - [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 105), - [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 105), - [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 81), - [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 81), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 125), - [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 125), - [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 129), - [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 129), - [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 54), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 54), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 143), - [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 143), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 77), - [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 77), - [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 74), - [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 74), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), - [1149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), REDUCE(sym_tuple, 2), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 6, .production_id = 159), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 6, .production_id = 159), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 56), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 56), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 4, .production_id = 134), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 4, .production_id = 134), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 81), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 81), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, .production_id = 150), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, .production_id = 150), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, .production_id = 151), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, .production_id = 151), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 138), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 138), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 124), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 124), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, .production_id = 57), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, .production_id = 57), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 90), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 90), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 60), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 60), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 64), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 64), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 126), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 126), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 127), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 127), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 128), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 128), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 75), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 75), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 19), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 19), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 78), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 78), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 79), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 79), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 91), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 91), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, .production_id = 50), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 82), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 82), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 87), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 87), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 89), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 89), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 99), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 99), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 101), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 101), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, .production_id = 103), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, .production_id = 103), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 104), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 104), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 59), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 59), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 106), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 106), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, .production_id = 56), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, .production_id = 56), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 56), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 56), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, .production_id = 81), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, .production_id = 81), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 114), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 114), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 115), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 115), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 116), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 116), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 117), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 117), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 118), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 118), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, .production_id = 81), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, .production_id = 81), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 137), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 137), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, .production_id = 139), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, .production_id = 139), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 142), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 142), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 144), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 144), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 145), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 145), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 146), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 146), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 152), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 152), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 153), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 153), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 154), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 154), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 155), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 155), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 156), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 156), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 161), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 161), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, .production_id = 162), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, .production_id = 162), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, .production_id = 24), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(892), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, .production_id = 2), - [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, .production_id = 2), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, .production_id = 20), - [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, .production_id = 20), - [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, .production_id = 61), - [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, .production_id = 61), - [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, .production_id = 25), - [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, .production_id = 25), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 31), - [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 31), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), - [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 67), - [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 67), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, .production_id = 31), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, .production_id = 31), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, .production_id = 61), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, .production_id = 61), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, .production_id = 31), - [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, .production_id = 31), - [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, .production_id = 51), - [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, .production_id = 51), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 51), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 51), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, .production_id = 25), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, .production_id = 25), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 51), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 51), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, .production_id = 51), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, .production_id = 51), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 31), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 31), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 61), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 61), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 17), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 17), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 26), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 26), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 67), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 67), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 93), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 93), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, .production_id = 25), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, .production_id = 25), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 61), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 61), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 93), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 93), - [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 39), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 39), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 41), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 41), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 13), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 13), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 71), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 71), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 72), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 72), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2), - [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(903), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(891), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 2), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 2), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 3), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 3), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 18), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 18), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), - [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(663), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), - [1722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1361), - [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(663), - [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(619), - [1731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(682), - [1734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1396), - [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(682), - [1740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(607), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 36), - [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 36), SHIFT_REPEAT(568), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 25), - [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(687), - [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1451), - [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(687), - [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(617), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, .production_id = 25), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 34), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 31), - [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(637), - [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1394), - [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(637), - [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(610), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, .production_id = 16), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 10), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 10), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), - [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), SHIFT_REPEAT(1400), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 39), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, .production_id = 7), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 2), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_value_pattern, 2), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 27), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, .production_id = 32), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 35), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 27), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, .production_id = 66), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, .production_id = 32), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 35), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 39), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 1), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture_pattern, 1), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [1897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = -1, .production_id = 12), SHIFT(174), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, .production_id = 66), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1), - [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, .production_id = 83), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 2, .production_id = 107), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, .production_id = 14), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 31), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(171), - [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1009), - [1970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1009), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2), - [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2), SHIFT_REPEAT(826), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 3), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 4), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), - [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(369), - [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(1425), - [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(563), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 2), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 5), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), - [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(240), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 5), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), - [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(309), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 4, .production_id = 136), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 122), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, .production_id = 16), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 5, .production_id = 136), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 4), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 6), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 123), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 4), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 6, .production_id = 136), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 98), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 7), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_group_pattern, 3, .production_id = 131), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 3), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 7, .production_id = 136), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 3), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 8, .production_id = 136), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 9, .production_id = 136), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 3, .production_id = 132), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 2), - [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 4, .production_id = 149), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 141), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 3, .production_id = 136), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 1), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, .production_id = 32), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, .production_id = 15), - [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 62), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 31), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = -1, .production_id = 12), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), - [2151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(988), - [2154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(988), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), + [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(414), + [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1158), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(996), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(155), + [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(346), + [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(84), + [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(345), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(199), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(224), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(168), + [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1315), + [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1317), + [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1318), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(320), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(287), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(464), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(323), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1471), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(273), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(66), + [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(589), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(160), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(166), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(363), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1493), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1485), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1484), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(353), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(409), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1474), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(351), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(366), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(865), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(178), + [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(795), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(795), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(134), + [222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(922), + [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(929), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(329), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(300), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(458), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(380), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1488), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(266), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(67), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1486), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1483), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(206), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), REDUCE(sym_primary_expression, 1, .production_id = 1), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(349), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .production_id = 1), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(627), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(202), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(363), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(356), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 8), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 8), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 8), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, .production_id = 16), + [669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, .production_id = 16), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, .production_id = 7), + [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, .production_id = 7), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, .production_id = 16), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, .production_id = 7), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, .production_id = 50), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, .production_id = 24), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, .production_id = 16), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, .production_id = 7), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, .production_id = 141), + [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, .production_id = 141), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 123), + [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 123), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), + [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 98), + [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, .production_id = 98), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 122), + [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 122), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 3, .production_id = 16), + [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 2, .production_id = 7), + [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 33), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 56), + [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 56), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 81), + [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 81), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 40), + [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 40), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 70), + [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 70), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, .production_id = 69), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 68), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 69), + [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 28), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 95), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 29), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 10), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3), + [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3), + [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 76), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 76), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4), + [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4), + [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 102), + [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 102), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), + [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), + [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 54), + [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 54), + [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 77), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 77), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(1487), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(1463), + [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(311), + [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(304), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), + [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), + [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), SHIFT_REPEAT(370), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), SHIFT_REPEAT(361), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, .production_id = 163), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, .production_id = 163), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cases, 1), + [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cases, 1), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 8, .production_id = 165), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 8, .production_id = 165), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, .production_id = 164), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, .production_id = 164), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 130), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 130), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 81), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 81), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, .production_id = 56), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, .production_id = 56), + [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, .production_id = 147), + [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, .production_id = 147), + [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cases_repeat1, 2), + [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), + [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), SHIFT_REPEAT(746), + [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), SHIFT_REPEAT(725), + [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, .production_id = 148), + [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, .production_id = 148), + [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, .production_id = 157), + [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, .production_id = 157), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, .production_id = 158), + [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, .production_id = 158), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), + [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 105), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 105), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 77), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 77), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 81), + [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 81), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 80), + [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 80), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 129), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 129), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, .production_id = 55), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, .production_id = 55), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 125), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 125), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 143), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 143), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 54), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 54), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 56), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 56), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 74), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 74), + [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 9), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 9), + [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 9), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, .production_id = 24), + [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, .production_id = 50), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, .production_id = 150), + [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, .production_id = 150), + [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 56), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 56), + [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 81), + [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 81), + [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, .production_id = 151), + [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, .production_id = 151), + [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2), REDUCE(sym_list, 2), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), + [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), REDUCE(sym_tuple, 2), + [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), + [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 6, .production_id = 159), + [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 6, .production_id = 159), + [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 4, .production_id = 134), + [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 4, .production_id = 134), + [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, .production_id = 162), + [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, .production_id = 162), + [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 118), + [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 118), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 126), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 126), + [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 153), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 153), + [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 124), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 124), + [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 137), + [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 137), + [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 161), + [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 161), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 146), + [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 146), + [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, .production_id = 81), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, .production_id = 81), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 156), + [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 156), + [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 155), + [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 155), + [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 154), + [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 154), + [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 152), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 152), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 117), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 117), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 116), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 116), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 115), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 115), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 114), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 114), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, .production_id = 81), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, .production_id = 81), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 145), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 145), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 144), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 144), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 56), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 56), + [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, .production_id = 56), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, .production_id = 56), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 128), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 128), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 60), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 60), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 59), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 59), + [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 142), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 142), + [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 75), + [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 75), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 106), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 106), + [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 78), + [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 78), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, .production_id = 139), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, .production_id = 139), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 104), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 104), + [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 79), + [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 79), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 138), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 138), + [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 127), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 127), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, .production_id = 103), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, .production_id = 103), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, .production_id = 57), + [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, .production_id = 57), + [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 101), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 101), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 82), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 82), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 99), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 99), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 64), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 64), + [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 91), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 91), + [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 90), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 90), + [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 89), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 89), + [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 87), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 87), + [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 19), + [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 19), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2), + [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2), SHIFT_REPEAT(905), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(919), + [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_template_string, 2), + [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_template_string, 2), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, .production_id = 2), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, .production_id = 2), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, .production_id = 2), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, .production_id = 2), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, .production_id = 20), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, .production_id = 20), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, .production_id = 20), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, .production_id = 20), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 51), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 51), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, .production_id = 25), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, .production_id = 25), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 61), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 61), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 61), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 61), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, .production_id = 61), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, .production_id = 61), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 93), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 93), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, .production_id = 51), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, .production_id = 51), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 93), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 93), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 51), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 51), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, .production_id = 31), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, .production_id = 31), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, .production_id = 61), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, .production_id = 61), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, .production_id = 51), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, .production_id = 51), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 17), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 17), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 67), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 67), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 31), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 31), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, .production_id = 31), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, .production_id = 31), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 31), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 31), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, .production_id = 25), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, .production_id = 25), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, .production_id = 25), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, .production_id = 25), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 26), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 26), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 67), + [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 67), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 39), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 39), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 13), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 13), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 72), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 72), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 41), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 41), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 71), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 71), + [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(909), + [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2), SHIFT_REPEAT(923), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2), SHIFT_REPEAT(929), + [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(922), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 3), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 3), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 2), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 2), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), + [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(580), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), + [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1386), + [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(580), + [1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(576), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 18), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 18), + [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(578), + [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1397), + [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(578), + [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(575), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 36), + [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 36), SHIFT_REPEAT(500), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 31), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(610), + [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1491), + [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(610), + [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(574), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, .production_id = 25), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 25), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 34), + [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(626), + [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1418), + [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(626), + [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(577), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, .production_id = 16), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 10), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 10), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), + [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), SHIFT_REPEAT(1394), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, .production_id = 66), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, .production_id = 7), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = -1, .production_id = 12), SHIFT(170), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 2), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_value_pattern, 2), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 27), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 27), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 39), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 39), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 35), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, .production_id = 66), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, .production_id = 32), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 35), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, .production_id = 32), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 1), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture_pattern, 1), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(176), + [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1017), + [1958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1017), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, .production_id = 14), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, .production_id = 83), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 31), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 2, .production_id = 107), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), + [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(368), + [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(1473), + [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(447), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 3), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2), + [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2), SHIFT_REPEAT(841), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 4), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 2), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 6, .production_id = 136), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 7), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 6), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 7, .production_id = 136), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 8, .production_id = 136), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), + [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(230), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 9, .production_id = 136), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 4), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 141), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 4, .production_id = 149), + [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 2), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 4), + [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), + [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(263), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 98), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 122), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 5, .production_id = 136), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 123), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 3, .production_id = 136), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_group_pattern, 3, .production_id = 131), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 5), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 5), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 1), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 4, .production_id = 136), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 3), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, .production_id = 16), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 3), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 3, .production_id = 132), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1), [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, .production_id = 66), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, .production_id = 11), - [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, .production_id = 10), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 3), - [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 3), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_as_pattern, 3, .production_id = 135), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 10), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), - [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(367), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 4), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 4), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 35), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 43), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 43), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_bound, 2, .production_id = 109), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), SHIFT_REPEAT(1453), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2), - [2261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2), SHIFT_REPEAT(821), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, .production_id = 68), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, .production_id = 43), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, .production_id = 43), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 119), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 95), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, .production_id = 43), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, .production_id = 43), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 43), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 43), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_expression, 1), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 1, .production_id = 6), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_star_pattern, 2, .production_id = 11), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, .production_id = 22), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 6), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 36), - [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 36), SHIFT_REPEAT(225), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param_default, 2, .production_id = 110), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 6), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 120), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 121), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, .production_id = 16), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 30), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, .production_id = 53), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 5, .production_id = 88), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 27), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 35), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 31), - [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(244), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 94), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), - [2398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(175), - [2401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(1080), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, .production_id = 140), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, .production_id = 63), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 2, .production_id = 23), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [2426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(426), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 28), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 29), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), - [2451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(345), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 2, .production_id = 23), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 22), - [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, .production_id = 84), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, .production_id = 15), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, .production_id = 49), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, .production_id = 7), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2, .production_id = 133), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 23), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1271), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), - [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 52), SHIFT_REPEAT(405), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 52), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2), - [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(1138), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 65), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), SHIFT_REPEAT(1415), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, .production_id = 16), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 37), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 3, .dynamic_precedence = -1, .production_id = 58), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), - [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(862), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1), - [2609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2), SHIFT_REPEAT(864), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2), - [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2), SHIFT_REPEAT(823), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 86), - [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1176), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [2658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 36), SHIFT_REPEAT(273), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 36), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(861), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 2, .production_id = 16), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2), - [2696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2), SHIFT_REPEAT(1353), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 73), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 73), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 112), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 113), SHIFT_REPEAT(981), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 113), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), SHIFT_REPEAT(133), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 45), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 36), - [2779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(218), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_maybe_star_pattern, 1), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_patterns, 1), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, .production_id = 15), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(235), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, .production_id = 36), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, .production_id = 85), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 47), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, .production_id = 46), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 48), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_double_star_pattern, 2, .production_id = 11), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 92), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_key_value_pattern, 3, .production_id = 62), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 3, .production_id = 108), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 3, .production_id = 108), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 67), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, .production_id = 31), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 31), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, .production_id = 96), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, .production_id = 97), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_positional_pattern, 1), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 38), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 39), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_keyword_pattern, 3, .production_id = 160), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 62), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), + [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(994), + [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(994), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, .production_id = 15), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, .production_id = 32), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = -1, .production_id = 12), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 31), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, .production_id = 11), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, .production_id = 10), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2), + [2257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), SHIFT_REPEAT(1415), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_as_pattern, 3, .production_id = 135), + [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, .production_id = 43), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, .production_id = 43), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 119), + [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 43), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 43), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_expression, 1), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 43), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 43), + [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, .production_id = 68), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 35), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 10), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 4), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 4), + [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 3), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 3), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_bound, 2, .production_id = 109), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 95), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 1, .production_id = 6), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), + [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(351), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2), + [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2), SHIFT_REPEAT(825), + [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, .production_id = 43), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, .production_id = 43), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, .production_id = 16), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, .production_id = 140), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 94), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 31), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param_default, 2, .production_id = 110), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 121), + [2370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(234), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 35), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 6), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 27), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 5, .production_id = 88), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, .production_id = 53), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 120), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, .production_id = 63), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 36), + [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 36), SHIFT_REPEAT(222), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), + [2420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(175), + [2423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(1094), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 6), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_star_pattern, 2, .production_id = 11), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 30), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, .production_id = 22), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, .production_id = 16), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1233), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 23), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 28), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 29), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), SHIFT_REPEAT(1399), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, .production_id = 7), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, .production_id = 49), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2, .production_id = 133), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2), + [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(1148), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 2, .production_id = 23), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 2, .production_id = 23), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 65), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, .production_id = 84), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 52), SHIFT_REPEAT(369), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 52), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, .production_id = 15), + [2578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(357), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 22), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), + [2591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(289), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 36), + [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(212), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 37), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2), + [2643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2), SHIFT_REPEAT(838), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 86), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_maybe_star_pattern, 1), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_patterns, 1), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 112), + [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 113), SHIFT_REPEAT(1011), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 113), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), SHIFT_REPEAT(133), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2), + [2684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2), SHIFT_REPEAT(1370), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1), + [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2), SHIFT_REPEAT(869), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(227), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, .production_id = 36), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 2, .production_id = 16), + [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1189), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), + [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(877), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(879), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 73), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 73), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, .production_id = 15), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 45), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 36), SHIFT_REPEAT(258), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 36), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 3, .dynamic_precedence = -1, .production_id = 58), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, .production_id = 97), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 39), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 38), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 67), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_positional_pattern, 1), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 31), + [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 48), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 47), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_keyword_pattern, 3, .production_id = 160), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, .production_id = 46), + [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 3, .production_id = 108), + [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 92), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, .production_id = 96), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, .production_id = 85), [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 3, .production_id = 111), - [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 86), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 5), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, .production_id = 23), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [3027] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 86), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 5), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 3, .production_id = 108), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_double_star_pattern, 2, .production_id = 11), + [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_key_value_pattern, 3, .production_id = 62), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, .production_id = 31), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, .production_id = 23), + [3187] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), }; #ifdef __cplusplus @@ -72776,7 +74114,6 @@ extern const TSLanguage *tree_sitter_python(void) { tree_sitter_python_external_scanner_serialize, tree_sitter_python_external_scanner_deserialize, }, - .primary_state_ids = ts_primary_state_ids, }; return &language; } diff --git a/python/extractor/tsg-python/tsp/src/tree_sitter/parser.h b/python/extractor/tsg-python/tsp/src/tree_sitter/parser.h index 2b14ac1046bb..cbbc7b4ee3c5 100644 --- a/python/extractor/tsg-python/tsp/src/tree_sitter/parser.h +++ b/python/extractor/tsg-python/tsp/src/tree_sitter/parser.h @@ -123,7 +123,6 @@ struct TSLanguage { unsigned (*serialize)(void *, char *); void (*deserialize)(void *, const char *, unsigned); } external_scanner; - const TSStateId *primary_state_ids; }; /* From 87a684af129270ce002862eb9ce4aa0d7ee7434f Mon Sep 17 00:00:00 2001 From: Taus Date: Tue, 28 Oct 2025 22:05:53 +0000 Subject: [PATCH 3/4] Python: Support template strings in rest of extractor Adds three new AST nodes to the mix: - `TemplateString` represents a t-string in Python 3.14 - `TemplateStringPart` represents one of the string constituents of a t-string. (The interpolated expressions are represented as `Expr` nodes, just like f-strings.) - `JoinedTemplateString` represents an implicit concatenation of template strings. Importantly, we _completely avoid_ the complicated construction we currently do for format strings (as well as the confusing nomenclature). No extra injection of empty strings (so that a template string is a strict alternation of strings and expressions). A `JoinedTemplateString` simply has a list of template string children, and a `TemplateString` has a list of "values" which may be either `Expr` or `TemplateStringPart` nodes. If we ever find that we actually want the more complicated interface for these strings, then I would much rather we reconstruct this inside of QL rather than in the parser. --- python/extractor/semmle/python/ast.py | 22 ++ python/extractor/semmle/python/master.py | 17 ++ .../semmle/python/parser/tsg_parser.py | 2 + .../parser/template_strings_new.expected | 194 ++++++++++++++++++ .../tests/parser/template_strings_new.py | 17 ++ python/extractor/tsg-python/python.tsg | 47 +++++ python/extractor/tsg-python/src/main.rs | 29 ++- 7 files changed, 324 insertions(+), 4 deletions(-) create mode 100644 python/extractor/tests/parser/template_strings_new.expected create mode 100644 python/extractor/tests/parser/template_strings_new.py diff --git a/python/extractor/semmle/python/ast.py b/python/extractor/semmle/python/ast.py index 6033e39e009b..1efe5cd1d197 100644 --- a/python/extractor/semmle/python/ast.py +++ b/python/extractor/semmle/python/ast.py @@ -56,6 +56,15 @@ def __init__(self, prefix, text, s): self.text = text self.s = s +class TemplateStringPart(AstBase): + '''A string constituent of a template string literal''' + + __slots__ = "text", "s", + + def __init__(self, text, s): + self.text = text + self.s = s + class alias(AstBase): __slots__ = "value", "asname", @@ -356,6 +365,19 @@ class JoinedStr(expr): def __init__(self, values): self.values = values +class TemplateString(expr): + __slots__ = "prefix", "values", + + def __init__(self, prefix, values): + self.prefix = prefix + self.values = values + +class JoinedTemplateString(expr): + __slots__ = "strings", + + def __init__(self, strings): + self.strings = strings + class Lambda(expr): __slots__ = "args", "inner_scope", diff --git a/python/extractor/semmle/python/master.py b/python/extractor/semmle/python/master.py index 508a706a97a0..2446089d6036 100755 --- a/python/extractor/semmle/python/master.py +++ b/python/extractor/semmle/python/master.py @@ -186,12 +186,20 @@ FormattedValue = ClassNode("FormattedValue", expr, descriptive_name='formatted value') + AnnAssign = ClassNode("AnnAssign", stmt, descriptive_name='annotated assignment') AssignExpr = ClassNode('AssignExpr', expr, "assignment expression") SpecialOperation = ClassNode('SpecialOperation', expr, "special operation") +TemplateString = ClassNode('TemplateString', expr, 'template string literal') + +template_string_list = ListNode(TemplateString) + +JoinedTemplateString = ClassNode("JoinedTemplateString", expr, descriptive_name='joined template string') +TemplateStringPart = ClassNode('TemplateStringPart', None, "string part of a template string") + type_parameter = ClassNode('type_parameter', descriptive_name='type parameter') type_parameter.field('location', location) type_parameter_list = ListNode(type_parameter) @@ -435,6 +443,9 @@ Subscript.field('index', expr) Subscript.field('ctx', expr_context, 'context') +TemplateString.field('prefix', string, 'prefix') +TemplateString.field('values', expr_list, 'values') + Try.field('body', stmt_list) Try.field('orelse', stmt_list, 'else block') Try.field('handlers', stmt_list, 'exception handlers') @@ -484,10 +495,16 @@ StringPart.field('text', string) StringPart.field('location', location) +TemplateStringPart.field('text', string) +TemplateStringPart.field('location', location) + + Await.field('value', expr, 'expression waited upon') FormattedStringLiteral.field('values', expr_list) +JoinedTemplateString.field('strings', template_string_list) + FormattedValue.field('value', expr, "expression to be formatted") FormattedValue.field('conversion', string, 'type conversion') FormattedValue.field('format_spec', FormattedStringLiteral, 'format specifier') diff --git a/python/extractor/semmle/python/parser/tsg_parser.py b/python/extractor/semmle/python/parser/tsg_parser.py index dde0d7ce9e78..6ee8286c4c78 100644 --- a/python/extractor/semmle/python/parser/tsg_parser.py +++ b/python/extractor/semmle/python/parser/tsg_parser.py @@ -273,6 +273,8 @@ def get_location_info(attrs): ast.Print: ("values",), ast.Set: ("elts",), ast.Str: ("implicitly_concatenated_parts",), + ast.TemplateString: ("values",), + ast.JoinedTemplateString: ("strings",), ast.TypeAlias: ("type_parameters",), ast.Try: ("body", "handlers", "orelse", "finalbody"), ast.Tuple: ("elts",), diff --git a/python/extractor/tests/parser/template_strings_new.expected b/python/extractor/tests/parser/template_strings_new.expected new file mode 100644 index 000000000000..64df91aac772 --- /dev/null +++ b/python/extractor/tests/parser/template_strings_new.expected @@ -0,0 +1,194 @@ +Module: [1, 0] - [18, 0] + body: [ + Assign: [1, 0] - [1, 14] + targets: [ + Name: [1, 0] - [1, 4] + variable: Variable('name', None) + ctx: Store + ] + value: + Str: [1, 7] - [1, 14] + s: 'World' + prefix: '"' + implicitly_concatenated_parts: None + Assign: [2, 0] - [2, 15] + targets: [ + Name: [2, 0] - [2, 5] + variable: Variable('value', None) + ctx: Store + ] + value: + Num: [2, 8] - [2, 15] + n: 42.5678 + text: '42.5678' + Assign: [3, 0] - [3, 15] + targets: [ + Name: [3, 0] - [3, 5] + variable: Variable('first', None) + ctx: Store + ] + value: + Str: [3, 8] - [3, 15] + s: 'first' + prefix: '"' + implicitly_concatenated_parts: None + Assign: [4, 0] - [4, 17] + targets: [ + Name: [4, 0] - [4, 6] + variable: Variable('second', None) + ctx: Store + ] + value: + Str: [4, 9] - [4, 17] + s: 'second' + prefix: '"' + implicitly_concatenated_parts: None + If: [6, 0] - [6, 5] + test: + Num: [6, 3] - [6, 4] + n: 1 + text: '1' + body: [ + Expr: [7, 4] - [7, 7] + value: + TemplateString: [7, 4] - [7, 7] + prefix: 't"' + values: [] + ] + orelse: None + If: [8, 0] - [8, 5] + test: + Num: [8, 3] - [8, 4] + n: 2 + text: '2' + body: [ + Expr: [9, 4] - [9, 21] + value: + TemplateString: [9, 4] - [9, 21] + prefix: 't"' + values: [ + TemplateStringPart: [9, 6] - [9, 13] + text: '"Hello, "' + s: 'Hello, ' + Name: [9, 14] - [9, 18] + variable: Variable('name', None) + ctx: Load + TemplateStringPart: [9, 19] - [9, 20] + text: '"!"' + s: '!' + ] + ] + orelse: None + If: [10, 0] - [10, 5] + test: + Num: [10, 3] - [10, 4] + n: 3 + text: '3' + body: [ + Expr: [11, 4] - [11, 42] + value: + TemplateString: [11, 4] - [11, 42] + prefix: 't"' + values: [ + TemplateStringPart: [11, 6] - [11, 13] + text: '"Value: "' + s: 'Value: ' + Name: [11, 14] - [11, 19] + variable: Variable('value', None) + ctx: Load + TemplateStringPart: [11, 24] - [11, 31] + text: '", Hex: "' + s: ', Hex: ' + Name: [11, 32] - [11, 37] + variable: Variable('value', None) + ctx: Load + ] + ] + orelse: None + If: [12, 0] - [12, 5] + test: + Num: [12, 3] - [12, 4] + n: 4 + text: '4' + body: [ + Expr: [13, 4] - [13, 29] + value: + TemplateString: [13, 4] - [13, 29] + prefix: 't"' + values: [ + TemplateStringPart: [13, 6] - [13, 28] + text: '"Just a regular string."' + s: 'Just a regular string.' + ] + ] + orelse: None + If: [14, 0] - [14, 5] + test: + Num: [14, 3] - [14, 4] + n: 5 + text: '5' + body: [ + Expr: [15, 4] - [15, 50] + value: + TemplateString: [15, 4] - [15, 50] + prefix: 't"' + values: [ + TemplateStringPart: [15, 6] - [15, 15] + text: '"Multiple "' + s: 'Multiple ' + Name: [15, 16] - [15, 21] + variable: Variable('first', None) + ctx: Load + TemplateStringPart: [15, 22] - [15, 27] + text: '" and "' + s: ' and ' + Name: [15, 28] - [15, 34] + variable: Variable('second', None) + ctx: Load + TemplateStringPart: [15, 35] - [15, 49] + text: '" placeholders."' + s: ' placeholders.' + ] + ] + orelse: None + If: [16, 0] - [16, 5] + test: + Num: [16, 3] - [16, 4] + n: 6 + text: '6' + body: [ + Expr: [17, 4] - [17, 66] + value: + JoinedTemplateString: [17, 4] - [17, 66] + strings: [ + TemplateString: [17, 4] - [17, 31] + prefix: 't"' + values: [ + TemplateStringPart: [17, 6] - [17, 30] + text: '"Implicit concatenation: "' + s: 'Implicit concatenation: ' + ] + TemplateString: [17, 32] - [17, 49] + prefix: 't"' + values: [ + TemplateStringPart: [17, 34] - [17, 41] + text: '"Hello, "' + s: 'Hello, ' + Name: [17, 42] - [17, 46] + variable: Variable('name', None) + ctx: Load + TemplateStringPart: [17, 47] - [17, 48] + text: '"!"' + s: '!' + ] + TemplateString: [17, 50] - [17, 66] + prefix: 't"' + values: [ + TemplateStringPart: [17, 52] - [17, 65] + text: '" How are you?"' + s: ' How are you?' + ] + ] + ] + orelse: None + ] diff --git a/python/extractor/tests/parser/template_strings_new.py b/python/extractor/tests/parser/template_strings_new.py new file mode 100644 index 000000000000..4c56dca2c0c8 --- /dev/null +++ b/python/extractor/tests/parser/template_strings_new.py @@ -0,0 +1,17 @@ +name = "World" +value = 42.5678 +first = "first" +second = "second" + +if 1: + t"" +if 2: + t"Hello, {name}!" +if 3: + t"Value: {value:.2f}, Hex: {value:#x}" +if 4: + t"Just a regular string." +if 5: + t"Multiple {first} and {second} placeholders." +if 6: + t"Implicit concatenation: " t"Hello, {name}!" t" How are you?" diff --git a/python/extractor/tsg-python/python.tsg b/python/extractor/tsg-python/python.tsg index 50a59d4c27cd..8cd3bc50743b 100644 --- a/python/extractor/tsg-python/python.tsg +++ b/python/extractor/tsg-python/python.tsg @@ -117,6 +117,9 @@ (string string_content: (_) @part) { let @part.node = (ast-node @part "StringPart") } +(template_string string_content: (_) @part) +{ let @part.node = (ast-node @part "TemplateStringPart") } + ; A string concatenation that contains no interpolated expressions is just a `Str` (and its children ; will be `StringPart`s). A string concatenation that contains interpolated expressions is a ; `JoinedStr`, however. @@ -142,6 +145,12 @@ } } +(template_string) @tstring +{ let @tstring.node = (ast-node @tstring "TemplateString") } + +(concatenated_template_string) @tstrings +{ let @tstrings.node = (ast-node @tstrings "JoinedTemplateString") } + (pair) @kvpair { let @kvpair.node = (ast-node @kvpair "KeyValuePair") } @@ -2052,6 +2061,44 @@ ;;;;;; End of JoinedStr (`f"foo"`) +;;;;;; JoinedTemplateString / TemplateString (`t"foo"`) + +; Record the prefix of the template string. +(template_string) @tstring +{ + attr (@tstring.node) prefix = (string-prefix @tstring) +} + +; Attach raw children (string parts and interpolations) to the template string node. +(template_string (string_content) @part) @tmpl_any +{ + edge @tmpl_any.node -> @part.node + attr (@tmpl_any.node -> @part.node) values = (named-child-index @part) + attr (@part.node) ctx = "load" + let safe_string = (concatenate-strings (string-safe-prefix @tmpl_any) (source-text @part) (string-quotes @tmpl_any)) + attr (@part.node) s = safe_string + attr (@part.node) text = safe_string +} + +(template_string (interpolation expression: (_) @part) @interp) @tmpl_any +{ + edge @tmpl_any.node -> @part.node + attr (@tmpl_any.node -> @part.node) values = (named-child-index @interp) + attr (@part.node) ctx = "load" +} + + +; Concatenated template strings simply have a list-like field containing the template strings that +; are concatenated together. +(concatenated_template_string (template_string) @tstring) @tmpl_concat +{ + edge @tmpl_concat.node -> @tstring.node + attr (@tmpl_concat.node -> @tstring.node) strings = (named-child-index @tstring) + attr (@tstring.node) ctx = "load" +} + +;;;;;; End of JoinedTemplateString / TemplateString (`t"foo"`) + ;;;;;; List (`[...]`) diff --git a/python/extractor/tsg-python/src/main.rs b/python/extractor/tsg-python/src/main.rs index d71c93d7f2c5..6e07a8cd86e7 100644 --- a/python/extractor/tsg-python/src/main.rs +++ b/python/extractor/tsg-python/src/main.rs @@ -140,15 +140,22 @@ pub mod extra_functions { } fn safe(&self) -> Prefix { + // Remove format (f/F) and template (t/T) flags when generating a safe prefix. Prefix { - flags: self.flags.clone().replace("f", "").replace("F", ""), + flags: self + .flags + .clone() + .replace("f", "") + .replace("F", "") + .replace("t", "") + .replace("T", ""), quotes: self.quotes.clone(), } } } fn get_prefix(s: &str) -> Prefix { - let flags_matcher = regex::Regex::new("^[bfurBFUR]{0,2}").unwrap(); + let flags_matcher = regex::Regex::new("^[bfurtBFURT]{0,2}").unwrap(); let mut end = 0; let flags = match flags_matcher.find(s) { Some(m) => { @@ -170,7 +177,7 @@ pub mod extra_functions { quotes = "}"; } Prefix { - flags: flags.to_lowercase().to_owned(), + flags: flags.to_owned(), quotes: quotes.to_owned(), } } @@ -198,6 +205,12 @@ pub mod extra_functions { let p = get_prefix("\"\"\"\"\"\""); assert_eq!(p.flags, ""); assert_eq!(p.quotes, "\"\"\""); + let p = get_prefix("t\"hello\""); + assert_eq!(p.flags, "t"); + assert_eq!(p.quotes, "\""); + let p = get_prefix("Tr'world'"); + assert_eq!(p.flags, "Tr"); + assert_eq!(p.quotes, "'"); } fn get_string_contents(s: String) -> String { @@ -227,6 +240,10 @@ pub mod extra_functions { assert_eq!(get_string_contents(s.to_owned()), ""); let s = "''''''"; assert_eq!(get_string_contents(s.to_owned()), ""); + let s = "t\"tmpl\""; + assert_eq!(get_string_contents(s.to_owned()), "tmpl"); + let s = "Tr'world'"; + assert_eq!(get_string_contents(s.to_owned()), "world"); } pub struct StringPrefix; @@ -291,7 +308,11 @@ pub mod extra_functions { let node = graph[parameters.param()?.into_syntax_node_ref()?]; parameters.finish()?; let prefix = get_prefix(&source[node.byte_range()]).full(); - let prefix = prefix.replace("f", "").replace("F", ""); + let prefix = prefix + .replace("f", "") + .replace("F", "") + .replace("t", "") + .replace("T", ""); Ok(Value::String(prefix)) } } From 691a54fa9db0019fe13c48faa0d596fa09dfca6c Mon Sep 17 00:00:00 2001 From: Taus Date: Tue, 28 Oct 2025 22:06:15 +0000 Subject: [PATCH 4/4] Python: Regenerate AST and dbscheme files --- python/ql/lib/semmle/python/AstGenerated.qll | 60 ++++++++++++++++++++ python/ql/lib/semmlecode.python.dbscheme | 31 ++++++++-- 2 files changed, 86 insertions(+), 5 deletions(-) diff --git a/python/ql/lib/semmle/python/AstGenerated.qll b/python/ql/lib/semmle/python/AstGenerated.qll index e672cda001dd..e5e956c54864 100644 --- a/python/ql/lib/semmle/python/AstGenerated.qll +++ b/python/ql/lib/semmle/python/AstGenerated.qll @@ -768,6 +768,20 @@ class Fstring_ extends @py_Fstring, Expr { override string toString() { result = "Fstring" } } +/** INTERNAL: See the class `JoinedTemplateString` for further information. */ +class JoinedTemplateString_ extends @py_JoinedTemplateString, Expr { + /** Gets the strings of this joined template string. */ + TemplateStringList getStrings() { py_TemplateString_lists(result, this) } + + /** Gets the nth string of this joined template string. */ + TemplateString getString(int index) { result = this.getStrings().getItem(index) } + + /** Gets a string of this joined template string. */ + TemplateString getAString() { result = this.getStrings().getAnItem() } + + override string toString() { result = "JoinedTemplateString" } +} + /** INTERNAL: See the class `KeyValuePair` for further information. */ class KeyValuePair_ extends @py_KeyValuePair, DictItem { /** Gets the location of this key-value pair. */ @@ -1373,6 +1387,52 @@ class TemplateDottedNotation_ extends @py_TemplateDottedNotation, Expr { override string toString() { result = "TemplateDottedNotation" } } +/** INTERNAL: See the class `TemplateString` for further information. */ +class TemplateString_ extends @py_TemplateString, Expr { + /** Gets the prefix of this template string literal. */ + string getPrefix() { py_strs(result, this, 2) } + + /** Gets the values of this template string literal. */ + ExprList getValues() { py_expr_lists(result, this, 3) } + + /** Gets the nth value of this template string literal. */ + Expr getValue(int index) { result = this.getValues().getItem(index) } + + /** Gets a value of this template string literal. */ + Expr getAValue() { result = this.getValues().getAnItem() } + + override ExprParent getParent() { py_exprs(this, _, result, _) } + + override string toString() { result = "TemplateString" } +} + +/** INTERNAL: See the class `TemplateStringPart` for further information. */ +class TemplateStringPart_ extends @py_TemplateStringPart { + /** Gets the text of this string part of a template string. */ + string getText() { py_strs(result, this, 0) } + + /** Gets the location of this string part of a template string. */ + Location getLocation() { py_locations(result, this) } + + /** Gets a textual representation of this element. */ + string toString() { result = "TemplateStringPart" } +} + +/** INTERNAL: See the class `TemplateStringList` for further information. */ +class TemplateStringList_ extends @py_TemplateString_list { + /** Gets a parent of this template string literal list */ + JoinedTemplateString getParent() { py_TemplateString_lists(this, result) } + + /** Gets an item of this template string literal list */ + Expr getAnItem() { py_exprs(result, _, this, _) } + + /** Gets the nth item of this template string literal list */ + Expr getItem(int index) { py_exprs(result, _, this, index) } + + /** Gets a textual representation of this element. */ + string toString() { result = "TemplateStringList" } +} + /** INTERNAL: See the class `TemplateWrite` for further information. */ class TemplateWrite_ extends @py_TemplateWrite, Stmt { /** Gets the value of this template write statement. */ diff --git a/python/ql/lib/semmlecode.python.dbscheme b/python/ql/lib/semmlecode.python.dbscheme index acf8d3b08ae3..79b6c74df3f1 100644 --- a/python/ql/lib/semmlecode.python.dbscheme +++ b/python/ql/lib/semmlecode.python.dbscheme @@ -530,6 +530,10 @@ py_extracted_version(int module : @py_Module ref, /* Fstring.values = 2, expr_list */ /* Fstring = FormattedValue */ +/* JoinedTemplateString.location = 0, location */ +/* JoinedTemplateString.parenthesised = 1, bool */ +/* JoinedTemplateString.strings = 2, TemplateString_list */ + /* KeyValuePair.location = 0, location */ /* KeyValuePair.value = 1, expr */ /* KeyValuePair.key = 2, expr */ @@ -709,6 +713,16 @@ py_extracted_version(int module : @py_Module ref, /* TemplateDottedNotation.attr = 3, str */ /* TemplateDottedNotation.ctx = 4, expr_context */ +/* TemplateString.location = 0, location */ +/* TemplateString.parenthesised = 1, bool */ +/* TemplateString.prefix = 2, str */ +/* TemplateString.values = 3, expr_list */ +/* TemplateString = TemplateStringList */ + +/* TemplateStringPart.text = 0, str */ +/* TemplateStringPart.location = 1, location */ +/* TemplateStringList = JoinedTemplateString */ + /* TemplateWrite.location = 0, location */ /* TemplateWrite.value = 1, expr */ @@ -835,6 +849,11 @@ py_StringParts(unique int id : @py_StringPart, py_StringPart_lists(unique int id : @py_StringPart_list, unique int parent : @py_Bytes_or_Str ref); +py_TemplateStringParts(unique int id : @py_TemplateStringPart); + +py_TemplateString_lists(unique int id : @py_TemplateString_list, + unique int parent : @py_JoinedTemplateString ref); + py_aliases(unique int id : @py_alias, int parent : @py_alias_list ref, int idx : int ref); @@ -1010,7 +1029,9 @@ case @py_expr.kind of | 36 = @py_Fstring | 37 = @py_FormattedValue | 38 = @py_AssignExpr -| 39 = @py_SpecialOperation; +| 39 = @py_SpecialOperation +| 40 = @py_TemplateString +| 41 = @py_JoinedTemplateString; case @py_expr_context.kind of 0 = @py_AugLoad @@ -1105,13 +1126,13 @@ case @py_unaryop.kind of @py_expr_context_parent = @py_Attribute | @py_List | @py_Name | @py_PlaceHolder | @py_Starred | @py_Subscript | @py_TemplateDottedNotation | @py_Tuple; -@py_expr_list_parent = @py_Assign | @py_BoolExpr | @py_Call | @py_ClassExpr | @py_Compare | @py_Delete | @py_Fstring | @py_Function | @py_List | @py_Print | @py_Set | @py_SpecialOperation | @py_Tuple | @py_arguments | @py_comprehension; +@py_expr_list_parent = @py_Assign | @py_BoolExpr | @py_Call | @py_ClassExpr | @py_Compare | @py_Delete | @py_Fstring | @py_Function | @py_List | @py_Print | @py_Set | @py_SpecialOperation | @py_TemplateString | @py_Tuple | @py_arguments | @py_comprehension; @py_expr_or_stmt = @py_expr | @py_stmt; -@py_expr_parent = @py_AnnAssign | @py_Assert | @py_Assign | @py_AssignExpr | @py_Attribute | @py_AugAssign | @py_Await | @py_BinaryExpr | @py_Call | @py_Case | @py_Compare | @py_DictComp | @py_DictUnpacking | @py_ExceptGroupStmt | @py_ExceptStmt | @py_Exec | @py_Expr_stmt | @py_Filter | @py_For | @py_FormattedValue | @py_Function | @py_FunctionExpr | @py_GeneratorExp | @py_Guard | @py_If | @py_IfExp | @py_ImportMember | @py_ImportStar | @py_KeyValuePair | @py_ListComp | @py_MatchAsPattern | @py_MatchCapturePattern | @py_MatchClassPattern | @py_MatchKeywordPattern | @py_MatchLiteralPattern | @py_MatchStmt | @py_MatchValuePattern | @py_ParamSpec | @py_Print | @py_Raise | @py_Repr | @py_Return | @py_SetComp | @py_Slice | @py_Starred | @py_Subscript | @py_TemplateDottedNotation | @py_TemplateWrite | @py_TypeAlias | @py_TypeVar | @py_TypeVarTuple | @py_UnaryExpr | @py_While | @py_With | @py_Yield | @py_YieldFrom | @py_alias | @py_arguments | @py_comprehension | @py_expr_list | @py_keyword | @py_parameter_list; +@py_expr_parent = @py_AnnAssign | @py_Assert | @py_Assign | @py_AssignExpr | @py_Attribute | @py_AugAssign | @py_Await | @py_BinaryExpr | @py_Call | @py_Case | @py_Compare | @py_DictComp | @py_DictUnpacking | @py_ExceptGroupStmt | @py_ExceptStmt | @py_Exec | @py_Expr_stmt | @py_Filter | @py_For | @py_FormattedValue | @py_Function | @py_FunctionExpr | @py_GeneratorExp | @py_Guard | @py_If | @py_IfExp | @py_ImportMember | @py_ImportStar | @py_KeyValuePair | @py_ListComp | @py_MatchAsPattern | @py_MatchCapturePattern | @py_MatchClassPattern | @py_MatchKeywordPattern | @py_MatchLiteralPattern | @py_MatchStmt | @py_MatchValuePattern | @py_ParamSpec | @py_Print | @py_Raise | @py_Repr | @py_Return | @py_SetComp | @py_Slice | @py_Starred | @py_Subscript | @py_TemplateDottedNotation | @py_TemplateString_list | @py_TemplateWrite | @py_TypeAlias | @py_TypeVar | @py_TypeVarTuple | @py_UnaryExpr | @py_While | @py_With | @py_Yield | @py_YieldFrom | @py_alias | @py_arguments | @py_comprehension | @py_expr_list | @py_keyword | @py_parameter_list; -@py_location_parent = @py_DictUnpacking | @py_KeyValuePair | @py_StringPart | @py_comprehension | @py_expr | @py_keyword | @py_pattern | @py_stmt | @py_type_parameter; +@py_location_parent = @py_DictUnpacking | @py_KeyValuePair | @py_StringPart | @py_TemplateStringPart | @py_comprehension | @py_expr | @py_keyword | @py_pattern | @py_stmt | @py_type_parameter; @py_parameter = @py_Name | @py_Tuple; @@ -1125,7 +1146,7 @@ case @py_unaryop.kind of @py_str_list_parent = @py_Global | @py_Nonlocal; -@py_str_parent = @py_Attribute | @py_Class | @py_ClassExpr | @py_FormattedValue | @py_Function | @py_FunctionExpr | @py_ImportExpr | @py_ImportMember | @py_Module | @py_SpecialOperation | @py_Str | @py_StringPart | @py_TemplateDottedNotation | @py_keyword | @py_str_list; +@py_str_parent = @py_Attribute | @py_Class | @py_ClassExpr | @py_FormattedValue | @py_Function | @py_FunctionExpr | @py_ImportExpr | @py_ImportMember | @py_Module | @py_SpecialOperation | @py_Str | @py_StringPart | @py_TemplateDottedNotation | @py_TemplateString | @py_TemplateStringPart | @py_keyword | @py_str_list; @py_type_parameter_list_parent = @py_ClassExpr | @py_Function | @py_TypeAlias;